Unverified Commit 37105b22 authored by Gam3-0veR's avatar Gam3-0veR Committed by GitHub
Browse files

wordlist_generator.py

line 11 did not cd in to the cupp directory before trying to run it.
parent 005cdfb0
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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"