removed python3 support WifiJammerNG

python3 support isn't available yet...
This commit is contained in:
Greatest125 2020-12-19 15:27:43 -05:00 committed by GitHub
parent 44af891093
commit ebaf4af0e3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -8,11 +8,11 @@ class WifiJammerNG(HackingTool):
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"
"cd wifijammer-ng;sudo pip 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"
"cd wifijammer-ng;sudo python wifijammer.py"
]
PROJECT_URL = "https://github.com/MisterBianco/wifijammer-ng"