diff --git a/tools/others/wifi_jamming.py b/tools/others/wifi_jamming.py index 412e915..6069688 100644 --- a/tools/others/wifi_jamming.py +++ b/tools/others/wifi_jamming.py @@ -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"