mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2024-11-22 17:46:37 +03:00
minor update
This commit is contained in:
parent
0b68144c8f
commit
f41ae9cf49
|
@ -255,6 +255,9 @@ def attackDumpedTable():
|
|||
isOracle, isMySQL = Backend.isDbms(DBMS.ORACLE), Backend.isDbms(DBMS.MYSQL)
|
||||
|
||||
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"]
|
||||
|
@ -291,7 +294,7 @@ def attackDumpedTable():
|
|||
|
||||
if attack_dict:
|
||||
message = "recognized possible password hashes in column%s " % ("s" if len(colPasswords) > 1 else "")
|
||||
message += "%s. Do you want to " % ", ".join(col for col in colPasswords)
|
||||
message += "'%s'. Do you want to " % ", ".join(col for col in colPasswords)
|
||||
message += "crack them via a dictionary-based attack? [Y/n/q]"
|
||||
test = readInput(message, default="Y")
|
||||
|
||||
|
|
Loading…
Reference in New Issue
Block a user