From 8af0f06ecf3b098889da0537f3cb5c07d736efec Mon Sep 17 00:00:00 2001 From: Greatest125 <66028078+Greatest125@users.noreply.github.com> Date: Sat, 26 Dec 2020 16:29:52 +0000 Subject: [PATCH] added Cupp run instructions for interactive word list generator --- tools/wordlist_generator.py | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/tools/wordlist_generator.py b/tools/wordlist_generator.py index 6ea3760..3e1be2d 100644 --- a/tools/wordlist_generator.py +++ b/tools/wordlist_generator.py @@ -8,10 +8,8 @@ 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"] - PROJECT_URL = "https://github.com/Mebus/cupp.git" - - def __init__(self): - super(Cupp, self).__init__(runnable = False) + RUN_COMMANDS = ["python3 cupp.py -i"] + PROJECT_URL = "https://github.com/Mebus/cupp" class WlCreator(HackingTool):