Wifijammer in python 08-29-2014, 06:37 PM
#1
WIFI JAMMER
I do not claim credit for the creation of this script.
I found a WiFi jamming script on github created in python and thought I would share. It effectively disables WiFi for anyone connected to a acces point within your wireless cards range in short it DoS's every ones wifi .
The script first detects the most powerfull wireless card on the attackers device and manipulates it so that it is ready for injection etc. Due to this factor it is required that the script be run as root. It will then hop channels 1 to 11 to identify access points a clients connected to those access points. The actual attack is done through deauthentication packets that are sent to both the client and the acces point
It is extremely simple to deploy and run, its only dependency being python scappy.
On Linux machines running a Debian based distro scapy can be installed through
Code:
sudo apt-get install python-scapy
In its simplest form the script can be executed through
Code:
python wifijammer.py
which will execute the previously mentioned process
WARNING THIS WILL KNOCK YOU OFF YOUR ACCESS POINT AS WELL
Advanced usage is rather simple here are some of my most frequentally used options:
Code:
python wifijammer.py -c 1
Code:
python wifijammer.py -s 00:00:00:00:00:00
Here are all of the other options:
Code:
python wifijammer.py [-a AP MAC] [-c CHANNEL] [-d] [-i INTERFACE] [-m MAXIMUM] [-n] [-p PACKETS] [-s SKIP] [-t TIME INTERVAL]
All credit for this script goes to DanMcInerney
Here is the projects page: GitHub
I am in the process in modding the script myself, if you beat me to such a goal please post your modifications. I will be more than interested in seeing them and trying them out myself.