Securing Networks · 3.2

📡 Wireless Network Security

Why WiFi is uniquely vulnerable — and how to secure it⏱ ~2 min

📻WiFi broadcasts into the air — anyone nearby can hear it

Wired networks are like conversations through a closed pipe — only the people at each end can hear. WiFi is like having that conversation in a room full of strangers. Anyone within range with the right tools can capture the radio signals. Encryption (WPA3) is what makes those signals unintelligible to eavesdroppers — without it, WiFi is essentially a public broadcast.

Common Wireless Threats

ThreatWhat HappensWhy It's Dangerous
Packet SniffingAttacker captures raw WiFi packets with tools like Wireshark on open/unencrypted networksOn open WiFi, all unencrypted traffic (HTTP, cleartext apps) is readable
Rogue Access PointAttacker sets up an unauthorized WiFi AP inside the organization's buildingEmployees unknowingly connect; traffic bypasses corporate security controls
Evil Twin AttackFake AP with the same SSID as a legitimate network (e.g., 'Airport_Free_WiFi')Devices auto-connect; attacker becomes man-in-the-middle for all traffic
Denial of ServiceDeauthentication flood sends forged 802.11 disconnect frames, kicking clients off the networkCan repeatedly disconnect specific users or all clients from an AP
KRACK AttackKey Reinstallation Attack exploits WPA2 handshake to decrypt trafficPatched in 2017; highlights that protocol-level vulnerabilities affect all implementations

Wireless Security Protocols — Evolution

ProtocolYearEncryptionStatusKey Weakness
WEP1997RC4 (40-bit)❌ Broken — never useIV reuse allows key recovery in minutes with freely available tools
WPA2003TKIP❌ DeprecatedFaster RC4 but still vulnerable; transition standard
WPA22004AES-CCMP⚠️ Acceptable with strong passwordVulnerable to KRACK; dictionary attacks on weak PSKs; no forward secrecy
WPA32018AES-GCMP + SAE✅ Current standardSAE (Simultaneous Authentication of Equals) eliminates offline dictionary attacks

Securing a Wireless Network — Key Controls

  • Use WPA3 (or WPA2-Enterprise with certificates if WPA3 unavailable); never WEP or WPA
  • Strong, unique WiFi password — minimum 16 characters, not a dictionary word; WPA3-SAE makes offline cracking computationally infeasible anyway
  • Change default router credentials — 'admin/admin' or 'admin/password' are the first credentials attackers try
  • Disable SSID broadcast is NOT security — tools like airodump-ng detect hidden networks instantly; it only adds inconvenience for legitimate users
  • Guest network isolation — visitors get internet access but cannot reach internal network resources
  • Wireless IDS (WIDS) — detects rogue APs and deauthentication attacks; enterprise-grade AP controllers include this
  • MAC filtering — low value; MAC addresses can be spoofed trivially; do not rely on it
  • VPN on public WiFi — encrypts traffic end-to-end even if the WiFi itself is compromised
  • Auto-join disabled — prevents devices from silently connecting to evil twin networks
🔒 SecurityEnterprise WiFi security goes further with 802.1X (WPA2/WPA3-Enterprise): each user authenticates with their own credentials (username + password or certificate) rather than a shared PSK. This means revoking access for one employee doesn't require changing the WiFi password for everyone, and a stolen PSK doesn't give an attacker network access.
🧠Quick Checkfirst try = +5 XP

You're at a coffee shop and connect to 'CoffeeShop_Free'. You notice there's another network also called 'CoffeeShop_Free' with a slightly stronger signal. You connect to the stronger one and browse normally. Later you find out your bank login was stolen. What most likely happened, and how could you have protected yourself?

0 XP🔥 0 days