mirror of
https://github.com/Z4nzu/hackingtool
synced 2024-11-15 04:05:29 +00:00
eaa920a7e3
List of changes + Handling information about a tool has been improved a lot by providing a `HackingTool` class, which takes care of showing the options, running the selected option, executing the required commands + This class is designed with flexibililty and simplicity in mind, so adding a new tool is a lot easier, mention TITLE, DESCRIPTION, list of INSTALL_COMMANDS, RUN_COMMANDS and PROJECT_URL and there you go... + grouping all the `HackingTool`s is also made super simpler by providing a `HackingToolsCollection` class which groups the tools into their respective categories. Just add the instances of `HackingTool` classes to the TOOLS property of the `HackingToolsCollection`. + Refactored all the tools into separate files based on their categories. + Added a READM_template.md and generate_readme.py script to automatically generate Table of contents and the list of tools available automatically. + Now each tool in the README.md points to its project url if provided. This makes it easier to visit the project from the readme.
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()
|
|
]
|