You've already forked hackingtool
mirror of
https://github.com/Z4nzu/hackingtool.git
synced 2025-06-20 06:15:54 +02:00
38 lines
1.4 KiB
Python
38 lines
1.4 KiB
Python
![]() |
# coding=utf-8
|
||
|
from core import HackingTool
|
||
|
from core import HackingToolsCollection
|
||
|
|
||
|
|
||
|
class WifiJammerNG(HackingTool):
|
||
|
TITLE = "WifiJammer-NG"
|
||
|
DESCRIPTION = "Continuously jam all wifi clients and access points within range."
|
||
|
INSTALL_COMMANDS = [
|
||
|
"sudo git clone https://github.com/MisterBianco/wifijammer-ng.git",
|
||
|
"cd wifijammer-ng;sudo pip3 install -r requirements.txt"
|
||
|
]
|
||
|
RUN_COMMANDS = [
|
||
|
'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',
|
||
|
"cd wifijammer-ng;sudo python3 wifijammer.py"
|
||
|
]
|
||
|
PROJECT_URL = "https://github.com/MisterBianco/wifijammer-ng"
|
||
|
|
||
|
|
||
|
class KawaiiDeauther(HackingTool):
|
||
|
TITLE = "KawaiiDeauther"
|
||
|
DESCRIPTION = "Kawaii Deauther is a pentest toolkit whose goal is to perform \n " \
|
||
|
"jam on WiFi clients/routers and spam many fake AP for testing purposes."
|
||
|
INSTALL_COMMANDS = [
|
||
|
"sudo git clone https://github.com/aryanrtm/KawaiiDeauther.git",
|
||
|
"cd KawaiiDeauther;sudo bash install.sh"
|
||
|
]
|
||
|
RUN_COMMANDS = ["cd KawaiiDeauther;sudo KawaiiDeauther.sh"]
|
||
|
PROJECT_URL = "https://github.com/aryanrtm/KawaiiDeauther"
|
||
|
|
||
|
|
||
|
class WifiJammingTools(HackingToolsCollection):
|
||
|
TITLE = "Wifi Deauthenticate"
|
||
|
TOOLS = [
|
||
|
WifiJammerNG(),
|
||
|
KawaiiDeauther()
|
||
|
]
|