fragattack: configuration files and scripts

This commit is contained in:
Mathy 2020-02-27 07:06:53 -05:00
parent 79eadfbc39
commit 0df030a726
8 changed files with 36 additions and 6 deletions

View File

@ -84,7 +84,7 @@ ctrl_interface_group=0
##### IEEE 802.11 related configuration #######################################
# SSID to be used in IEEE 802.11 management frames
ssid=test
ssid=testnetwork
# Alternative formats for configuring SSID
# (double quoted string, hexdump, printf-escaped string)
#ssid2="test"
@ -152,7 +152,7 @@ ssid=test
# This special case is currently supported only with drivers with which
# offloaded ACS is used.
# Default: IEEE 802.11b
hw_mode=g
hw_mode=b
# Channel number (IEEE 802.11)
# (default: 0, i.e., not set)
@ -1505,7 +1505,7 @@ own_ip_addr=127.0.0.1
# Note that WPA3 is also configured with bit1 since it uses RSN just like WPA2.
# In other words, for WPA3, wpa=2 is used the configuration (and
# wpa_key_mgmt=SAE for WPA3-Personal instead of wpa_key_mgmt=WPA-PSK).
#wpa=2
wpa=2
# WPA pre-shared keys for WPA-PSK. This can be either entered as a 256-bit
# secret in hex format (64 hex digits), wpa_psk, or as an ASCII passphrase
@ -1514,7 +1514,7 @@ own_ip_addr=127.0.0.1
# wpa_psk (dot11RSNAConfigPSKValue)
# wpa_passphrase (dot11RSNAConfigPSKPassPhrase)
#wpa_psk=0123456789abcdef0123456789abcdef0123456789abcdef0123456789abcdef
#wpa_passphrase=secret passphrase
wpa_passphrase=abcdefgh
# Optionally, WPA PSKs can be read from a separate text file (containing list
# of (PSK,MAC address) pairs. This allows more than one PSK to be configured.
@ -1571,7 +1571,7 @@ own_ip_addr=127.0.0.1
# Pairwise cipher for WPA (v1) (default: TKIP)
#wpa_pairwise=TKIP CCMP
# Pairwise cipher for RSN/WPA2 (default: use wpa_pairwise value)
#rsn_pairwise=CCMP
rsn_pairwise=CCMP
# Optional override for automatic group cipher selection
# This can be used to select a specific group cipher regardless of which
@ -1579,7 +1579,7 @@ own_ip_addr=127.0.0.1
# overriding the group cipher with an unexpected value can result in
# interoperability issues and in general, this parameter is mainly used for
# testing purposes.
#group_cipher=CCMP
group_cipher=CCMP
# Time interval for rekeying GTK (broadcast/multicast encryption keys) in
# seconds. (dot11RSNAConfigGroupRekeyTime)

7
research/client.conf Normal file
View File

@ -0,0 +1,7 @@
ctrl_interface=wpasupp_ctrl
network={
ssid="testnetwork"
psk="abcdefgh"
#key_mgmt=NONE
}

1
research/hostapd.conf Symbolic link
View File

@ -0,0 +1 @@
../hostapd/hostapd.conf

8
research/init.sh Executable file
View File

@ -0,0 +1,8 @@
#!/bin/bash
sudo modprobe mac80211_hwsim radios=4
sleep 2
ip link set wlan3 down
iw wlan3 set type monitor
ip link set wlan3 up
iw wlan3 set channel 1

4
research/start_ap.sh Executable file
View File

@ -0,0 +1,4 @@
#!/bin/bash
set -e
../hostapd/hostapd ../hostapd/hostapd.conf -dd -K

4
research/start_sta.sh Executable file
View File

@ -0,0 +1,4 @@
#!/bin/bash
set -e
../wpa_supplicant/wpa_supplicant -D nl80211 -i wlan1 -c client.conf -dd -K

4
research/start_sta2.sh Executable file
View File

@ -0,0 +1,4 @@
#!/bin/bash
set -e
../wpa_supplicant/wpa_supplicant -D nl80211 -i wlan2 -c client.conf -dd -K

View File

@ -607,3 +607,5 @@ CONFIG_BGSCAN_SIMPLE=y
# Device Provisioning Protocol (DPP)
CONFIG_DPP=y
CONFIG_TESTING_OPTIONS=y