Browse Source

krackattacks: better check if hostapd command failed

Mathy Vanhoef 7 years ago
parent
commit
1757f4827d
1 changed files with 3 additions and 0 deletions
  1. 3 0
      krackattack/krack-test-client.py

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

@@ -41,6 +41,9 @@ def hostapd_command(hostapd_ctrl, 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)
+	elif "FAIL" in rval:
+		log(ERROR, "Failed to execute command %s" % cmd)
+		quit(1)
 	return rval
 
 #### Main Testing Code ####