Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/mauricelambert/wifideauth

This package implement a Dos attack on Wifi named Deauth.
https://github.com/mauricelambert/wifideauth

802-11 deauth dos-attack pypi-package python3 scapy wifi wifi-security

Last synced: about 7 hours ago
JSON representation

This package implement a Dos attack on Wifi named Deauth.

Awesome Lists containing this project

README

        

# 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
```bash
pip install WifiDeauth
```

## Examples

### Command lines
```bash
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
```python
from WifiDeauth import WifiDeauth
deauth = WifiDeauth(targets="0A*", bssid="^([a-fA-F0-9]{2}:?){6}$", interface="wlan0", debug=5)
deauth.sniff()
```

### Python executable:
```bash
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):

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

## Links
- [Github Page](https://github.com/mauricelambert/WifiDeauth)
- [Documentation WifiDeauth](https://mauricelambert.github.io/info/python/security/WifiDeauth.html)
- [Download as python executable](https://mauricelambert.github.io/info/python/security/WifiDeauth.pyz)
- [Pypi package](https://pypi.org/project/WifiDeauth/)
- [Bash Script to launch WifiDeauth on Kali\Debian](https://mauricelambert.github.io/info/bash/LaunchWifiDeauth.sh)

## Licence
Licensed under the [GPL, version 3](https://www.gnu.org/licenses/).