From 4c2f0cefd30926089c2e7d54d2d9a3f72def96c9 Mon Sep 17 00:00:00 2001 From: Jeff H Date: Sun, 18 Aug 2019 21:10:26 -0500 Subject: [PATCH] Combine Files for hashtype 1000 and Unhex passwords --- hate_crack.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hate_crack.py b/hate_crack.py index 5a4ec42..01b00e6 100644 --- a/hate_crack.py +++ b/hate_crack.py @@ -1053,7 +1053,7 @@ def pipal(): with open(hcatHashFile + ".out") as hcatOutput: for cracked_hash in hcatOutput: password = cracked_hash.split(':') - clearTextPass = password[-1]) + clearTextPass = password[-1] match = re.search(r'^\$HEX\[(\S+)\]', clearTextPass) if match: clearTextPass = binascii.unhexlify(match.group(1)).decode('iso-8859-9')