Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/conorpp/mitm-http-proxy
A simple, low level http/https proxy server with MiTM pranking features.
https://github.com/conorpp/mitm-http-proxy
Last synced: about 1 hour ago
JSON representation
A simple, low level http/https proxy server with MiTM pranking features.
- Host: GitHub
- URL: https://github.com/conorpp/mitm-http-proxy
- Owner: conorpp
- Created: 2014-06-15T01:51:19.000Z (over 10 years ago)
- Default Branch: master
- Last Pushed: 2015-04-27T18:21:58.000Z (over 9 years ago)
- Last Synced: 2024-08-05T09:16:08.243Z (3 months ago)
- Language: C
- Size: 3.55 MB
- Stars: 50
- Watchers: 5
- Forks: 15
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
- awesome-network-stuff - **29**星
README
MiTM-HTTP-Proxy
===============A simple, low level http/https proxy server with MiTM pranking features.
This project consists of two parts
### HTTP Proxy Server
This will proxy all HTTP 1.1 transactions.
It will make text substitutions in web pages to demonstrate a MiTM attack.
It uses OpenSSL to forge SSL certificates and proxy HTTPS in clear text.
This will cause blatant warnings on modern browsers.
### ARP Spoofing Process
This targets another machine on the local area network and ARP poisons them.
This is to get the target machine to send all packets to the attacker,
thinking that the attacker is the router.
The attacker will then forward all packets between the router and the target machine.
This is unique in this project in that it will pass the packets through the
HTTP Proxy server as well to do the MiTM attack demonstration.
Tools used:
- OpenSSL
- PCAP / Berkeley Packet Filtering (BPF)
- Zlib
- Tcpdump