Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/wshen0123/mitm-rogue-wifi-ap
MITM Attack Example Code with Rogue Wi-Fi AP
https://github.com/wshen0123/mitm-rogue-wifi-ap
Last synced: 22 days ago
JSON representation
MITM Attack Example Code with Rogue Wi-Fi AP
- Host: GitHub
- URL: https://github.com/wshen0123/mitm-rogue-wifi-ap
- Owner: wshen0123
- License: unlicense
- Created: 2013-10-02T21:29:17.000Z (about 11 years ago)
- Default Branch: master
- Last Pushed: 2013-10-02T21:51:21.000Z (about 11 years ago)
- Last Synced: 2024-08-04T09:06:38.263Z (4 months ago)
- Size: 109 KB
- Stars: 9
- Watchers: 2
- Forks: 4
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: change_ttl.py
- License: LICENSE
Awesome Lists containing this project
- awesome-network-stuff - **4**星 - Fi AP (<a id="42f9e068b6511bcbb47d6b2b273097da"></a>未分类 / <a id="3bd67ee9f322e2c85854991c85ed6da0"></a>投毒&&Poisoning)
README
mitm_rogue_wifi_ap
==================MITM Attack Example Code with Rogue Wi-Fi AP
This is actually a blundle of tools and codes for Rogue Wi-Fi AP MITM Attack demonstration.
NOTICE
The startAP and stopAP script will over-write any iptables setting. Back them
up ahead!
Sniffing and attacking network without permission is illegal. Think twice
before your conduct.Tools used
- ifconfig: Wi-Fi card setup and IP configuration- iptables: detour target packets to libnetfilter_queue
- hostapd: soft AP control program
- dhcpd: dhcp server tool to create a private network within AP
- libnetfilter_queue: (or NQUEUE), do actual packet detour, exam and mangle
files
- startAP: setup Wi-Fi card(hostapd), private network(hostapd),
packet detour(iptables)- libnetfilter.c compile this file and run after ./startAP. This file
will handle all packets through NQUEUE as you
programmed.- change_ttl.py python version of NQUEUE mangling(sorry I don't
remember the sourse/author of this script)- stopAP: kill the AP and clean up necesary settings.
- dhcpd.conf dhcpd configuraton file, used by startAP
- hostapd.conf hostapd configuraton file, used by startAP