Wireless Reconnaissance: Discovering WiFi Networks
Learn wireless reconnaissance techniques including network discovery, client enumeration, hidden SSID detection, signal mapping, and WiFi monitoring for security assessment.
Mapping the Airwaves
Wireless reconnaissance is the systematic process of discovering, identifying, and mapping wireless networks and associated devices. It is the foundational phase of any wireless security assessment, providing the intelligence architecture for subsequent testing. Unlike wired network recon, wireless recon requires physical proximity and understanding of radio frequency behavior.
Prerequisites
Wireless Reconnaissance Methodology
Phase 1: Preparation
# Verify hardware capabilities
iw list | grep -A 10 "Supported interface modes"
# Enable monitor mode
airmon-ng start wlan0
# Scan for channels
airodump-ng wlan0mon
Phase 2: Network Discovery
# Extended scan
airodump-ng -w recon_data wlan0mon
# Target specific bands
airodump-ng --band abg wlan0mon
Reveals BSSID, channel, signal, encryption, SSID, and client count.
Phase 3: Client Enumeration
# Capture specific AP traffic
airodump-ng --bssid AP_MAC -c CHANNEL wlan0mon
# Probe request monitoring
airodump-ng --probes wlan0mon
Client information reveals device types, probe requests, signal strength, and activity patterns.
Using Kismet for Advanced Recon
Kismet provides multichannel scanning, hidden SSID detection, client tracking, and manufacturer identification:
kismet
kismet_server --override-wifi-source wlan0mon
Hidden SSID Detection
Networks configured to hide their SSID still transmit it in probe responses and association frames:
airodump-ng --bssid AP_MAC -c CHANNEL wlan0mon
aireplay-ng -0 1 -a AP_MAC -c CLIENT_MAC wlan0mon
# Reconnection reveals SSID in association frames
Signal Mapping
Signal strength (dBm) indicates distance:
Rogue AP Detection
# Look for duplicate SSIDs with different BSSIDs
airodump-ng wlan0mon | grep "TargetSSID"
# Monitor for deauth floods
tcpdump -i wlan0mon -n -e type mgt subtype deauth
Common Mistakes
Best Practices
Related Tools
Related Articles
Summary
Wireless reconnaissance is the essential first step in wireless security assessment. Using airodump-ng and Kismet, professionals discover networks, enumerate clients, detect hidden SSIDs, and map signal coverage. Physical recon elements provide spatial context beyond pure technical scanning.