fragattacks/research/README.md

847 lines
51 KiB
Markdown
Raw Normal View History

2020-07-31 23:30:42 -04:00
# <div align="center">Fragmentation & Aggregation Attacks</div>
2020-04-15 13:43:28 -04:00
2020-07-31 23:30:42 -04:00
# 1. Introduction
The discovered vulnerabilities affect all Wi-Fi networks. A short summary of all vulnerabilities can be
found [here](SUMMARY.md), although we also recommend reading the [paper](fragattacks.pdf). The resulting
attacks are identical against WPA2 and WPA3 because their CCMP and GCMP encryption ciphers are identical.
2020-07-31 23:30:42 -04:00
Older WPA networks by default use TKIP for encryption, and the applicability of the attacks against
this cipher are discussed in the paper. To illustrate that Wi-Fi has been vulnerable since its creation,
the paper also briefly discusses the applicability of the attacks against WEP.
<a id="id-supported-cards"></a>
2020-07-31 23:30:42 -04:00
# 2. Supported Network Cards
2020-05-23 20:39:15 -04:00
Only specific wireless network cards are supported. This is because some network cards may overwrite the
2020-08-08 00:35:28 -04:00
sequence or fragment number of injected frames, or may reorder frames of different priority, and this
interferes with the test tool (i.e. the tool might say a device is secure although it's not).
I have confirmed that the following network cards work properly:
2020-05-23 20:39:15 -04:00
2020-07-26 04:01:01 -04:00
| Network Card | USB | 5GHz | mixed mode | injection mode | hwsim mode |
| ---------------------- | --- | ---- | ----------------------- | ----------------------- | -------------------- |
| Technoethical N150 HGA | Yes | No | patched driver/firmware | patched driver/firmware | _under development_ |
| TP-Link TL-WN722N v1.x | Yes | No | patched driver/firmware | patched driver/firmware | _under development_ |
| Alfa AWUS036NHA | Yes | No | patched driver/firmware | patched driver/firmware | _under development_ |
2020-08-08 00:35:28 -04:00
| Intel Wireless-AC 8265 | No | Yes | patched driver | yes | _under development_ |
| Intel Wireless-AC 3160 | No | Yes | patched driver | yes | _under development_ |
2020-07-26 04:01:01 -04:00
| Alfa AWUS036ACM | Yes | Yes | patched driver | yes | _under development_ |
| Netgear WN111v2 | Yes | No | patched driver | yes | _under development_ |
2020-08-08 00:35:28 -04:00
| Alfa AWUS036ACH | Yes | Yes | **TODO** | **TODO** | _under development_ |
2020-07-22 07:50:06 -04:00
The three last colums signify:
1. Mixed mode: whether the network card can be used in [mixed mode](#id-mixed-mode).
2. Injection mode: whether the network card can be used as a second interface to inject frames in [injection mode](#id-injection-mode).
2020-05-23 20:39:15 -04:00
3. Hwsim mode: whether the network card can be used in the experimental [hwsim mode](#id-hwsim-mode).
2020-06-28 04:55:11 -04:00
_Yes_ indicates the card works out-of-the-box in the given mode. _Patched driver/firmware_
2020-08-08 00:35:28 -04:00
means that the card is compatible when used with patched drivers and/or firmware.
_No_ means this mode is not supported by the network card.
2020-08-11 03:39:02 -04:00
**I recommend using the test tool in mixed mode.**
2020-05-23 20:39:15 -04:00
Note that USB devices can be used inside a virtual machine, and the modified drivers and/or firmware
can be installed in this virtual machine. However, I found that the usage of virtual machines can
make network cards less reliable, and I instead recommend the usage of a live CD if you cannot install
the modified drivers/firmware natively.
2020-05-23 20:39:15 -04:00
My experience with the above network cards can be found [here](#id-notes-device-support). Summarized:
2020-05-23 20:39:15 -04:00
2020-08-08 00:35:28 -04:00
- I recommend the Technoethical N150 HGA in mixed mode. This device is identical to the TP-Link TL-WN722N v1.x
and requires the usage of patched drivers and firmware.
2020-05-23 20:39:15 -04:00
- The Intel 3160 and 8265 are supported and extensively tested. Sometimes their firmware crashed but
a reboot makes the network card usable again. The Intel AX200 is not compatible with the test tool.
2020-08-08 00:35:28 -04:00
- During my tests the AWUS036ACM dongle was unreliable when connected to a USB3.0 port, but worked
well when connected to a USB2.0 port. This behaviour may depend on your computer.
- The WN111v2 seems to work well, although I did not test it extensively.
2020-06-19 23:49:39 -04:00
- The driver for the AWUS036ACH is not part of the Linux kernel and requires the installation of a separate
driver. On some Linux distributions such as Kali you can install this driver through the package manager.
If you are unable to find one of the above network cards, you can search for [alternative network cards](#id-alternative-cards)
that have a high chance of also working. When using a network card that is not explicitly supported
I strongly recommend to first run the [injection tests](#id-injection-tests) before using it,
2020-08-08 00:35:28 -04:00
and using the tool against a known-vulnerable implementation to confirm the tool works properly.
2020-06-13 12:41:30 -04:00
<a id="id-prerequisites"></a>
2020-07-31 23:30:42 -04:00
# 3. Prerequisites
2020-05-23 20:39:15 -04:00
The test tool was tested on Kali Linux and Ubuntu 20.04. To install the required dependencies, execute:
2020-05-23 20:39:15 -04:00
# Kali Linux and Ubuntu:
sudo apt-get update
2020-07-22 07:50:06 -04:00
sudo apt-get install libnl-3-dev libnl-genl-3-dev libnl-route-3-dev libssl-dev \
libdbus-1-dev git pkg-config build-essential macchanger net-tools python3-venv \
aircrack-ng rfkill
# Kali Linux:
sudo apt-get install firmware-atheros
# Ubuntu/Debian:
sudo apt-get install firmware-ath9k-htc
2020-05-23 20:39:15 -04:00
Now clone this repository, build the tools, and configure a virtual python3 environment:
2020-07-31 23:30:42 -04:00
# **TODO: replace with real HTTP unauthenticated link on release**
2020-06-19 23:49:39 -04:00
git clone https://gitlab.com/aconf/wifi.git fragattack --recursive
cd fragattack/research
2020-05-23 20:39:15 -04:00
./build.sh
python3 -m venv venv
source venv/bin/activate
2020-05-27 02:45:46 -04:00
pip install wheel
2020-05-23 20:39:15 -04:00
pip install -r requirements.txt
2020-08-08 00:35:28 -04:00
The above instructions only have to be executed once. After pulling in new code using git you do
have to execute `./build.sh` again.
2020-05-23 20:39:15 -04:00
<a id="id-patched-drivers"></a>
2020-07-31 23:30:42 -04:00
# 4. Patched Drivers
2020-05-27 02:45:46 -04:00
2020-08-08 00:35:28 -04:00
Install patched drivers using:
2020-05-27 02:45:46 -04:00
sudo apt-get install bison flex linux-headers-$(uname -r)
2020-07-31 23:30:42 -04:00
# **TODO: replace with real HTTP unauthenticated link on release instead of separate directory?**
cd driver-backports-5.8-rc2-1
2020-07-31 23:30:42 -04:00
make defconfig-wifi
2020-05-27 02:45:46 -04:00
make -j 4
sudo make install
2020-08-08 00:35:28 -04:00
This compiles the drivers for most network cards supported by Linux. If you only want to compile
the drivers for network cards I explicitly tested, use `make defconfig-experiments` instead.
During the install command you may get several warnings containing `.. needs unknown symbol ..`. You can
ignore these warning as long they do not contain the directory `/lib/modules/*/updates/` and the
2020-08-07 02:24:41 -04:00
compiled drivers are working.
2020-07-31 23:30:42 -04:00
Now install patched `ath9k_htc` firmware:
2020-05-27 02:45:46 -04:00
cd research/ath9k-firmware/
2020-07-22 07:50:06 -04:00
./install.sh
# Now reboot
The `./install.sh` script assumes the `ath9k_htc` firmware images are located in the
directory `/lib/firmware/ath9k_htc`. If this is not the case on your system you have
to manually copy `htc_7010.fw` and `htc_9271.fw` to the appropriate directory.
2020-05-27 02:45:46 -04:00
After installing the patched drivers and firmware you must unplug your Wi-Fi dongles
2020-07-31 23:30:42 -04:00
and **reboot your system**. The above instructions have to be executed again if your
2020-08-08 00:35:28 -04:00
Linux kernel gets updated or if the driver patches get updated.
Note that even when your device works out of the box, I still recommend to install the modified
drivers, as this assures there are no unexpected regressions in kernel and driver code.
In case you cannot install the modified drivers/firmware natively, you can download a
**[live Ubuntu CD]()** that contains the modified drivers/firmware along with our test tool.
Alternatively, you can use a virtual machine with USB network cards, although I found that
using a virtual machine is less reliable in pratice.
2020-05-27 02:45:46 -04:00
<a id="id-before-every-usage"></a>
2020-07-31 23:30:42 -04:00
# 5. Before every usage
2020-05-23 20:39:15 -04:00
Every time you want to use the test tool, you first have to load the virtual python environment
2020-05-23 20:39:15 -04:00
as root. This can be done using:
cd research
2020-05-23 20:39:15 -04:00
sudo su
source venv/bin/activate
You should now disable Wi-Fi in your network manager so it will not interfere with the test tool.
Also make sure no other network services are causing outgoing traffic. You can assure this by
using iptables to block traffic by executing `./droptraffic.sh` (you can revert this by rebooting).
2020-08-08 00:35:28 -04:00
Optionally check using `sudo airmon-ng check` to see which other processes might be using the
wireless network card and might interfere with our tool.
2020-05-23 20:39:15 -04:00
The test tool can test both clients and APs:
2020-05-23 20:39:15 -04:00
2020-06-19 23:49:39 -04:00
- Testing APs: **configure the AP you want to test** by editing `research/client.conf`. This is a
standard `wpa_supplicant` configuration file, see the [hostap documentation](https://w1.fi/cgit/hostap/plain/wpa_supplicant/wpa_supplicant.conf)
for an overview of all the options it supports.
2020-05-23 20:39:15 -04:00
- Testing clients: you must execute the test tool with the `--ap` parameter (see below). This
instructs the tool into creating an AP with as name **testnetwork** and password **abcdefgh**. Connect
2020-06-19 23:49:39 -04:00
to this network with the client you want to test. By default the client must request an IP
using DHCP. To edit properties of the created AP, such as the channel it's created on, you
2020-05-23 20:39:15 -04:00
can edit `research/hostapd.conf`.
<a id="id-interface-modes"></a>
2020-07-31 23:30:42 -04:00
# 6. Interface Modes
<a id="id-mixed-mode"></a>
2020-07-31 23:30:42 -04:00
## 6.1. Mixed mode
This mode requires only one wireless network card, but generally requires a patched driver and/or
firmware. See [Patched Drivers](#id-patched-drivers) on how to install patched drivers/firmware, and
[Supported Network Cards](#id-supported-cards) for compatible network cards. Execute the test
2020-08-08 00:35:28 -04:00
tool in this mode using:
./fragattack wlan0 [--ap] $COMMAND
Possible values of `$COMMAND` are listed in [testing for vulnerabilities](#id-testing-for-flaws)
and [extended vulnerability tests](#id-extended-tests).
2020-08-08 00:35:28 -04:00
One advantage of this mode is that it works fairly well when testing clients that may enter a sleep state.
Nevertheless, if possible, I recommend disabling sleep functionality of the client being tested,
see [Handling sleep mode](#id-handling-sleep).
2020-05-23 20:39:15 -04:00
<a id="id-injection-mode"></a>
2020-07-31 23:30:42 -04:00
## 6.2. Injection mode
2020-05-23 20:39:15 -04:00
2020-06-19 23:49:39 -04:00
This mode requires two wireless network cards: one will act as an AP or the client, and the other
one will be used to inject frames. Execute the test tool in this mode using:
2020-05-23 20:39:15 -04:00
./fragattack wlan0 --inject wlan1 [--ap] $COMMAND
Here interface wlan0 will act as a legitimate client or AP, and wlan1 will be used to inject
2020-06-19 23:49:39 -04:00
frames. For wlan0, any card that supports normal client or AP mode on Linux can be used. For
wlan1, a card must be used that supports injection mode according to [Supported Network Cards](#id-supported-cards).
2020-05-23 20:39:15 -04:00
When testing clients in this mode, injected frames may be sent when the client is in a sleep state.
This causes attacks to fail, so you must make sure the client will not enter a sleep state.
2020-06-19 23:49:39 -04:00
<a id="id-hwsim-mode"></a>
2020-07-31 23:30:42 -04:00
## 6.3. Hwsim mode
2020-06-19 23:49:39 -04:00
This mode is experimental and only for research purposes. See [hwsim mode details](#id-hwsim-details)
2020-06-19 23:49:39 -04:00
for more information.
<a id="id-testing-for-flaws"></a>
2020-07-31 23:30:42 -04:00
# 7. Testing for Vulnerabilities
2020-06-19 23:49:39 -04:00
You can test devices by running the test tool as discussed in [interface modes](#id-interface-modes)
2020-07-31 23:30:42 -04:00
and replacing `$COMMAND` with one of the commands in the table blow. We assume that clients will
request an IP using DHCP (if this is not the case see [static IP configuration](#id-static-ip-config)).
2020-07-31 23:30:42 -04:00
The tool outputs `TEST COMPLETED SUCCESSFULLY` if the device is vulnerable to the attack corresponding
to the given `$COMMAND`, and outputs `Test timed out! Retry to be sure, or manually check result` if
2020-08-11 03:39:02 -04:00
the device is not vulnerable. After the test completed you can close the test tool using `CTRL+C`.
Most attacks have several slight variants represented by different `$COMMAND` values. Verifying the
result of some tests requires running tcpdump or wireshark on the targeted device (this is further
clarified below the table).
2020-07-31 23:30:42 -04:00
2020-08-05 04:15:27 -04:00
To **verify your test setup**, the first command in the table below performs a normal ping that must
2020-07-31 23:30:42 -04:00
succeed. The second command sends the ping as two fragmented Wi-Fi frames, and should only fail
in the rare case that the tested device doesn't support fragmentation. In case one of these tests
is not working, follow the instructions in [network card injection test](#id-injection-tests)
2020-08-08 00:35:28 -04:00
to assure your network card is properly injecting frames. If the client being tested might enter
sleep mode, see [Handling sleep mode](#id-handling-sleep).
2020-06-19 23:49:39 -04:00
2020-07-31 23:30:42 -04:00
The third and fourth commands are not attacks but verify basic defragmentation behaviour of a device
and are further discussed below the table.
2020-06-19 23:49:39 -04:00
| Command | Short description
| -------------------------------- | ---------------------------------
| <div align="center">*Sanity checks*</div>
2020-08-05 04:15:27 -04:00
| `ping` | Send a normal ping.
2020-07-31 23:30:42 -04:00
| `ping I,E,E` | Send a normal fragmented ping.
2020-07-26 04:01:01 -04:00
| <div align="center">*Basic device behaviour*</div>
2020-07-31 23:30:42 -04:00
| `ping I,E,E --delay 5` | Send a normal fragmented ping with a 5 second delay between fragments.
| `ping-frag-sep` | Send a normal fragmented ping with fragments separated by another frame.
2020-07-26 04:01:01 -04:00
| <div align="center">*A-MSDU attacks (§3)*</div>
2020-07-31 23:30:42 -04:00
| `ping I,E --amsdu` | Send a ping encapsulated in a normal (non SSP protected) A-MSDU frame.
2020-07-26 04:01:01 -04:00
| <div align="center">*Mixed key attacks (§4)*</div>
2020-07-31 23:30:42 -04:00
| `ping I,F,BE,AE` | Inject two fragments encrypted under a different key.
| `ping I,F,BE,AE --pn-per-qos` | Same as above, but also works if the target only accepts consecutive PNs.
2020-07-26 04:01:01 -04:00
| <div align="center">*Cache attacks (§5)*</div>
2020-08-08 00:35:28 -04:00
| `ping I,E,R,AE` | Inject a fragment, try triggering a _reassociation_, and inject second fragment.
2020-07-31 23:30:42 -04:00
| `ping I,E,R,E` | Same as above, but with a longer delay before sending the second fragment.
2020-08-08 00:35:28 -04:00
| `ping I,E,R,AE --full-reconnect` | Inject a fragment, _deauthenticate_ and reconnect, then inject second fragment.
2020-07-31 23:30:42 -04:00
| `ping I,E,R,E --full-reconnect` | Same as above, but with a longer delay before sending the second fragment.
| <div align="center">*Non-consecutive PNs attack (§6.2)*</div>
2020-06-19 23:49:39 -04:00
| `ping I,E,E --inc-pn 2` | Send a fragmented ping with non-consecutive packet numbers.
2020-07-26 04:01:01 -04:00
| <div align="center">*Mixed plain/encrypt attack (§6.3)*</div>
2020-06-19 23:49:39 -04:00
| `ping I,E,P` | Send a fragmented ping: first fragment encrypted, second fragment in plaintext.
| `ping I,P,E` | Send a fragmented ping: first fragment in plaintext, send fragment encrypted.
| `ping I,P` | Send a plaintext ping.
| `ping I,P,P` | Send a fragmented ping: both fragments are sent in plaintext.
| `linux-plain` | Mixed plaintext/encrypted fragmentation attack specific to Linux.
2020-07-26 04:01:01 -04:00
| <div align="center">*Broadcast fragment attack (§6.7)*</div>
2020-08-08 00:35:28 -04:00
| `ping I,D,P --bcast-ra` | Send a ping request in plaintext broadcasted 2nd fragment after connecting.
| `ping D,BP --bcast-ra` | Same as above, but the ping is inject during the handshake (check with tcpdump).
2020-07-26 04:01:01 -04:00
| <div align="center">*A-MSDUs EAPOL attack (§6.8)*</div>
2020-07-31 23:30:42 -04:00
| `eapol-amsdu BP` | Send A-MSDU disguised as EAPOL during handshake (check result with tcpdump).
| `eapol-amsdu I,P` | Same as above, except the frame is injected after obtaining an IP.
| `eapol-amsdu-bad BP` | Send malformed A-MSDU disguised as EAPOL during handshake (use tcpdump).
| `eapol-amsdu-bad I,P` | Same as above, except the frame is injected after obtaining an IP.
2020-06-19 23:49:39 -04:00
2020-07-31 23:30:42 -04:00
## 7.1. Sanity and implementation checks
- `ping I,E,E`: This test should only fail if the tested device doesn't support fragmentation. In case
you encounter this, it is recommended to also run this test against a device that _does_ support
fragmentation to assure the test tool is properly injecting fragmented frames.
2020-06-19 23:49:39 -04:00
- `ping I,E,E --delay 5`: This test is used to check the maximum accepted delay between two fragments.
2020-07-31 23:30:42 -04:00
If this test doesn't work, try it again with `--delay 1.5` or lower. For instance, Linux removes fragments
2020-08-08 00:35:28 -04:00
from memory after 2 seconds, meaning a delay of 1.8 will work while 2.2 will result in no reply. In case the maximum
2020-07-31 23:30:42 -04:00
accepted delay is low, all fragments sent in other tests must be sent within this maximum accepted delay.
2020-08-08 00:35:28 -04:00
Otherwise, tests will trivially fail and you might conclude a device isn't vulnerable to an attack even
2020-07-31 23:30:42 -04:00
though it actually is.
2020-06-19 23:49:39 -04:00
- `ping-frag-sep`: This tests sends a fragmented Wi-Fi frame that is seperated by an unrelated frame.
2020-08-05 04:15:27 -04:00
That is, it sends the first fragment, then a (normal) unrelated Wi-Fi frame, and finally the second fragment.
In case this test fails, the mixed key attack and cache attack will likely also fail (since they require
sending other frames between two fragments). The only purpose of this test is to better understand the
2020-08-08 00:35:28 -04:00
behaviour of a device and to learn why other tests might be failing.
2020-08-21 16:58:13 -04:00
## 7.2. A-MSDU attack tests (§3 -- CVE-2020-24588)
2020-07-31 23:30:42 -04:00
2020-08-05 04:15:27 -04:00
The test `ping I,E --amsdu` checks if an implementation supports A-MSDUs, in which case it is vulnerable to
attacks. To prevent attacks, the network must mandate the usage of SSP A-MSDUs (and drop all non-SSP A-MSDUs).
It's currently unclear how to prevent this attack in a backward-compatible manner. See Section 3 of the paper
for details.
2020-07-31 23:30:42 -04:00
2020-08-21 16:58:13 -04:00
## 7.3. Mixed key attack tests (§4 -- CVE-2020-24587)
2020-08-08 00:35:28 -04:00
- When running the mixed key test against an AP, the AP must be configured to regularly (e.g. every minute)
renew the session key (PTK) by executing a new 4-way handshake. The tool will display
2020-07-31 23:30:42 -04:00
`Client cannot force rekey. Waiting on AP to start PTK rekey` when waiting for this PTK rekey handshake.
2020-08-08 00:35:28 -04:00
Against a low number of APs, the test tool can also request to renew the PTK by adding the `--rekey-req`
parameter, meaning there is no need to configure the AP to periodically renew the key.
2020-08-05 04:15:27 -04:00
- Some APs cannot be configured to regularly renew the session key (PTK). Against these APs you can instead
2020-08-08 00:35:28 -04:00
try to run a cache attack test. In case the AP is vulnerable to cache attacks, then it is also vulnerable
to mixed key attacks. If the AP isn't vulnerable to cache attacks, then we cannot say anything about its
2020-08-05 04:15:27 -04:00
susceptibility to mixed key attacks, and in that case I recommend performing a code audit instead.
2020-08-08 00:35:28 -04:00
- `ping I,F,BE,AE --pn-per-qos`: The extra `--pn-per-qos` parameter assures that both injected fragments have
consecutive packet numbers, which is required for the mixed key attack to succeed against certain devices
(e.g. against Linux).
2020-08-05 04:15:27 -04:00
- Several devices implement the 4-way handshake differently and this will impact whether these tests will
2020-08-08 00:35:28 -04:00
succeed or not. In case the tests fail, it is recommended to also perform the mixed key attack
tests listed in [Extended Vulnerability Tests](#id-extended-tests).
2020-06-19 23:49:39 -04:00
2020-08-21 16:58:13 -04:00
## 7.4. Cache attack tests (§5 -- CVE-2020-24586)
2020-06-28 04:55:11 -04:00
2020-07-31 23:30:42 -04:00
- When testing an AP, the tool sends a first fragment, then tries to _reassociate_ with the AP, and finally
2020-08-08 00:35:28 -04:00
sends the second fragment. However, not all APs properly support the reassociation process. In that case,
add the `--full-reconnect` option as shown in the table, which makes the test tool to _deauthenticate_
after sending the first fragment.
2020-06-19 23:49:39 -04:00
2020-07-31 23:30:42 -04:00
- When testing a client, the tools sends a first fragment, _disassociates_ the client, and once the client
has reconnected will send the second fragment. Ideally the client will immediately reconnect after sending
2020-08-08 00:35:28 -04:00
the disassociation frame. This may require disabling all other networks in the client being tested. I also
2020-08-05 04:15:27 -04:00
found that some clients don't seem to properly handle the disassocation, and in that case you can add the
2020-07-31 23:30:42 -04:00
`--full-reconnect` option as shown in the table to send a deauthentication frame instead.
2020-08-11 03:39:02 -04:00
- I have found that it's best to execute each cache attack test several times. Sometimes a cache attack test
might fail although the implementation _is_ vulnerable. This can be due to background noise, other devices
sending frames to the tested device, etc.
2020-08-08 00:35:28 -04:00
- `ping I,E,R,AE [--full-reconnect]`: Here the second fragment is sent immediately after reconnecting with the
AP, which is important in case the device under test clears fragments from memory after a short time.
- `ping I,E,R,E [--full-reconnect]`: Here the second fragment is sent 1 second after reconnecting with the AP,
which can be useful in case there is a small delay between completion of the handshake and installing the
negotiated key.
2020-08-05 04:15:27 -04:00
## 7.5. Mixed plain/encrypt attack (§6.3)
- `ping I,E,P` and `linux-plain`: if this test succeeds the resulting attacks are described in Section 6.3
2020-08-08 00:35:28 -04:00
of the paper. Summarized, in combintation with the A-MSDU or cache vulnerability, it can be exploited to
2020-08-05 04:15:27 -04:00
inject packets. When not combined with any other vulnerabilities the impact is implementation-specific.
- `ping I,P,E`: if this test succeeds it is trivial to inject plaintext frames towards the device _if_
fragmentation is being used by the network.
- `ping I,P,P` and `ping I,P`: if this test succeeds it is trivial to inject plaintext frames towards the
device independent of the network configuration.
2020-06-19 23:49:39 -04:00
2020-08-05 04:15:27 -04:00
## 7.6. Broadcast fragment attack tests (§6.7)
2020-08-08 00:35:28 -04:00
- Because all these tests send broadcast frames, which are not automatically retransmitted, it is recommended
to **execute these tests several times**. This is because background noise may prevent the tested devices
from receiving the injected broadcast frame. So far only clients were affected by these attacks. Additionally,
most clients are only vulnerble while connecting to the network (i.e. during the execution of the 4-way handshake).
2020-06-19 23:49:39 -04:00
2020-08-08 00:35:28 -04:00
- `ping I,D,P --bcast-ra`: Variant of the attack whose result can be checked automatically by the test tool.
- `ping D,BP --bcast-ra`: To confirm the result of this test you have to run wireshark or tcpdump on
2020-08-05 04:15:27 -04:00
the victim, and monitor whether the injected ping request is received by the victim. In tcpdump you can
use the filter `icmp` and in wireshark you can also use the filter `frame contains "test_ping_icmp"`
to more easily detect this ping request.
## 7.7. A-MSDUs EAPOL attack tests (§6.8)
2020-07-31 23:30:42 -04:00
2020-08-08 00:35:28 -04:00
- `eapol-amsdu[-bad] BP`: These two tests inject the malicious frame while the client is still connecting
to the network (i.e. during the execution of the 4-way handshake). This is important because several
clients and APs are only vulnerable before completing the 4-way handshake. To confirm the result of this
test you have to run wireshark or tcpdump on the victim, and monitor whether the injected ping request
is received by the victim. In tcpdump you can use the filter `icmp` and in wireshark you can also use the
filter `frame contains "test_ping_icmp"` to more easily detect this ping request.
2020-07-31 23:30:42 -04:00
2020-08-08 00:35:28 -04:00
- `eapol-amsdu-bad BP` and `eapol-amsdu-bad I,P`: Several implementations incorrectly process A-MSDU frames
that start with a valid EAPOL header. To test these implementations, you have to use the `eapol-amsdu-bad`
test variant. Note that if this tests succeeds, the impact of the attack is identical to implementations
that correctly parse such frames (for details see Section 3.6 and 6.8 in the paper).
2020-07-31 23:30:42 -04:00
2020-08-05 04:15:27 -04:00
## 7.8. Troubleshooting checklist
2020-07-31 23:30:42 -04:00
In case the test tool doesn't appear to be working, check the following:
1. Check that no other process is using the network card (e.g. kill your network manager).
2. Assure the device you are testing doesn't enter a sleep state (causing it to miss injected frames).
I recommend running the test tool in [mixed mode](#id-mixed-mode) since this better handles clients
that may go into a sleep state.
2020-06-27 09:27:46 -04:00
3. Run the [injection tests](#id-injection-tests) to make sure injection is working properly.
2020-06-28 04:55:11 -04:00
2020-07-31 23:30:42 -04:00
4. Check that you machine isn't generating background traffic that interferes with the tests. In
particular, disable networking in your OS, manually kill your DHCP client/server, etc. See
also [Before every usage](#id-before-every-usage).
2020-06-19 23:49:39 -04:00
2020-07-31 23:30:42 -04:00
5. Confirm that you are connecting to the correct network. Double-check `client.conf`.
2020-06-28 04:55:11 -04:00
2020-07-31 23:30:42 -04:00
6. Make sure the AP being tested is using (AES-)CCMP as the encryption algorithm. Other encryption
algorithms such as TKIP or GCMP are not supported.
2020-06-19 23:49:39 -04:00
7. If you updated the code using git, execute `./build.sh` again (see [Prerequisites](#id-prerequisites)).
2020-08-08 00:35:28 -04:00
In case the patched drivers got updated, remember to recompile them as well.
2020-06-19 23:49:39 -04:00
2020-08-08 00:35:28 -04:00
8. If you are using a virtual machine, try to run the test tool from a live CD or USB instead.
2020-07-22 07:50:06 -04:00
2020-07-31 23:30:42 -04:00
9. Confirm using a second monitor interface that no other frames are sent in between fragments.
For instance, I found that my Intel device sometimes sends Block Ack Response Action frames
2020-07-22 07:50:06 -04:00
between fragments, and this interfered with the defragmentation process of the device under test.
2020-07-31 23:30:42 -04:00
10. Check that you are using modified drivers if needed for your wireless network card.
If you updated your kernel, you will need to recompile and reinstall the drivers.
11. Check that you are using modified firmware if needed for your wireless network card.
2020-08-08 00:35:28 -04:00
12. Check that the tested device doesn't block ICMP ping requests. In case it doesn't reply to pings, you
can run tcpdump or wireshark on the device, or you can try any of the other methods listed in [No ICMP Support](#id-no-icmp).
2020-08-06 23:45:15 -04:00
2020-08-08 00:35:28 -04:00
13. Run the tool with the extra parameter `--debug 2` to get extra debug output from wpa_supplicant or
hostapd and from the test tool itself.
<a id="id-extended-tests"></a>
2020-07-31 23:30:42 -04:00
# 8. Extended Vulnerability Tests
2020-08-05 04:15:27 -04:00
Due to implementation variations it can be difficult to confirm/exploit certain vulnerabilities, in particular
2020-08-08 00:35:28 -04:00
the mixed key and cache attack can be non-trivial to confirm in practice. Therefore, I recommend to only consider
a device secure if there are explicit checks in the code to prevent these attacks. Additionally, if time permits,
I also recommend the following more advanced tests. These have a lower chance of uncovering new vulnerabilities,
but might reveal attack variants or particular device behaviour that the normal tests can't detect.
2020-06-19 23:49:39 -04:00
If the normal tests in [Testing for Vulnerabilities](#id-testing-for-flaws) have already confirmed the
2020-08-05 04:15:27 -04:00
presence of a certain vulnerability class, there is no need to test the other attack variants of that vulnerability.
2020-06-19 23:49:39 -04:00
2020-07-31 23:30:42 -04:00
| Command | Short description
| -------------------------------------- | ---------------------------------
2020-07-26 04:01:01 -04:00
| <div align="center">*A-MSDU attacks (§3)*</div>
2020-08-05 04:15:27 -04:00
| `ping I,E --amsdu-fake` | If this test succeeds, the A-MSDU flag is ignored (§3.5).
| `ping I,E --amsdu-fake --amsdu-ssp` | Check if the A-MSDU flag is authenticated but then ignored (§3.5).
| `amsdu-inject` | Send A-MSDU frame whose start is also a valid rfc1042 header (§3.2).
| `amsdu-inject-bad` | Same as above, but against targets that incorrectly parse the frame.
2020-07-26 04:01:01 -04:00
| <div align="center">*Mixed key attacks (§4)*</div>
2020-07-31 23:30:42 -04:00
| `ping I,F,BE,E` | In case the new key is installed relatively late.
2020-08-08 00:35:28 -04:00
| `ping I,E,F,AE` | Variant if no data frames are accepted during the rekey handshake.
2020-08-05 04:15:27 -04:00
| `ping I,E,F,AE --rekey-plain` | If the device performs the rekey handshake in plaintext.
2020-08-08 00:35:28 -04:00
| `ping I,E,F,AE --rekey-plain --rekey-req` | Same as above, and actively request a rekey as client.
| `ping I,E,F,AE --rekey-early-install` | Install the new key before receiving/sending message 4.
| `ping I,F,BE,AE --freebsd` | Mixed key attack against FreeBSD or similar implementations.
2020-07-31 23:30:42 -04:00
| <div align="center">*Cache attacks (§5)*</div>
2020-08-05 04:15:27 -04:00
| `ping I,E,R,AE --freebsd [--full-reconnect]` | Cache attack specific to FreeBSD implementations.
| `ping I,E,R,AP --freebsd [--full-reconnect]` | Cache attack specific to FreeBSD implementations.
2020-08-11 03:39:02 -04:00
| `ping I,E,R,AP [--full-reconnect]` | Cache attack test where 2nd fragment is sent in plaintext.
2020-07-26 04:01:01 -04:00
| <div align="center">*Mixed plain/encrypt attack (§6.3)*</div>
2020-08-05 04:15:27 -04:00
| `ping I,E,E --amsdu` | Send a normal ping as a fragmented A-MSDU frame.
2020-07-31 23:30:42 -04:00
| `ping I,E,P,E` | Ping with first frag. encrypted, second plaintext, third encrypted.
| `linux-plain 3` | Same as linux-plain but decoy fragment is sent using QoS priority 3.
| <div align="center">*AP forwards EAPOL attack (§6.4)*</div>
| `eapol-inject 00:11:22:33:44:55` | Test if AP forwards EAPOL frames before authenticated (use tcpdump).
| `eapol-inject-large 00:11:22:33:44:55` | Make AP send fragmented frames by EAPOL injection (use tcpdump).
2020-07-26 04:01:01 -04:00
| <div align="center">*No fragmentation support attack (§6.6)*</div>
2020-07-31 23:30:42 -04:00
| `ping I,E,D` | Send ping inside an encrypted first fragment (no 2nd fragment).
| `ping I,D,E` | Send ping inside an encrypted second fragment (no 1st fragment).
2020-07-26 04:01:01 -04:00
| <div align="center">*Broadcast fragment attack (§6.7)*</div>
2020-08-08 00:35:28 -04:00
| `ping I,P --bcast-ra` | Ping in a plaintext broadcast frame after 4-way HS.
| `ping BP --bcast-ra` | Ping in plaintext broadcast frame during 4-way HS (use tcpdump).
| `eapfrag BP,BP` | Experimental broadcast fragment attack (use tcpdump).
2020-07-26 04:01:01 -04:00
| <div align="center">*A-MSDUs EAPOL attack (§6.8)*</div>
2020-08-08 00:35:28 -04:00
| `eapol-amsdu[-bad] BP --bcast-dst` | Same as `eapol-amsdu BP` but easier to verify against APs (use tcpdump).
2020-07-31 23:30:42 -04:00
2020-08-21 16:58:13 -04:00
## 8.1. A-MSDU attack tests (§3 -- CVE-2020-24588)
2020-07-31 23:30:42 -04:00
2020-08-05 04:15:27 -04:00
It is only useful to execute the first two tests if the main test `ping I,E --amsdu` fails and you want to better
understand how the tested device handles A-MSDU frames:
- `ping I,E --amsdu-fake`: If this tests succeeds, the receiver treats all frames as normal frames (meaning it doesn't
support A-MSDU frames). This behaviour is not ideal, although it is unlikely that an attacker can abuse this in
practice (see Section 3.5 in the paper).
2020-07-31 23:30:42 -04:00
2020-08-05 04:15:27 -04:00
- `ping I,E --amsdu-fake --amsdu-ssp`: If this tests succeeds, the receiver authenticates the QoS A-MSDU flag of every
received frame (i.e. it will not mask it to zero on reception) but then treats all received frames as normal frames
(meaning it does not support the reception of real A-MSDU frames). This behaviour is not ideal, although it is unlikely
that an attacker can abuse this in practice (see Section 3.5 in the paper).
The last two tests are used to simulate our A-MSDU injection attack:
- `amsdu-inject`: This test simulates the A-MSDU injection attack described in Section 3.2 of the paper. In particular,
it sends an A-MSDU frame whose starts is also a valid rfc1042 header (since this is also what happens in our reference
attack).
- `amsdu-inject-bad`: Some devices incorrectly parse A-MSDU frames that start with a valid rfc1042 header causing the
above test to fail. In that case try `amsdu-inject-bad` instead (see Section 3.6 in the paper). Note that if this tests
succeeds, the impact of the attack is effectively identical to implementations that correctly parse such frames.
2020-07-31 23:30:42 -04:00
2020-08-21 16:58:13 -04:00
## 8.2. Mixed key attack tests (§4 -- CVE-2020-24587)
2020-07-31 23:30:42 -04:00
2020-08-08 00:35:28 -04:00
Most devices I tested are vulnerable to mixed key attacks. In case the normal mixed key attack tests indicate
2020-07-31 23:30:42 -04:00
that a device is not vulnerable, but the test `ping-frag-sep` does succeed, it is highly recommended to try
2020-08-05 04:15:27 -04:00
these alternative mixed key attack tests. Some remarks:
2020-08-08 00:35:28 -04:00
- `--rekey-req`: When testing an AP, you can add the `--rekey-req` parameter to any of the mixed key attack tests to
actively request a rekey handshake. A low number of APs will then perform the rekey handshake. Most APs will ignore
this request though, and have to be explicitly configured to regularly renew the session key (PTK).
2020-08-05 04:15:27 -04:00
2020-08-08 00:35:28 -04:00
- `ping I,E,F,AE` and `ping I,F,BE,E`: These are fairly straightforward mixed key attack tests where both fragments are
injected at different times.
2020-08-05 04:15:27 -04:00
2020-08-08 00:35:28 -04:00
- `ping I,E,F,AE --rekey-plain`: Some drivers (e.g. MediaTek) will perform the rekey handshake in plaintext. To test
devices that use such a driver you must add the `--rekey-plain` parameter.
2020-08-05 04:15:27 -04:00
2020-08-08 00:35:28 -04:00
- `ping I,E,F,AE --rekey-plain --rekey-req`: This particular combination is useful to test routers that use a MediaTek
driver. These routers perform the rekey handshake in plaintext, and the client can actively request a rekey handshake.
- `ping I,E,F,AE --rekey-early-install`: A low number of clients and APs (incorrectly) install the key too early during
a pairwise session rekey. To reliably test these devices, add the `--rekey-early-install` parameter.
Finally, in case the test `ping-frag-sep` doesn't succeed, you should try the following mixed key attack test:
- `ping I,F,BE,AE --freebsd`: This essentially performs the rekey handshake against a FreeBSD implementation or
2020-08-05 04:15:27 -04:00
driver without affecting the defragmentation process of data frames. See Appendix F in the paper for details.
2020-07-31 23:30:42 -04:00
2020-08-21 16:58:13 -04:00
## 8.3. Cache attack tests (§5 -- CVE-2020-24586)
2020-07-31 23:30:42 -04:00
2020-08-08 00:35:28 -04:00
- `ping I,E,R,AE --freebsd --full-reconnect`: This test can be used to check if a FreeBSD AP, or an implementation
2020-08-05 04:15:27 -04:00
based on FreeBSD drivers, is vulnerable to a cache attack. See Appendix F in the paper for details on how this
test works. You should also try this test without the `--full-reconnect` parameter.
2020-07-31 23:30:42 -04:00
2020-08-08 00:35:28 -04:00
- `ping I,E,R,AP --freebsd --full-reconnect`: This test is a variant against FreeBSD APs, or an implementation based
2020-08-05 04:15:27 -04:00
on FreeBSD drivers, where the second fragment is sent in plaintext after reconnecting with the AP. Against some
dongles on FreeBSD this test was more reliable and still proves that old fragments remain in the AP's memory after
reconnecting. You should also try this test without the `--full-reconnect` parameter.
2020-07-31 23:30:42 -04:00
2020-08-11 03:39:02 -04:00
- `ping I,E,R,AP [--full-reconnect]`: In this test the second fragment is sent in plaintext. This can be useful if
the device being tested doesn't immediately install the key after the 4-way handshake. If this tests succeeds, it
shows that the device keeps fragments in memory after (re)connecting to a network, meaning its vulnerable to cache
attacks.
2020-08-05 04:15:27 -04:00
## 8.4. Mixed plain/encrypt attack (§6.3)
2020-07-31 23:30:42 -04:00
2020-08-05 04:15:27 -04:00
- `ping I,E,E --amsdu`: This test sends a fragmented A-MSDU frame, which not all devices can properly receive.
This test is useful to determine the practical exploitability of the "Mixed plain/encrypt attack".
Summarized, if this tests succeeds, it is easier to attack the device if the second fragment can be sent
in plaintext (test `ping I,E,P`). See Section 6.3 of the paper for details.
2020-07-31 23:30:42 -04:00
2020-08-08 00:35:28 -04:00
- `ping I,E,P,E` and `linux-plain 3`: If all the other mixed plain/encrypt attack tests in didn't succeed, you
can try these two extra tests as well. I think it's quite unlikely this will uncover a new vulnerability.
2020-08-05 04:15:27 -04:00
## 8.5. AP forwards EAPOL attack tests (§6.4)
- `eapol-inject 00:11:22:33:44:55`: This test is only meaningfull against APs. To perform this test you have to connect
to the network using a second device and replace the MAC address `00:11:22:33:44:55` with the MAC address of this second
2020-08-08 00:35:28 -04:00
device. _Before_ being authenticated, the test tool will send an EAPOL frame to the AP with as final destination this second
device. If the AP forwards the EAPOL frame to the second device, the AP is considered vulnerable. To confirm if the AP forwards
the EAPOL frame you must run tcpdump or wireshark on the second device. You can use the wireshark filter `frame contains "forwarded_data"`
2020-08-05 04:15:27 -04:00
when monitoring decrypted traffic on the wireless interface of the second device (or the tcpdump filter `ether proto 0x888e`
2020-08-08 00:35:28 -04:00
to monitor all EAPOL frames). See Section 6.4 of the paper for the details and impact of this.
2020-08-05 04:15:27 -04:00
2020-08-08 00:35:28 -04:00
- `eapol-inject-lage 00:11:22:33:44:55`: In case the above `eapol-inject` test succeeds, you can also try `eapol-inject-large` to see
2020-08-05 04:15:27 -04:00
if this vulnerability can be abused to force the transmission of encrypted fragments. You again have to use tcpdump or wireshark
2020-08-08 00:35:28 -04:00
to check this. Use the wireshark or tshark filter `(wlan.fc.frag == 1) || (wlan.frag > 0)` to detect fragmented frames. I found it
very rare for this attack to work.
2020-08-05 04:15:27 -04:00
## 8.6. Abusing no fragmentation support (§6.6)
2020-06-19 23:49:39 -04:00
2020-08-08 00:35:28 -04:00
- `ping I,D,E`: If this test succeeds, the device doesn't support (de)fragmentation, but is still vulnerable to attacks. The
problem is that the receiver treats the _last_ fragment as a full frame. See Section 6.6 in the paper for details and how this
can be exploited.
- `ping I,E,D`: If this test succeeds, then the devices treats the _first_ fragment as a full frame. Although this behaviour is
not ideal, it's currently unknown whether this, on its own, can be exploited in practice.
2020-06-19 23:49:39 -04:00
2020-08-05 04:15:27 -04:00
## 8.7. Broadcast fragment attack tests (§6.7)
2020-08-08 00:35:28 -04:00
- Because all these tests send broadcast frames, which are not automatically retransmitted, it is recommended
to **execute these tests several times**. This is because background noise may prevent the tested devices
from receiving the injected broadcast frame. So far only clients were affected by these attacks. Additionally,
most clients are only vulnerble while connecting to the network (i.e. during the execution of the 4-way handshake).
2020-06-19 23:49:39 -04:00
2020-07-31 23:30:42 -04:00
- `ping I,P --bcast-ra`: this sends a unicast ICMP ping request inside a plaintext broadcast Wi-Fi frame. This test
only makes sense against a client.
- `ping BP --bcast-ra`: similar to the above test `ping I,P --bcast-ra`, but the ping is sent before the client has
2020-08-08 00:35:28 -04:00
authenticated with the network (i.e. during the execution of the 4-way handshake). You must run tcpdump or wireshark
to check if the client accepts the frame. In tcpdump you can use the filter `icmp` and in wireshark you can also use
the filter `frame contains "test_ping_icmp"` to more easily detect this ping request.
2020-07-31 23:30:42 -04:00
- `eapfrag BP,BP`: this is a specialization of the above two tests that is performed before the client has authenticated.
It is a _very experimental_ attack based on the analysis of leaked code. It first sends a plaintext fragment that starts
with an EAPOL header, which is accepted because the 4-way handshake is still being executed. Then it sends a second
broadcast fragment with the same sequence number. Based on the analysis of leaked code some devices may now accept
this fragment (because the previous fragment was allowed), but the subsequent code will process it as a normal frame
(because the fragment is broadcasted). You must use tcpdump or wireshark on the victim to determine whether the frame
2020-08-05 04:15:27 -04:00
is properly received, for example using the filter `icmp` or `frame contains "test_ping_icmp"`. An alternative variant
is `eapfrag BP,AE` in case the normal variant doesn't work.
2020-07-31 23:30:42 -04:00
2020-08-05 04:15:27 -04:00
## 8.8. A-MSDU EAPOL attack tests (§6.8)
2020-07-31 23:30:42 -04:00
2020-08-05 04:15:27 -04:00
This test can be used in case you want to execute the `eapol-amsdu[-bad] BP` tests but cannot run tcpdump or wireshark on
the AP. This means this test is only meaningfull against APs. In particular, the command `eapol-amsdu[-bad] BP --bcast-dst`
will cause a vulnerable AP to broadcast the ping request to all connected clients. In other words, to check if an AP is
vulnerable, execute this command, and listen for broadcast Wi-Fi frames on a second device that is connected to the AP by
using the filter `icmp` or `frame contains "test_ping_icmp"`.
2020-07-31 23:30:42 -04:00
# 9. Advanced Usage
<a id="id-injection-tests"></a>
## 9.1. Network card injection tests
2020-07-31 23:30:42 -04:00
2020-08-08 00:35:28 -04:00
### Injection mode
2020-06-19 23:49:39 -04:00
The script `test-injection.py` can be used to test whether frames are properly injected when
using _injection mode_:
./test-injection.py wlan0 wlan1
2020-05-23 20:39:15 -04:00
2020-08-08 00:35:28 -04:00
Here we test if the network card `wlan0` properly injects frames and we use network card `wlan1`
2020-07-26 04:01:01 -04:00
to monitor whether frames are properly injected. Note that both interfaces need to support
monitor mode for this test script to work.
2020-06-28 04:55:11 -04:00
2020-07-26 04:01:01 -04:00
In case you do not have a second network card, you can execute a partial injection test using:
2020-05-23 20:39:15 -04:00
2020-06-19 23:49:39 -04:00
./test-injection.py wlan0
2020-05-23 20:39:15 -04:00
2020-06-19 23:49:39 -04:00
Unfortunately, the above test can only test if the kernel overwrites fields of injected frames,
it cannot test whether the firmware or wireless chip itself overwrites fields.
2020-07-31 23:30:42 -04:00
### Mixed mode
2020-06-19 23:49:39 -04:00
To test whether a network card properly injects frames in _mixed mode_, you can execute the
following two commands:
./fragattack wlan0 ping --inject-test wlan1
./fragattack wlan0 ping --inject-test wlan1 --ap
2020-07-26 04:01:01 -04:00
Here we test whether `wlan0` properly injects frames by monitoring the injected frames using the
2020-06-19 23:49:39 -04:00
second network card `wlan1`. The first command tests if frames are properly injected when using
2020-07-26 04:01:01 -04:00
mixed mode while acting as a client, and the second command when using mixed mode while acting
as an AP. In order to start the test, the client must be able to connect to a network, and the
AP waits until a client is connecting before starting the injection tests.
If you also want to test the retransmission behaviour of `wlan0` in mixed mode you can execute:
./fragattack wlan0 ping --inject-test-postauth wlan1
./fragattack wlan0 ping --inject-test-postauth wlan1 --ap
In case you do not have a second network card, you can execute a partial mixed mode injection test
using:
2020-06-19 23:49:39 -04:00
./fragattack wlan0 ping --inject-test[-postauth] self
./fragattack wlan0 ping --inject-test[-postauth] self --ap
2020-06-19 23:49:39 -04:00
Unfortunately, the above tests can only test if the kernel overwrites fields of injected frames,
it cannot test whether the firmware or wireless chip itself overwrites fields.
2020-07-31 23:30:42 -04:00
### Interpreting test results
2020-07-22 07:50:06 -04:00
2020-08-06 23:45:15 -04:00
The test script will give detailed output on which tests succeeded or failed, and will conclude by outputting
2020-08-08 00:35:28 -04:00
either `==> The most important tests have been passed successfully` or a message indicating that either important
2020-08-06 23:45:15 -04:00
tests failed or that it couldn't capture certain injected frames.
Note that the injection scripts only test the most important behaviour. The best way to confirm that injection
is properly working is to **perform the vulnerability tests against devices that are known to be vulnerable**,
and confirming that the tool correctly identifies the device(s) as vulnerable.
2020-08-06 23:45:15 -04:00
When certain injected frames could not be captured, this may either be because of background noise, or because the
network card being tested is unable to properly inject certain frames (e.g. the firmware of the Intel AX200 crashes
when injecting fragmented frames). It could also be that frames are in fact properly injected, but that the network
card used to monitor whether frames are injected properly (`wlan1` in the above examples) is not reliable and is,
for example, missing most frames due to background noise. Try running the tests on a different channel as well.
2020-07-22 07:50:06 -04:00
2020-08-06 23:45:15 -04:00
When the injection tests are working, but you have problems reliably performing the attack tests, this may be
because the devices you are testing are entering sleep mode. See [Handling sleep mode](#id-handling-sleep) for
2020-08-06 23:45:15 -04:00
additional notes on this problem.
2020-05-23 20:39:15 -04:00
### Manual checks notes
When using wireshark to inspect the injection behaviour of a device it is recommended to use a second
2020-08-08 00:35:28 -04:00
device in monitor mode to see how frames are injected.
In case you open the interface used to inject frames then you should see injected frames twice: (1) first
you see the frame as injected by whatever tool is sending it, and then (2) a second time by how the frame
was injected by the driver. These two frames may slightly differ if the kernel overwrote certain fields.
If you only see an injected frame once it may have been dropped by the kernel.
<a id="id-static-ip-config"></a>
2020-07-31 23:30:42 -04:00
## 9.2. Static IP Configuration
2020-05-23 20:39:15 -04:00
In case the device you are testing doesn't support DHCP, you can manually specify the IP addresses
that the test tool should use. For example:
2020-05-23 20:39:15 -04:00
2020-07-31 23:30:42 -04:00
./fragattack.py wlan0 [--ap] ping --inject wlan1 --ip 192.168.100.10 --peerip 192.168.100.1
2020-05-23 20:39:15 -04:00
2020-07-31 23:30:42 -04:00
Here the test tool will use IP address 192.168.100.10, and it will inject a ping request to the peer
IP address 192.168.100.1.
2020-05-23 20:39:15 -04:00
2020-07-31 23:30:42 -04:00
When a test sends IP packets before obtaining IP addresses using DHCP, it will use the default IP
address 127.0.0.1. To use different (default) IP addresses, you can also use the `--ip` and `-peerip`
parameters.
2020-07-26 04:01:01 -04:00
<a id="id-no-icmp"></a>
2020-08-05 04:15:27 -04:00
## 9.3. No ICMP Support
2020-08-06 23:45:15 -04:00
Most attack tests work by sending ICMP ping requests in special manners, and seeing wether we receive
an ICMP ping response. In case the device being tested does not support ICMP pings you can instead
using ARP requests by adding the `--arp` parameter to all tests. **TODO: Explain in detial for which**
**tests this parameter has an effect.**.
**TODO: When acting as a client we can also inject DHCP requests intead.**
2020-08-05 04:15:27 -04:00
<a id="id-alternative-cards"><a/>
2020-08-05 04:15:27 -04:00
## 9.4. Alternative network cards
In case you cannot get access to one of the recommended wireless network cards, a second option
is to get a network card that uses the same drivers on Linux. In particular, you can try:
2020-07-26 04:01:01 -04:00
1. Network cards that use [ath9k_htc](https://wikidevi.wi-cat.ru/Ath9k_htc)
2. Network cards that use [carl9170](https://wikidevi.wi-cat.ru/carl9170)
2020-07-26 04:01:01 -04:00
3. Network cards that use [iwlmvm](https://wireless.wiki.kernel.org/en/users/drivers/iwlwifi).
2020-08-08 00:35:28 -04:00
I recommend cards based on `ath9k_htc`. Not all cards that use `iwlmvm` will be compatible. When
using an alternative network card, I strongly recommend to first run the [injection tests](#id-injection-tests)
to confirm that the network card is compatible.
2020-05-23 20:39:15 -04:00
2020-08-05 04:15:27 -04:00
## 9.5. 5 GHz support
In order to use the test tool on 5 GHz channels the network card being used must allow the injection
of frames in the 5 GHz channel. Unfortunately, this is not always possible due to regulatory
constraints. To see on which channels you can inject frames you can execute `iw list` and look under
Frequencies for channels that are _not_ marked as disabled, no IR, or radar detection. Note that these
conditions may depend on your network card, the current configured country, and the AP you are
connected to. For more information see, for example, the [Arch Linux documentation](https://wiki.archlinux.org/index.php/Network_configuration/Wireless#Respecting_the_regulatory_domain).
Although I have not yet encountered a device that behaved differently in the 2.4 GHz band compared
2020-07-22 07:50:06 -04:00
to the 5 GHz band, this may occur in practice if different drivers are used to handle both bands.
If you encounter such a case please let us know. Since I have not yet observed such differences
2020-08-08 00:35:28 -04:00
between the 2.4 and 5 GHz band I believe that it is sufficient to only test one of these bands.
2020-07-22 07:50:06 -04:00
Note that in mixed mode the Linux kernel may not allow the injection of frames even though it is
2020-08-08 00:35:28 -04:00
allowed to send normal frames. This is because in the function `ieee80211_monitor_start_xmit` the kernel refuses
to inject frames when `cfg80211_reg_can_beacon` returns false. As a result, Linux may refuse to
inject frames even though this is actually allowed. Making `cfg80211_reg_can_beacon` return true
under the correct conditions prevents this bug.
<a id="id-handling-sleep"></a>
2020-08-06 23:45:15 -04:00
## 9.6. Handling sleep mode
Devices such as mobile phones or IoT gadgets may put their Wi-Fi radio in sleep mode to reduce energy usage.
When in sleep mode, these devices are unable to receive Wi-Fi frames, which may interfere with our tests. There
are some options to try to mitigate this problem:
1. Try to disable sleep mode on the device being tested. This is the most reliable solution, but unfortunately
not always possible.
2. Run the test tool in mixed mode. Most network cards will then queue injected frames until the device being
tested is awake again.
3. Try a different network card to perform the tests. I found that different network cards will inject frames
2020-08-08 00:35:28 -04:00
at (slightly) different times, and this may be the difference between injected frame properly arriving or
being missed.
2020-08-06 23:45:15 -04:00
4. Perform the tests using ARP instead of ICMP tests, see [No ICMP support](#id-no-icmp) for details. This
2020-08-06 23:45:15 -04:00
can be more reliable because fewer frames have to be properly injected when using ARP injection.
<a id="id-notes-device-support"></a>
2020-08-06 23:45:15 -04:00
## 9.7. Notes on device support
2020-06-27 09:27:46 -04:00
2020-07-31 23:30:42 -04:00
### ath9k_htc
2020-06-27 09:27:46 -04:00
2020-07-26 04:01:01 -04:00
The Technoethical N150 HGA, TP-Link TL-WN722N v1.x, and Alfa AWUS036NHA, all use the `ath9k_htc` driver.
2020-07-26 04:01:01 -04:00
For me these devices worked fairly well in a virtual machine, although like with all devices they are
more reliably when used natively. When using a VM, I recommend to configure the VM to use a USB2.0
controller, since that appeared more stable (at least with VirtualBox).
2020-08-08 00:35:28 -04:00
In recent kernels there was a ([now fixed](https://www.spinics.net/lists/linux-wireless/msg200825.html))
regression with the `ath9k_htc` driver causing it not te work. Simply use an up-to-date kernel or our patched
drivers to avoid this issue.
2020-06-27 09:27:46 -04:00
2020-07-31 23:30:42 -04:00
### AWUS036ACM
2020-06-27 09:27:46 -04:00
2020-07-26 04:01:01 -04:00
If for some reason Linux does not automatically recognize this device, execute `sudo modprobe mt76x2u`
to manually load the driver. I found that, at least on my devices, this dongle was unstable when connected
2020-08-08 00:35:28 -04:00
to a USB3.0 port. Others seems to have reported [similar issues](https://www.spinics.net/lists/linux-wireless/msg200453.html)
2020-07-26 04:01:01 -04:00
with this dongle. When connected to a USB2.0 port I found this dongle to be reliable.
2020-06-27 09:27:46 -04:00
2020-07-26 04:01:01 -04:00
#### AWUS036ACH
2020-06-27 09:27:46 -04:00
2020-07-26 04:01:01 -04:00
This device is generally not supported by default in most Linux distributions and requires manual
installation of drivers. I tested it on Kali Linux after installing the driver using the instructions
on [https://github.com/aircrack-ng/rtl8812au](GitHub). Before plugging in the device, you must
execute `modprobe 88XXau rtw_monitor_retransmit=1`. Once my patches have reached upstream repositories
on Kali Linux you can simply install the driver using `sudo apt install realtek-rtl88xxau-dkms`, but
for now you must manually install the driver from GitHub.
2020-06-28 04:55:11 -04:00
2020-07-31 23:30:42 -04:00
### Intel AX200
2020-06-27 09:27:46 -04:00
2020-08-08 00:35:28 -04:00
I tested the Intel AX200 and found that it is _not_ compatible with the test tool: its firmware crashes
after injecting a frame with the More Fragments flag set. If an Intel developer is reading this, please
update the firmware and make it possible to inject fragmented frames.
2020-06-27 09:27:46 -04:00
<a id="id-hwsim-details"></a>
2020-08-06 23:45:15 -04:00
## 9.8. Hwsim mode details
2020-06-27 09:27:46 -04:00
2020-07-26 04:01:01 -04:00
**Warning**: *this is currently an experimental mode, only use it for research purposes.*
2020-07-26 04:01:01 -04:00
This mode requires only one network card that supports monitor mode, and in contrast to mixed mode, the
network card does not have to support virtual interfaces. The disadvantage is that in this mode frames
are handled a bit slower, and it is not reliable when the network card does not acknowledge frames:
2020-07-26 04:01:01 -04:00
- Due to commit 1672c0e31917 ("mac80211: start auth/assoc timeout on frame status") authentication
as a client will instantly timeout, meaning we cannot use hwsim mode as a client currently.
_TODO: We need to patch the kernel to avoid this timeout._
2020-07-26 04:01:01 -04:00
- If we test a client that uses commit 1672c0e31917 ("mac80211: start auth/assoc timeout on frame status")
we (as an AP) must acknowledge frames sent towards us. Otherwise the client being tested will be
unable to connected.
_TODO: Test which devices acknowledge frames in monitor mode, and test `iw set wlanX monitor active`._
2020-07-26 04:01:01 -04:00
- Certain APs will also require that authentication and association frames are acknowlegded by the client.
2020-08-08 00:35:28 -04:00
This means that we (as a client) must again acknowledge frames sent towards us.
2020-07-26 04:01:01 -04:00
_TODO: Test which devices acknowledge frames in monitor mode, and test `iw set wlanX monitor active`._
2020-04-20 19:26:15 -04:00
2020-07-26 04:01:01 -04:00
- For some strange reason, the Intel/mvm cannot receive data frames from Android/iPhone/iPad
after 4-way HS? This is a very strange bug. _TODO: Investigate this further._
2020-07-26 04:01:01 -04:00
Before using this mode, create two virtual network cards:
2020-07-26 04:01:01 -04:00
./hwsim.sh
2020-07-26 04:01:01 -04:00
This will output the two created virtual "hwsim" interfaces, for example wlan1 and wlan2. When testing
an AP in this mode, you must first search for the channel of the AP, and put the real network card on
this channel:
2020-04-15 13:43:28 -04:00
2020-07-26 04:01:01 -04:00
./scan.sh wlan0
ifconfig wlan0 down
iw wlan0 set type monitor
ifconfig wlan0 up
# Pick the channel that the AP is on (in this example 11)
iw wlan0 set channel 11
2020-04-15 13:43:28 -04:00
2020-07-26 04:01:01 -04:00
Here wlan0 refers to the _real_ network card (not an interface created by `hwsim.sh`). hen testing a
client, do do not first have to configure the channel (it is taken from `hostapd.conf`). You can now
start the test tool as follows:
2020-04-15 13:43:28 -04:00
2020-07-26 04:01:01 -04:00
./fragattack wlan0 --hwsim wlan1,wlan2 [--ap] $COMMAND
2020-05-27 02:45:46 -04:00
2020-07-26 04:01:01 -04:00
After the tool executed, you can directly run it again with a new `$COMMAND`.