The band of a network defines the frequency it uses to broadcast signals, which determines what devices can connect to it. Modern WiFi networks primarily operate on two frequency bands:
When conducting penetration tests on wireless networks, it's crucial to understand that many modern networks broadcast on both bands simultaneously. If you're only scanning on one band, you might miss critical attack vectors.
For security professionals and ethical hackers, the ability to detect and analyze networks on both frequency bands is essential. Many penetration testing tools default to scanning only the 2.4 GHz band, potentially missing networks or clients operating on 5 GHz.
To effectively test wireless networks, you need hardware that supports the appropriate frequency bands:
| Wireless Adapter | 2.4 GHz Support | 5 GHz Support | Monitor Mode | Packet Injection |
|---|---|---|---|---|
| Alpha AWUS036NHA | ✓ | ✗ | ✓ | ✓ |
| Alpha AWUS036ACH | ✓ | ✓ | ✓ | ✓ |
| TP-Link TL-WN722N (v1) | ✓ | ✗ | ✓ | ✓ |
| Alfa AWUS1900 | ✓ | ✓ | ✓ | Limited |
Airodump-ng is a powerful tool for capturing packets from wireless networks, but by default, it only scans the 2.4 GHz band. To scan 5 GHz networks, you need to specify the band.
When you run airodump-ng with no band specified, it defaults to 2.4 GHz:
To scan for networks operating on the 5 GHz band, use the --band parameter:
To capture networks on both 2.4 GHz and 5 GHz frequencies at the same time:
Consider a modern home network where the router broadcasts the same SSID on both 2.4 GHz and 5 GHz bands:
SSID: HomeNetwork
Clients: 3 devices (older smartphones, IoT devices)
Security: WPA2-PSK
SSID: HomeNetwork
Clients: 5 devices (newer laptops, smart TVs, gaming consoles)
Security: WPA2-PSK
If you only scan the 2.4 GHz band, you'd miss the opportunity to capture handshakes from devices on the 5 GHz band, which are often higher-value targets like laptops and newer mobile devices.
Some networks may broadcast exclusively on 5 GHz for better performance and security:
For more targeted scanning, you can combine band and channel specifications:
This command focuses on the four most common 5 GHz channels, reducing scan time and improving capture efficiency.
➊ Modern WiFi networks operate on both 2.4 GHz and 5 GHz bands, requiring comprehensive scanning for thorough security testing.
➋ Use --band a to scan 5 GHz networks and --band a,b,g to scan both bands simultaneously.
➌ Hardware requirements are crucial - ensure your wireless adapter supports the necessary bands, monitor mode, and packet injection.
➍ Missing devices in your scans often indicates they're connected on a different frequency band than the one you're scanning.