From 754812ae366281f83d66c46ad0170c80859f1e66 Mon Sep 17 00:00:00 2001 From: jul10l14 Date: Thu, 20 Jun 2019 04:51:09 -0300 Subject: [PATCH 1/2] Fix leet cryptograph --- modules/permutations/main.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/permutations/main.py b/modules/permutations/main.py index d6bd4eb..18b0a6a 100755 --- a/modules/permutations/main.py +++ b/modules/permutations/main.py @@ -4,7 +4,7 @@ global_list = [] # Texts to numbers def textnumber(x): - return x.translate(str.maketrans('aeioAEIOBTbt', '431043108787')) + return x.translate(str.maketrans('aeioAEIOBTbtsS', '43104310878755')) # make the number def counting1(x): return x+"1" From 09fb6689d4e2be8fafa499f9c1ac2ab7dea2262f Mon Sep 17 00:00:00 2001 From: jul10l14 Date: Fri, 2 Aug 2019 16:12:31 -0300 Subject: [PATCH 2/2] Fix directory of module report generator --- modules/functions.sh | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/modules/functions.sh b/modules/functions.sh index 206b9d2..6a4c754 100644 --- a/modules/functions.sh +++ b/modules/functions.sh @@ -158,11 +158,8 @@ __fwordlist (){ echo -e "$green Wordlist has been saved in\n$orange./reports/wordlist/wordlist.txt$end" # clear trash files # Report in pdf - # pagodo, default of script - cd pagodo/ - . ../modules/report/main.sh "../$1" "../reports/db/wordlist.blob.txt" \ - "../reports/wordlist/wordlist.txt" "custom" - cd .. + . ./modules/report/main.sh "$1" "reports/db/wordlist.blob.txt" \ + "reports/wordlist/wordlist.txt" "custom" rm -rf reports/db/wordlist.blob.txt exit 0 else