mirror of
https://github.com/trustedsec/hate_crack.git
synced 2026-01-10 04:08:01 -08:00
Moved to iso-8859-9 from UTF-8 for unhexify function.
Less errors when trying to recycle non ASCII passwords
This commit is contained in:
@@ -1019,7 +1019,7 @@ def convert_hex(working_file):
|
||||
match = re.search(regex, line.rstrip('\n'))
|
||||
if match:
|
||||
try:
|
||||
processed_words.append(binascii.unhexlify(match.group(1)).decode('utf-8'))
|
||||
processed_words.append(binascii.unhexlify(match.group(1)).decode('iso-8859-9'))
|
||||
except UnicodeDecodeError:
|
||||
pass
|
||||
else:
|
||||
|
||||
Reference in New Issue
Block a user