Strobesstrobes
Platform
Solutions
Resources
Customers
Company
Pricing
Book a Demo
Strobesstrobes

Strobes connects every exposure signal to autonomous action, so security teams fix what matters, prove what works, and stop chasing noise.

Book a DemoTalk to an expert
ISO 27001SOC 2CREST
  • Platform
  • Platform Overview
  • Agentic Exposure Management
  • AI Agents
  • Integrations
  • API & Developers
  • Workflows & Automation
  • Analytics & Reporting
  • Solutions
  • Exposure Assessment (EAP)
  • Attack Surface Management
  • Application Security Posture
  • Risk-Based Vulnerability Management
  • Adversarial Exposure Validation (AEV)
  • AI Pentesting
  • Pentesting as a Service
  • CTEM Framework
  • By Industry
  • Financial Institutions
  • Technology
  • Retail
  • Healthcare
  • Manufacturing
  • By Roles
  • CISOs
  • Security Directors
  • Cloud Security Leaders
  • App Sec Leaders
  • Resources
  • Blog
  • Customer Stories
  • eBooks
  • Datasheets
  • Videos & Demos
  • Exposure Management Academy
  • CTEM Maturity Assessment
  • Pentest Health Check
  • Security Tool ROI Calculator
  • Company
  • About Strobes
  • Meet the Team
  • Trust & Security
  • Contact Us
  • Careers
  • Become a Partner
  • Technology Partner
  • Partner Deal Registration
  • Press Release

Weekly insight for security leaders

CTEM research, agentic AI trends, and what's actually moving the needle.

© 2026 Strobes Security Inc. All rights reserved.

Privacy PolicyTerms of ServiceCookie PolicyAccessibilitySitemap
Back to Blog
Wireless Penetration Testing Guide
Network PentestingPenetration Testing

Wireless Penetration Testing Guide

Akhil ReniOctober 7, 20257 min read

Table of Contents

  • What is wireless penetration testing?
  • What hardware and tools do you need?
  • How do you attack WPA2-PSK networks?
  • Is WPA3 actually more secure, and how do you test it?
  • How do Evil Twin and enterprise Wi-Fi attacks work?
  • Frequently asked questions
  • Sources and references

Authors

A
Akhil Reni

Share

Table of Contents

  • What is wireless penetration testing?
  • What hardware and tools do you need?
  • How do you attack WPA2-PSK networks?
  • Is WPA3 actually more secure, and how do you test it?
  • How do Evil Twin and enterprise Wi-Fi attacks work?
  • Frequently asked questions
  • Sources and references

Authors

A
Akhil Reni

Share

TL;DR
  • ✓Wireless penetration testing assesses the security of Wi-Fi networks, looking for weak encryption, crackable handshakes, and rogue or impersonated access points.
  • ✓WPA2-PSK falls to handshake or PMKID capture plus offline cracking; WPA3 resists those but is still vulnerable to downgrade and transition-mode attacks.
  • ✓aircrack-ng, hcxdumptool, and hashcat form the core toolkit, with a monitor-mode-capable adapter as the only special hardware.
  • ✓Evil Twin and rogue-AP attacks bypass encryption entirely by tricking users into connecting to an attacker-controlled network.
  • ✓Enterprise WPA2-Enterprise (802.1X) introduces a different attack surface: certificate validation gaps and credential-harvesting fake RADIUS servers.

Wireless penetration testing measures how easily an attacker sitting in your parking lot, or your lobby, can get onto your network or harvest credentials over the air. Wi-Fi extends your attack surface past the walls, and a single weak pre-shared key or an unvalidated 802.1X certificate can undo every firewall you own. The good news: the methodology is well-defined and the tooling is mature.

This guide covers the wireless pentest workflow end to end: discovery, handshake capture, cracking, WPA3 considerations, and Evil Twin attacks. We name the exact commands so the work is reproducible. It sits alongside our broader network penetration testing overview and the internal network penetration testing guide that picks up once you're on the LAN.

What is wireless penetration testing?

Wireless penetration testing is an authorized assessment of Wi-Fi networks and the clients that use them, aimed at finding weaknesses an attacker could exploit from radio range. That includes the encryption protecting each SSID, the strength of pre-shared keys, the configuration of enterprise 802.1X, and whether users can be lured onto rogue access points.

Unlike a wired test, range is the scope. A tester maps which of your networks are reachable from public areas, identifies guest and corporate SSID separation, and checks whether a foothold on Wi-Fi grants access to the internal network or stays sandboxed. The deliverable is usually a mix of crackable keys, missing client protections, and segmentation gaps.

What hardware and tools do you need?

The one piece of special hardware is a wireless adapter that supports monitor mode and packet injection, such as chipsets based on the Atheros AR9271 or Realtek RTL8812AU. Everything else is software, and Kali or a similar distro ships most of it.

  • aircrack-ng suite: airmon-ng to enable monitor mode, airodump-ng to scan and capture, aireplay-ng to deauthenticate clients, aircrack-ng to crack.
  • hcxdumptool and hcxtools: capture PMKIDs and convert captures to hashcat format.
  • hashcat: GPU-accelerated cracking (mode 22000 covers both handshake and PMKID).
  • Kismet: passive discovery, rogue-AP detection, and client tracking.
  • hostapd-wpe / eaphammer: stand up fake APs and rogue RADIUS for enterprise attacks.

Put the adapter in monitor mode with airmon-ng start wlan0, then survey with airodump-ng wlan0mon to list every BSSID, channel, encryption type, and connected client in range.

How do you attack WPA2-PSK networks?

WPA2-PSK falls to one of two captures followed by offline cracking. The classic route grabs the 4-way handshake: target a network with airodump-ng -c 6 , bssid <AP> -w cap wlan0mon, force a reconnect with a deauth (aireplay-ng -0 5 -a <AP> -c <client> wlan0mon), and capture the handshake when the client re-associates.

The cleaner, clientless route is the PMKID attack: hcxdumptool -i wlan0mon -o capture.pcapng pulls the PMKID directly from the AP's first message, no deauth and no connected client needed. Either way, convert to hashcat format (hcxpcapngtool) and crack with hashcat -m 22000 capture.hc22000 wordlist.txt. The whole test really measures one thing: is the pre-shared key in a wordlist? A 12-character random key essentially can't be cracked; "Summer2025!" cracks in minutes.

Wireless encryption: attack surface at a glance
ProtocolPrimary attackPractical risk
WEPIV collision, instant key recoveryBroken; crackable in minutes
WPA2-PSKHandshake / PMKID capture + offline crackHigh if the passphrase is guessable
WPA2-EnterpriseRogue RADIUS, MSCHAPv2 harvestHigh without cert validation
WPA3-SAETransition-mode downgrade, DragonbloodStrong if WPA3-only with a long key

Is WPA3 actually more secure, and how do you test it?

WPA3 closes the offline-cracking hole that defines WPA2, but it isn't bulletproof. Its Simultaneous Authentication of Equals (SAE) handshake resists the capture-and-crack workflow, so a strong WPA3 network won't fall to aircrack-ng the way WPA2 does. That's a genuine improvement.

The catch is transition mode. Most deployments run WPA3 in a mixed WPA2/WPA3 mode for backward compatibility, and an attacker can force a downgrade to WPA2 and attack that instead. The Dragonblood research also showed side-channel and downgrade weaknesses in early SAE implementations. So a WPA3 test checks for transition-mode downgrade, weak-group negotiation, and whether the network can be coerced back to a crackable handshake. WPA3-only, with a strong passphrase, is the configuration you want to confirm.

How do Evil Twin and enterprise Wi-Fi attacks work?

Evil Twin attacks skip encryption entirely by impersonating a trusted network. You stand up a fake AP with the same SSID using eaphammer or hostapd, deauth clients off the real one, and capture credentials or serve a captive-portal phish when they reconnect to yours. Against open or guest networks this is trivial; against PSK it's harder but still works for credential phishing.

WPA2-Enterprise (802.1X) is where it gets interesting. If clients don't strictly validate the RADIUS server certificate, a rogue RADIUS server (hostapd-wpe, eaphammer) harvests the MSCHAPv2 challenge-response, which you crack offline to recover the user's domain credentials, often the same ones that unlock Active Directory. The fix is server-certificate validation and, ideally, EAP-TLS with client certs. Because wireless exposure shifts as APs and clients change, the continuous approach in agentic pentesting complements periodic on-site Wi-Fi assessments.

Strobes insight
A WPA2 test really answers one question: is the pre-shared key in a wordlist? A 12-plus character random passphrase defeats offline cracking outright. The cheapest wireless fix you have is a strong key and WPA3-only mode.

Frequently asked questions

What is wireless penetration testing?
It is an authorized assessment of Wi-Fi networks from radio range, checking encryption strength, pre-shared key quality, enterprise 802.1X configuration, and exposure to rogue or impersonated access points. The goal is to find ways an attacker could get onto the network or harvest credentials over the air.
Can WPA2 still be cracked in 2026?
Yes, when the pre-shared key is weak. Testers capture the 4-way handshake or a PMKID and crack it offline with hashcat. A long, random passphrase makes this computationally infeasible, but dictionary-friendly passwords still fall in minutes.
Is WPA3 crackable?
WPA3's SAE handshake resists the offline capture-and-crack attack that works on WPA2. The main weaknesses are transition mode, where an attacker downgrades the connection to WPA2, and early implementation flaws found in the Dragonblood research. WPA3-only mode with a strong key is the secure configuration.
What is an Evil Twin attack?
An Evil Twin is a rogue access point that impersonates a legitimate network's SSID. Attackers deauthenticate clients from the real AP so they reconnect to the fake one, then harvest credentials or serve a phishing captive portal. It bypasses encryption by attacking the user rather than the protocol.
What hardware do I need for Wi-Fi pentesting?
You need a wireless adapter that supports monitor mode and packet injection, commonly built on Atheros or Realtek chipsets. The rest is software like the aircrack-ng suite, hcxdumptool, and hashcat, all of which ship with Kali Linux.
How do you attack WPA2-Enterprise networks?
If clients don't validate the RADIUS server certificate, you stand up a rogue RADIUS server with hostapd-wpe or eaphammer to capture the MSCHAPv2 challenge-response, then crack it offline to recover domain credentials. The defense is strict server-certificate validation and ideally EAP-TLS with client certificates.

Sources and references

  • Aircrack-ng Documentation
  • Dragonblood: WPA3 Analysis
  • MITRE ATT&CK: Initial Access
A
Akhil Reni
Co-founder and CTO, Strobes
Akhil Reni is co-founder and CTO of Strobes, building AI-driven penetration testing and exposure management for security teams.
Tags
WirelessNetwork PentestingOffensive Security

Stop chasing vulnerabilities Start reducing exposure

See how Strobes AI agents validate and fix your most critical exposures automatically.

Book a Demo
Continue Reading

Related Posts

How to Catch Blind Bugs Scanners Miss
Penetration TestingOffensive Security

How to Catch the Blind Bugs Scanners Miss

Out-of-band validation detects blind SSRF, blind SQLi, and out-of-band XXE that return no in-band response. Learn how it works and why it matters.

May 29, 202613 min
Black-Box Agentic Scanners Strengths and Their Ceiling
Penetration TestingOffensive Security

Black-Box Agentic Scanners: Strengths and Their Ceiling

Black box agentic pentesting finds real CVEs fast and proves them, but where does it hit a ceiling? An honest, category-level verdict.

May 29, 20268 min
Why AI-Generated Exploit Code Must Run in Isolation
LLM SecurityOffensive Security

Why AI-Generated Exploit Code Must Run in Isolation

Agent-written exploit code is the new RCE vector aimed at the tester. Here's why per-task isolation and egress control are non-negotiable.

May 29, 202613 min