mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2024-11-22 17:46:37 +03:00
Minor adjustment of logging messages
This commit is contained in:
parent
9c3c9a9315
commit
01d24cbb42
|
@ -605,8 +605,8 @@ def attackDumpedTable():
|
||||||
if not count:
|
if not count:
|
||||||
return
|
return
|
||||||
|
|
||||||
infoMsg = "analyzing table dump for possible password hashes"
|
debugMsg = "analyzing table dump for possible password hashes"
|
||||||
logger.info(infoMsg)
|
logger.debug(debugMsg)
|
||||||
|
|
||||||
found = False
|
found = False
|
||||||
col_user = ''
|
col_user = ''
|
||||||
|
@ -666,8 +666,8 @@ def attackDumpedTable():
|
||||||
if hash_:
|
if hash_:
|
||||||
lut[hash_.lower()] = password
|
lut[hash_.lower()] = password
|
||||||
|
|
||||||
infoMsg = "postprocessing table dump"
|
debugMsg = "post-processing table dump"
|
||||||
logger.info(infoMsg)
|
logger.debug(debugMsg)
|
||||||
|
|
||||||
for i in xrange(count):
|
for i in xrange(count):
|
||||||
for column in columns:
|
for column in columns:
|
||||||
|
|
Loading…
Reference in New Issue
Block a user