1
0
mirror of https://github.com/Z4nzu/hackingtool.git synced 2025-06-20 06:15:54 +02:00

updated blazy install and run

explicitly stating python2.7 in case default becomes 3.x
This commit is contained in:
Greatest125
2020-12-27 19:09:42 +00:00
committed by GitHub
parent 1953ea5da7
commit 23559dd63f

View File

@ -59,9 +59,9 @@ class Blazy(HackingTool):
DESCRIPTION = "Blazy is a modern login page bruteforcer" DESCRIPTION = "Blazy is a modern login page bruteforcer"
INSTALL_COMMANDS = [ INSTALL_COMMANDS = [
"sudo git clone https://github.com/UltimateHackers/Blazy.git", "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" PROJECT_URL = "https://github.com/UltimateHackers/Blazy"