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:
bandrel
2019-01-29 16:54:06 -05:00
parent 6720098e9f
commit 19cc1fdf51

View File

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