mirror of
https://github.com/vanhoefm/fragattacks.git
synced 2025-02-11 22:54:02 -05:00
8 lines
147 B
Bash
8 lines
147 B
Bash
|
#!/bin/sh
|
||
|
|
||
|
sudo killall -q hostapd
|
||
|
sudo killall -q wpa_supplicant
|
||
|
if grep -q mac80211_hwsim /proc/modules ; then
|
||
|
sudo rmmod mac80211_hwsim
|
||
|
fi
|