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 1 month ago
JSON representation
Forced Man-In-The-Middle HTTPs-Avoiding Reverse Proxy
- Host: GitHub
- URL: https://github.com/m4n3dw0lf/sslkill
- Owner: m4n3dw0lf
- License: gpl-3.0
- Created: 2016-12-12T23:06:15.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2019-10-23T02:19:29.000Z (over 5 years ago)
- Last Synced: 2025-03-17T20:13:05.825Z (about 1 month ago)
- Topics: arp-spoofing, dns, hsts, proxy, reverse-proxy, sslstrip
- Language: Python
- Homepage:
- Size: 55.7 KB
- Stars: 62
- Watchers: 3
- Forks: 35
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- awesome-network-stuff - **38**星 - In-The-Middle HTTPs-Avoiding Reverse Proxy (<a id="42f9e068b6511bcbb47d6b2b273097da"></a>未分类 / <a id="3bd67ee9f322e2c85854991c85ed6da0"></a>投毒&&Poisoning)
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

## 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 = OFFexamples:
$sudo ./sslkill.py -i wlan0 -t 10.0.0.3 -g 10.0.0.1```