From 0f7b756c93370a2ee1e8f570234176876b1fe726 Mon Sep 17 00:00:00 2001 From: maride Date: Tue, 1 Jun 2021 16:55:41 +0200 Subject: [PATCH] Extend charset to include all (printable) ASCII chars --- src/Bruteforce.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Bruteforce.py b/src/Bruteforce.py index 34b9d14..9e2bd89 100644 --- a/src/Bruteforce.py +++ b/src/Bruteforce.py @@ -3,7 +3,7 @@ from Helper import * # The charset to try, sorted by the likelihood of a character class -charset = "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789{}_!?" +charset = "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789{}_!?'#%+/ ;[`@-\".<,*|&$(]=)^>\\:~" # bruteforces a single character, sandwiched between the known parts. # Returns the most promising string.