more concise language

This commit is contained in:
Miroslav Stampar
2012-01-07 17:45:45 +00:00
parent 138b8039b3
commit 18930539cd
4 changed files with 22 additions and 15 deletions

View File

@@ -315,13 +315,16 @@ def attackCachedUsersPasswords():
def attackDumpedTable():
if kb.data.dumpedTable:
infoMsg = "analyzing table dump for possible password hashes"
logger.info(infoMsg)
table = kb.data.dumpedTable
columns = table.keys()
count = table["__infos__"]["count"]
if not count:
return
infoMsg = "analyzing table dump for possible password hashes"
logger.info(infoMsg)
found = False
colUser = ''
colPasswords = set()