Documentation Index
Fetch the complete documentation index at: https://docs.bytejmp.com/llms.txt
Use this file to discover all available pages before exploring further.
Overview
Before attacking a WPA Enterprise network, passive capture reveals critical information: domain names from EAP identity frames, server certificate details for cloning, and supported EAP methods. Steps 1–3 are entirely passive. Step 4 (EAP method enumeration) sends active probes and requires a valid username.1. Capture Enterprise Traffic
Focus airodump-ng on the target AP channel:2. Harvest EAP Identities
Misconfigured clients send their identity (username + domain) in plaintext before the TLS tunnel is established. Extract with tshark:Response, Identity packets, they contain DOMAIN\username or username@domain.
3. Extract Server Certificate
The RADIUS server sends its TLS certificate in cleartext during the handshake. Useful for:- Identifying the organisation and domain
- Cloning the certificate for a trusted rogue AP attack
4. Enumerate EAP Methods (EAP_buster)
With a valid username from step 2, probe the AP to discover which EAP methods it supports:PEAP, TTLS, TLS, FAST.
5. Organise Captures (wifi_db)
wifi_db imports all captures into a SQLite database for easy querying of identities, certificates, and network metadata:
Summary: What to Collect
| Data | Source | Tool |
|---|---|---|
| Domain name | EAP identity frames | tshark / Wireshark |
| Usernames | EAP identity frames | tshark / wifi_db |
| Certificate CN / email | TLS handshake | tshark |
| Supported EAP methods | Active probe | EAP_buster |