krack-test-client.py 24 KB

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