From 19cc1fdf513ed39a44e511d137863166d779b250 Mon Sep 17 00:00:00 2001 From: bandrel Date: Tue, 29 Jan 2019 16:54:06 -0500 Subject: [PATCH] Moved to iso-8859-9 from UTF-8 for unhexify function. Less errors when trying to recycle non ASCII passwords --- hate_crack.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hate_crack.py b/hate_crack.py index b3816fd..9c339e8 100755 --- a/hate_crack.py +++ b/hate_crack.py @@ -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: