wordlist_generator.py

line 11 did not cd in to the cupp directory before trying to run it.
This commit is contained in:
Gam3-0veR 2021-12-09 05:02:13 -06:00 committed by GitHub
parent 005cdfb0b5
commit 37105b2232
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -8,7 +8,7 @@ class Cupp(HackingTool):
DESCRIPTION = "WlCreator is a C program that can create all possibilities of passwords,\n " \
"and you can choose Length, Lowercase, Capital, Numbers and Special Chars"
INSTALL_COMMANDS = ["git clone https://github.com/Mebus/cupp.git"]
RUN_COMMANDS = ["python3 cupp.py -i"]
RUN_COMMANDS = ["cd cupp && python3 cupp.py -i"]
PROJECT_URL = "https://github.com/Mebus/cupp"