APwner is a program built to automate the process of capturing WPA handshakes as well as denying the service of an access point or specific devices running on the access point.
Python
Linux
git clone https://github.com/kod34/Apwner
cd Apwner
chmod +x install.sh
./install.sh
apwner [-h] [-H] [-D]
optional arguments:
-h, --help show this help message and exit
required named arguments:
-H, --handshake Capture Handshake
-D, --dos DOS Attack
- To Capture Handshakes:
sudo python3 apwner.py -H
- To launch a deauthentication attack:
sudo python3 apwner.py -D
- To send deauthentication packets to specific stations within the network, input the numbers corresponding to the devices separated by a space (ex: 1 3 4)
- Airodump captures are stored in the /tmp/apwner_dumps/ directory.
- Handshakes are stored in the ./handshakes/ directory.
- Python
The sole purpose of writing this program was research, its misuse is the responsibility of the user only.