mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2025-02-03 05:04:11 +03:00
Removing redundant check
This commit is contained in:
parent
cf8e5d535d
commit
74e82b2b53
|
@ -341,7 +341,7 @@ def attackCachedUsersPasswords():
|
|||
for user in kb.data.cachedUsersPasswords.keys():
|
||||
for i in xrange(len(kb.data.cachedUsersPasswords[user])):
|
||||
value = kb.data.cachedUsersPasswords[user][i].lower()
|
||||
if value in lut and "clear-text password" not in value:
|
||||
if value in lut:
|
||||
kb.data.cachedUsersPasswords[user][i] += "%s clear-text password: %s" % ('\n' if kb.data.cachedUsersPasswords[user][i][-1] != '\n' else '', lut[value])
|
||||
|
||||
def attackDumpedTable():
|
||||
|
|
Loading…
Reference in New Issue
Block a user