Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/m4n3dw0lf/sslkill

Forced Man-In-The-Middle HTTPs-Avoiding Reverse Proxy
https://github.com/m4n3dw0lf/sslkill

arp-spoofing dns hsts proxy reverse-proxy sslstrip

Last synced: about 2 months ago
JSON representation

Forced Man-In-The-Middle HTTPs-Avoiding Reverse Proxy

Awesome Lists containing this project

README

        

# sslkill

SSL Kill is a forced man-in-the-middle transparent reverse proxy that modifies HTTP requests and responses in order to avoid SSL and HSTS, to achieve that, it use a two-way ARP spoofing plus a forced DNS resolver that redirects all name server queries to the attacker IP Address. This tool is for information security researchers and should not be used for criminal acts

SSL Kill v1.2

![alt text](banner.png)

## Installation
```
$sudo apt-get install build-essential python-dev libnetfilter-queue-dev
$git clone https://github.com/m4n3dw0lf/sslkill
$cd sslkill
$sudo pip install -r requirements.txt
$sudo chmod +x sslkill.py
$sudo ./sslkill.py -h
```

## Basics
```
usage:
Network interface: -i or --interface
Target IP Address: -t or --target
Gateway IP Address: -g or --gateway
Listening Port: -l or --listen
Debug mode: -d Turn debugger ON, default = OFF

examples:
$sudo ./sslkill.py -i wlan0 -t 10.0.0.3 -g 10.0.0.1

```