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
This commit is contained in:
Justin Bollinger
2020-09-01 10:56:14 -04:00
parent e9e7cfcced
commit 689337acf6
+1 -3
View File
@@ -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():