Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent aa5d038 commit b41ee8dCopy full SHA for b41ee8d
1 file changed
lib/utils/hash.py
@@ -290,5 +290,6 @@ def dictionaryAttack():
290
if kb.data.cachedUsersPasswords[user][i] and hash_.lower() in kb.data.cachedUsersPasswords[user][i].lower():
291
kb.data.cachedUsersPasswords[user][i] += "%s%spassword: %s" % ('\n' if kb.data.cachedUsersPasswords[user][i][-1] != '\n' else '', blank, password)
292
else:
293
- errMsg = "hash format unrecognized"
294
- logger.error(errMsg)
+ warnMsg = "unknown hash format. "
+ warnMsg += "Please report by e-mail to [email protected]."
295
+ logger.warn(warnMsg)
0 commit comments