Expand description
IEEE 802.11 Information Elements (IEs).
Information elements are TLV (Tag-Length-Value) structures appended to management frame bodies (beacons, probe requests/responses, etc.).
Each IE has a 1-byte ID, 1-byte length, and variable-length data.
This module provides a generic Dot11Elt for arbitrary IEs, plus
specialized parsers for common IEs (SSID, Rates, RSN, HT, VHT, etc.).
Structs§
- AkmSuite
- An AKM (Authentication and Key Management) suite descriptor.
- Cipher
Suite - A cipher suite descriptor (OUI + type).
- Country
Triplet - A regulatory triplet within a Country IE.
- Dot11
Elt - Generic 802.11 Information Element (TLV).
- Dot11
EltCSA - Channel Switch Announcement Information Element (ID=37).
- Dot11
EltCountry - Country Information Element (ID=7).
- Dot11
EltDSS Set - DS Parameter Set Information Element (ID=3).
- Dot11
EltHT Capabilities - HT Capabilities Information Element (ID=45).
- Dot11
EltHT Info - HT Information (Operation) Element (ID=61).
- Dot11
EltMicrosoftWPA - Microsoft WPA Information Element (WPA1).
- Dot11
EltRSN - RSN (Robust Security Network) Information Element (ID=48).
- Dot11
EltRates - Supported Rates Information Element (ID=1).
- Dot11
EltSSID - SSID Information Element (ID=0).
- Dot11
EltTIM - Traffic Indication Map (TIM) Information Element (ID=5).
- Dot11
EltVHT Capabilities - VHT Capabilities Information Element (ID=191).
- Dot11
EltVHT Operation - VHT Operation Information Element (ID=192).
- Dot11
EltVendor Specific - Vendor Specific Information Element (ID=221).
- RsnInfo
- Parsed RSN (WPA2/WPA3) information.
Constants§
- HT_
CAP_ LEN - HT Capabilities IE data length.
- HT_
INFO_ LEN - HT Info IE data length.
- VHT_
CAP_ LEN - VHT Capabilities IE data length.
- VHT_
OP_ LEN - VHT Operation IE data length.
Functions§
- extract_
channel - Extract the channel from DS Parameter Set IE.
- extract_
ssid - Extract the SSID from a list of IEs.
- find_
all_ ies - Find all IEs with the given ID in a list of IEs.
- find_ie
- Find the first IE with the given ID in a list of IEs.