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 cf8e5d5 commit 74e82b2Copy full SHA for 74e82b2
1 file changed
lib/utils/hash.py
@@ -341,7 +341,7 @@ def attackCachedUsersPasswords():
341
for user in kb.data.cachedUsersPasswords.keys():
342
for i in xrange(len(kb.data.cachedUsersPasswords[user])):
343
value = kb.data.cachedUsersPasswords[user][i].lower()
344
- if value in lut and "clear-text password" not in value:
+ if value in lut:
345
kb.data.cachedUsersPasswords[user][i] += "%s clear-text password: %s" % ('\n' if kb.data.cachedUsersPasswords[user][i][-1] != '\n' else '', lut[value])
346
347
def attackDumpedTable():
0 commit comments