Awesome
Wirelss peeker
Introduction
In the wireless generation, traffic was transmited via air, it mask more easy to capture those packet.<br>
However, according to IEEE802.11i
, data type packet was encrypted by WPA
/ WPA2
encryption.<br>
If we want to peek the plaintext of those encrypted traffic, we should capture 4-way handshake and calculate the correct PTK
.<br>
Currently there are the following methods can crack WPA2
encryption<br>
- Dictionary attack
- KRACK<br> key reinstall loophole was fixed after hostaps2.8 or abvoe.
- Using
PMKID
For simplicity, wireless peeker used Dictionary attack
to get the PTK between AP and victim.<br>
However, Simplicity means stupid, this attack should take a lot of time to test all password in dictionary.<br>
All decrypted taffic will be storaged on pcapng
format file by sprcify file name with -w
flag.<br>
How to Build
- Modify
cross
item inMakefile
to cross-compile if you need. - Just type
Make
Binary
MITM
: <br> The main process which can crash wpa2 password, calculate ptk, decrypte wireless packet and store those packet.<br>MITM_cil
: <br> The process which can interaction withMITM
process, like set ap and victim you want to hack, report some information of network...<br>
Demo
Voide_link <br>
This project just used to show how attack work, please do not use it to do anything illegel.<br>