Skip to content

Python script based on aireplay-ng to keep deauthenticating the specified stations from your WiFi network.

Notifications You must be signed in to change notification settings

Palantir555/Wi-Fi-DoS

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

17 Commits
 
 
 
 
 
 

Repository files navigation

aireplay-ng only supports 2 deauthentication modes: 1 client or all of them. In some cases you may want to keep a few clients off your network, but not all of them. This script does that for you.

wifidos.py takes no arguments; everything is configured from the source code:

#Deauthenticate all clients (you should use aircrack-ng directly):
#network = "de:ad:be:ef:fe:ed"
#victims = []

#Deauthenticate these specific clients:
network = "de:ad:be:ef:fe:ed"
victims = [
   "00:00:00:00:00:11", #Client 01
   "00:00:00:00:00:22", #Client 02
   "00:00:00:00:00:33", #Client 03
   "00:00:00:00:00:44", #Client 04
   "00:00:00:00:00:55"] #Client 05

#Network interface:
interface = "wlan1mon"

Don't do anything nasty with it :)

About

Python script based on aireplay-ng to keep deauthenticating the specified stations from your WiFi network.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages