From ba0425182125d0ccfb5932375d6f45068b9ac4b8 Mon Sep 17 00:00:00 2001 From: keethesh <30286645+keethesh@users.noreply.github.com> Date: Sun, 7 Apr 2019 19:02:17 +0400 Subject: [PATCH 1/2] Update cupp.py Wordlists are now saved to the wordlists folder --- cupp.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/cupp.py b/cupp.py index 8a0f635..acab2e4 100755 --- a/cupp.py +++ b/cupp.py @@ -687,8 +687,8 @@ def generate_wordlist_from_profile(profile): for x in unique_list if len(x) < CONFIG["global"]["wcto"] and len(x) > CONFIG["global"]["wcfrom"] ] - - print_to_file(profile["name"] + ".txt", unique_list_finished) + dirName = "wordlists" + print_to_file(dirname + "/" + profile["name"] + ".txt", unique_list_finished) def download_http(url, targetfile): From f0087d21e23a1c41c4adddde5020e699bc363798 Mon Sep 17 00:00:00 2001 From: keethesh <30286645+keethesh@users.noreply.github.com> Date: Mon, 8 Apr 2019 16:23:37 +0400 Subject: [PATCH 2/2] Update cupp.py --- cupp.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cupp.py b/cupp.py index acab2e4..8641b60 100755 --- a/cupp.py +++ b/cupp.py @@ -687,7 +687,7 @@ def generate_wordlist_from_profile(profile): for x in unique_list if len(x) < CONFIG["global"]["wcto"] and len(x) > CONFIG["global"]["wcfrom"] ] - dirName = "wordlists" + dirname = "wordlists" print_to_file(dirname + "/" + profile["name"] + ".txt", unique_list_finished)