From ebaf4af0e336e8360c6ebe65bc0c013f8482872d Mon Sep 17 00:00:00 2001 From: Greatest125 <66028078+Greatest125@users.noreply.github.com> Date: Sat, 19 Dec 2020 15:27:43 -0500 Subject: [PATCH] removed python3 support WifiJammerNG python3 support isn't available yet... --- tools/others/wifi_jamming.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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"