Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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.
- Host: GitHub
- URL: https://github.com/mauricelambert/wifideauth
- Owner: mauricelambert
- License: gpl-3.0
- Created: 2021-04-02T09:27:32.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2021-04-02T13:12:03.000Z (over 3 years ago)
- Last Synced: 2024-11-13T13:11:43.336Z (1 day ago)
- Topics: 802-11, deauth, dos-attack, pypi-package, python3, scapy, wifi, wifi-security
- Language: Python
- Homepage:
- Size: 29.3 KB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.txt
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/).