// reference · security

Wi-Fi Security Reference

WPA2 vs WPA3, PMF, SAE, 802.1X EAP types, RSN IE analysis, and the attack signatures every Wi-Fi engineer should be able to read in a PCAP.

— Shankar K., Wi-Fi engineer, Irving TX · 15 years 802.11 protocol analysis

RSN Information Element - Reading Security in a PCAP

The RSN IE (id=48) in a Beacon or AssocReq tells you everything about what security the AP is offering and what the client actually negotiated. It is the single most important IE for security diagnosis. Every mismatch between the Beacon RSN IE and the AssocReq RSN IE is a potential authentication failure.
RSN IE structure
FieldWhat it containsPCAP filterWhat to look for
Group Cipher SuiteBroadcast/multicast encryption. Usually CCMP (AES) or TKIP.wlan_mgt.rsn.gcs.typeTKIP = WPA1-era. CCMP = WPA2+. GCMP = WPA3/Wi-Fi 6.
Pairwise Cipher Suite ListUnicast encryption options offered by AP.wlan_mgt.rsn.pcs.typeCCMP only = clean. TKIP + CCMP = mixed mode, downgrade risk.
AKM Suite ListAuthentication and Key Management - how keys are derived.wlan_mgt.rsn.akms.type1=802.1X, 2=PSK, 4=FT-PSK, 8=SAE, 18=OWE. See table below.
RSN CapabilitiesPMF status (MFPC/MFPR bits), pre-auth, PTKSA/GTKSA replay counters.wlan_mgt.rsn.capabilitiesMFPC=0 in Beacon = deauth forgery possible. MFPR=1 = WPA3.
PMKID ListCached PMK identifiers from previous sessions.wlan_mgt.rsn.pmkidPresent in AssocReq = client attempting PMKID caching or OKC.
AKM types - the most important field
AKM typeStandardAuthentication methodTypical deployment
1802.11i802.1X with SHA-1WPA2-Enterprise - EAP-TLS, PEAP, TTLS. Not permitted on 6 GHz.
2802.11iPSK (Pre-Shared Key)Home / SMB WPA2-Personal
3802.11rFT over 802.1XEnterprise with Fast Transition
4802.11rFT over PSKPSK network with Fast Transition
5802.11-2016802.1X with SHA-256WPA3-Enterprise. Works on 6 GHz. PMF mandatory.
8802.11axSAE (Simultaneous Auth of Equals)WPA3-Personal. Works on 6 GHz. PMF mandatory.
9802.11axFT over SAEWPA3-Personal with Fast Transition
12802.11ax802.1X with SHA-384 (Suite-B)WPA3-Enterprise 192-bit mode - government, defence, CNSA.
18802.11axOWE (Opportunistic Wireless Encryption)Open networks with encryption (Wi-Fi Enhanced Open). Works on 6 GHz.
24802.11-2020SAE-EXT-KEY (GCMP-256)WPA3-Personal required by newer Wi-Fi 7 certification profiles.
00:40:96 (OUI)Cisco proprietaryCCKMLegacy Cisco CCX fast roam
Field note: The most common RSN mismatch I find is a client sending an AssocReq with AKM type 2 (PSK) when the Beacon advertises AKM types 2 and 4 (PSK + FT-PSK). The client chose PSK and bypassed FT entirely. This is usually a driver issue - the client supports FT but the driver picks the first AKM it recognises. Filter: compare wlan_mgt.rsn.akms.type in the Beacon vs the AssocReq for the same client.
Audit Wi-Fi security from a PCAP
WiFi Analyser checks RSN IE mismatches, PMF status, EAPOL completeness, rogue AP signatures, and deauth flood patterns - automatically from your PCAP upload.
try it free ↗
// share this page
// also on this site
reference
Wireshark Filter Reference
reference
Status & Reason Codes
reference
4-Way Handshake Visualizer
← previous
reference
802.11 Roaming - k/v/r
next →
reference
Wi-Fi Deployment Reference
SK
Shankar K., Wi-Fi engineer, Irving TX
Building WiFi Analyser V2 · CWNA-109 in progress · one post every two weeks
// leave a comment