From 37105b223215105cc59369c748ddfe55e91c4ac9 Mon Sep 17 00:00:00 2001 From: Gam3-0veR <95853755+Gam3-0veR@users.noreply.github.com> Date: Thu, 9 Dec 2021 05:02:13 -0600 Subject: [PATCH] wordlist_generator.py line 11 did not cd in to the cupp directory before trying to run it. --- tools/wordlist_generator.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/wordlist_generator.py b/tools/wordlist_generator.py index 3e1be2d..dee3423 100644 --- a/tools/wordlist_generator.py +++ b/tools/wordlist_generator.py @@ -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"