MCPcopy Create free account
hub / github.com/secdev/scapy / PMKIDListPacket

Class PMKIDListPacket

scapy/layers/dot11.py:1182–1195  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1180# 802.11-2020 9.4.2.24.5
1181
1182class PMKIDListPacket(Packet):
1183 name = "PMKIDs"
1184 fields_desc = [
1185 LEFieldLenField("nb_pmkids", None, count_of="pmkid_list"),
1186 FieldListField(
1187 "pmkid_list",
1188 None,
1189 XStrFixedLenField("", "", length=16),
1190 count_from=lambda pkt: pkt.nb_pmkids
1191 )
1192 ]
1193
1194 def extract_padding(self, s):
1195 return "", s
1196
1197
1198# 802.11-2020 9.4.2.24.1

Callers 1

Dot11EltRSNClass · 0.85

Calls 3

LEFieldLenFieldClass · 0.90
FieldListFieldClass · 0.90
XStrFixedLenFieldClass · 0.90

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…