mirror of
https://github.com/vanhoefm/fragattacks.git
synced 2025-01-18 10:54:03 -05:00
tests: Verify that Disconnect-Request prevents PMKSA caching
Signed-off-by: Jouni Malinen <jouni@qca.qualcomm.com>
This commit is contained in:
parent
0d7c5e1dfc
commit
e58f59cb58
@ -285,9 +285,14 @@ def test_radius_das_disconnect(dev, apdev):
|
||||
ev = dev[0].wait_event(["CTRL-EVENT-DISCONNECTED"])
|
||||
if ev is None:
|
||||
raise Exception("Timeout while waiting for disconnection")
|
||||
ev = dev[0].wait_event(["CTRL-EVENT-CONNECTED"])
|
||||
ev = dev[0].wait_event(["CTRL-EVENT-EAP-STARTED", "CTRL-EVENT-CONNECTED"])
|
||||
if ev is None:
|
||||
raise Exception("Timeout while waiting for re-connection")
|
||||
if "CTRL-EVENT-EAP-STARTED" not in ev:
|
||||
raise Exception("Unexpected skipping of EAP authentication in reconnection")
|
||||
ev = dev[0].wait_event(["CTRL-EVENT-CONNECTED"])
|
||||
if ev is None:
|
||||
raise Exception("Timeout while waiting for re-connection to complete")
|
||||
|
||||
logger.info("Disconnect-Request with matching Calling-Station-Id and non-matching CUI")
|
||||
req = radius_das.DisconnectPacket(dict=dict, secret="secret",
|
||||
|
Loading…
Reference in New Issue
Block a user