Extend charset to include all (printable) ASCII chars

This commit is contained in:
maride 2021-06-01 16:55:41 +02:00
parent 31ab515a01
commit 0f7b756c93

View File

@ -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.