Metadata-Version: 2.1
Name: WifiDeauth
Version: 0.0.2
Summary: This package implement a Dos attack on Wifi named Deauth.
Home-page: https://github.com/mauricelambert/WifiDeauth
Author: Maurice Lambert
Author-email: mauricelambert434@gmail.com
License: UNKNOWN
Description: # 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/)
        
        ## Licence
        Licensed under the [GPL, version 3](https://www.gnu.org/licenses/).
Platform: UNKNOWN
Classifier: Programming Language :: Python
Classifier: Development Status :: 5 - Production/Stable
Classifier: Environment :: Console
Classifier: Natural Language :: English
Classifier: Programming Language :: Python :: 3.9
Classifier: Operating System :: POSIX :: Linux
Classifier: Operating System :: Microsoft :: Windows
Classifier: Operating System :: MacOS
Classifier: Topic :: Security
Requires-Python: >=3.9
Description-Content-Type: text/markdown
