NuxNuxLi / krackattacks-pineapple

WPA2 Key reinstallation attack (KRACK) on the WiFi Pineapples

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

MODIFIED TO WORK ON THE WIFI PINEAPPLE NANO/TETRA (OpenWRT - ar71xx)

This project contains scripts to test if clients or access points (APs) are affected by the KRACK attack against WPA2. For details behind this attack see our website and the research paper.

Remember that our scripts are NOT attack scripts! You require network credentials in order to test if an access point or client is affected by the attack.

Prerequisites

These commands were run on a fresh fabric-reset Pineapple Tetra (from this repo. root-directory):

opkg update
opkg install libnl sysfsutils python-pip
pip install scapy
opkg install ./krackattack/python-pycryptodomex_3.4.7-1_ar71xx.ipk

Then disable hardware encryption using the script ./krackattack/disable-hwcrypto.sh. I've tested these scripts on a Pineapple Tetra.

Remember to not use wlan1 for anything else during the attack. The script will be using wlan1 for broadcasting the network.

Testing Clients: detecting a vulnerable 4-way and group key handshake

To simulate an attack against a client follow the detailed instructions in krackattack/krack-test-client.py:

cd krackattack/
./krack-test-client.py --help

Now follow the detailed instructions that the script outputs. The script assumes that the client will use DHCP to get an IP. Remember to also perform extra tests using the --tptk and --tptk-rand parameters, and using --group to test the group-key handshake. So concretely, we recommend running the following tests:

  1. ./krack-test-client.py
  2. ./krack-test-client.py --tptk
  3. ./krack-test-client.py --tptk-rand
  4. ./krack-test-client.py --group

Correspondence to Wi-Fi Alliance tests

The Wi-Fi Alliance created a custom vulnerability detection tool based on our scripts. At the time of writing, this tool is only accessible to Wi-Fi Alliance members. Their tools supports several different tests, and these tests correspond to the functionality in our script as follows:

  • 4.1.1 (Plaintext retransmission of EAPOL Message 3). We currently do not support this test.
  • 4.1.2 (Immediate retransmission of EAPOL M3 in plaintext). We currently do not suppor this test.
  • 4.1.3 (Immediate retransmission of encrypted EAPOL M3 during pairwise rekey handshake). This corresponds to ./krack-test-client.py except that encrypted EAPOL M3 are sent periodically instead of immediately.
  • 4.1.5 (PTK reinstallation in 4-way handshake when STA uses Temporal PTK construction, same ANonce). Execue this test using ./krack-test-client.py --tptk.
  • 4.1.6 (PTK reinstallation in 4-way handshake when STA uses Temporal PTK construction, random ANonce). Execue this test using ./krack-test-client.py --tptk-rand.
  • 4.2.1 (Group key handshake vulnerability test on STA). Execue this test using ./krack-test-client.py --group.
  • 4.3.1 (Reinstallation of GTK and IGTK on STA supporting WNM sleep mode). We currently do not support this test (and neither does the Wi-Fi Alliance).

Testing Access Points: Detecting a vulnerable FT Handshake (802.11r)

The attached Linux script krack-ft-test.py can be used to determine if an AP is vulnerable to our attack. The script contains detailed documentation on how to use it:

cd krackattack/
./krack-ft-test.py --help

Now follow the detailed instructions that the script outputs. Essentially, it wraps a normal wpa_supplicant client, and will keep replaying the FT Reassociation Request (making the AP reinstall the PTK).

About

WPA2 Key reinstallation attack (KRACK) on the WiFi Pineapples

License:GNU General Public License v3.0


Languages

Language:C 73.1%Language:Python 23.9%Language:C++ 1.1%Language:Makefile 1.1%Language:Shell 0.5%Language:Java 0.2%Language:PHP 0.2%Language:Roff 0.0%Language:Perl 0.0%Language:QMake 0.0%