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

Method probe_request_received

scapy/modules/krack/automaton.py:480–485  ·  view source on GitHub ↗
(self, pkt)

Source from the content-addressed store, hash-verified

478
479 @ATMT.receive_condition(WAIT_AUTH_REQUEST)
480 def probe_request_received(self, pkt):
481 # Avoid packet from other interfaces
482 if RadioTap not in pkt:
483 return
484 if Dot11ProbeReq in pkt and pkt[Dot11Elt::{'ID': 0}].info == self.ssid:
485 raise self.WAIT_AUTH_REQUEST().action_parameters(pkt)
486
487 @ATMT.action(probe_request_received)
488 def send_probe_response(self, pkt):

Callers

nothing calls this directly

Calls 2

WAIT_AUTH_REQUESTMethod · 0.95
action_parametersMethod · 0.80

Tested by

no test coverage detected