From 23559dd63f4ea5301e9a28456e606cef80aab594 Mon Sep 17 00:00:00 2001 From: Greatest125 <66028078+Greatest125@users.noreply.github.com> Date: Sun, 27 Dec 2020 19:09:42 +0000 Subject: [PATCH] updated blazy install and run explicitly stating python2.7 in case default becomes 3.x --- tools/webattack.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tools/webattack.py b/tools/webattack.py index fa62b75..5fc6bf2 100644 --- a/tools/webattack.py +++ b/tools/webattack.py @@ -59,9 +59,9 @@ class Blazy(HackingTool): DESCRIPTION = "Blazy is a modern login page bruteforcer" INSTALL_COMMANDS = [ "sudo git clone https://github.com/UltimateHackers/Blazy.git", - "cd Blazy && sudo pip install -r requirements.txt" + "cd Blazy && sudo pip2.7 install -r requirements.txt" ] - RUN_COMMANDS = ["cd Blazy && sudo python blazy.py"] + RUN_COMMANDS = ["cd Blazy && sudo python2.7 blazy.py"] PROJECT_URL = "https://github.com/UltimateHackers/Blazy"