Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
Z4nzu
GitHub Repository: Z4nzu/hackingtool
Path: blob/master/tools/others/wifi_jamming.py
1275 views
1
# coding=utf-8
2
from core import HackingTool
3
from core import HackingToolsCollection
4
5
6
class WifiJammerNG(HackingTool):
7
TITLE = "WifiJammer-NG"
8
DESCRIPTION = "Continuously jam all wifi clients and access points within range."
9
INSTALL_COMMANDS = [
10
"sudo git clone https://github.com/MisterBianco/wifijammer-ng.git",
11
"cd wifijammer-ng;sudo pip install -r requirements.txt"
12
]
13
RUN_COMMANDS = [
14
'echo "python wifijammer.py [-a AP MAC] [-c CHANNEL] [-d] [-i INTERFACE] [-m MAXIMUM] [-k] [-p PACKETS] [-s SKIP] [-t TIME INTERVAL] [-D]"| boxes | lolcat',
15
"cd wifijammer-ng;sudo python wifijammer.py"
16
]
17
PROJECT_URL = "https://github.com/MisterBianco/wifijammer-ng"
18
19
20
class KawaiiDeauther(HackingTool):
21
TITLE = "KawaiiDeauther"
22
DESCRIPTION = "Kawaii Deauther is a pentest toolkit whose goal is to perform \n " \
23
"jam on WiFi clients/routers and spam many fake AP for testing purposes."
24
INSTALL_COMMANDS = [
25
"sudo git clone https://github.com/aryanrtm/KawaiiDeauther.git",
26
"cd KawaiiDeauther;sudo bash install.sh"
27
]
28
RUN_COMMANDS = ["cd KawaiiDeauther;sudo bash KawaiiDeauther.sh"]
29
PROJECT_URL = "https://github.com/aryanrtm/KawaiiDeauther"
30
31
32
class WifiJammingTools(HackingToolsCollection):
33
TITLE = "Wifi Deauthenticate"
34
TOOLS = [
35
WifiJammerNG(),
36
KawaiiDeauther()
37
]
38
39