From 689337acf6bd7f1e9366154cef557bd702eec470 Mon Sep 17 00:00:00 2001 From: Justin Bollinger Date: Tue, 1 Sep 2020 10:56:14 -0400 Subject: [PATCH] removed space between colons and password to remain consistent with previous versions. Fixed bug that added all hashes to the output instead of just cracked hashes --- hate_crack.py | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/hate_crack.py b/hate_crack.py index e435907..160152d 100755 --- a/hate_crack.py +++ b/hate_crack.py @@ -923,9 +923,7 @@ def combine_ntlm_output(): for origLine in hcatOrigFile: if origLine.split(':')[3] in hashes: password = hashes[origLine.split(':')[3]] - hcatCombinedHashes.write(origLine.strip() + ' ' + password+'\n') - else: - hcatCombinedHashes.write(origLine) + hcatCombinedHashes.write(origLine.strip()+password+'\n') # Cleanup Temp Files def cleanup():