diff --git a/utils.py b/utils.py index 9b4833f..b88c0ee 100644 --- a/utils.py +++ b/utils.py @@ -171,7 +171,8 @@ def SaveToDb(result): if count == 0: - # Write JtR-style hash string to file + # If we obtained cleartext credentials, write them to file + # Otherwise, write JtR-style hash string to file with open(logfile,"a") as outf: if len(result['cleartext']): outf.write('%s:%s' % (result['user'], result['cleartext']))