Browse Source

test-client: add missing hostapd_command function

Mathy Vanhoef 7 years ago
parent
commit
20e284c429
1 changed files with 9 additions and 0 deletions
  1. 9 0
      krackattack/krack-test-client.py

+ 9 - 0
krackattack/krack-test-client.py

@@ -139,6 +139,15 @@ the 4-way handshake or group key handshake, take the following steps:
 # This value must match the one in `../src/ap/wpa_auth.c` (same variable name).
 HANDSHAKE_TRANSMIT_INTERVAL = 2
 
+#### Utility Commands ####
+
+def hostapd_command(hostapd_ctrl, cmd):
+	rval = hostapd_ctrl.request(cmd)
+	if "UNKNOWN COMMAND" in rval:
+		log(ERROR, "Hostapd did not recognize the command %s. Did you (re)compile hostapd?" % cmd.split()[0])
+		quit(1)
+	return rval
+
 #### Main Testing Code ####
 
 class ClientState():