Parcourir la source

krackattacks: better check if hostapd command failed

Mathy Vanhoef il y a 7 ans
Parent
commit
1757f4827d
1 fichiers modifiés avec 3 ajouts et 0 suppressions
  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 ####