Browse Source

test-client: detect if hostapd was not compiled

Mathy Vanhoef 7 years ago
parent
commit
a95a698f49
1 changed files with 7 additions and 2 deletions
  1. 7 2
      krackattack/krack-test-client.py

+ 7 - 2
krackattack/krack-test-client.py

@@ -10,7 +10,7 @@ import logging
 logging.getLogger("scapy.runtime").setLevel(logging.ERROR)
 from scapy.all import *
 from libwifi import *
-import sys, socket, struct, time, subprocess, atexit, select
+import sys, socket, struct, time, subprocess, atexit, select, os.path
 from datetime import datetime
 from wpaspy import Ctrl
 
@@ -453,7 +453,12 @@ class KRAckAttackClient():
 
 		# Open the patched hostapd instance that carries out tests and let it start
 		log(STATUS, "Starting hostapd ...")
-		self.hostapd = subprocess.Popen(["../hostapd/hostapd", "hostapd.conf"] + sys.argv[1:])
+		try:
+			self.hostapd = subprocess.Popen(["../hostapd/hostapd", "hostapd.conf"] + sys.argv[1:])
+		except:
+			if not os.path.exists("../hostapd/hostapd"):
+				log(ERROR, "hostapd executable not found. Did you compile hostapd? Use --help param for more info.")
+			raise
 		time.sleep(1)
 
 		try: