mirror of
https://github.com/trustedsec/hate_crack.git
synced 2025-12-12 15:49:19 -08:00
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:
@@ -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():
|
||||
|
||||
Reference in New Issue
Block a user