mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2024-11-22 17:46:37 +03:00
More verbose warning message
This commit is contained in:
parent
10bdd90e60
commit
28bba9f5e6
|
@ -576,12 +576,16 @@ class Connect:
|
||||||
while len(kb.responseTimes) < MIN_TIME_RESPONSES:
|
while len(kb.responseTimes) < MIN_TIME_RESPONSES:
|
||||||
Connect.queryPage(content=True)
|
Connect.queryPage(content=True)
|
||||||
|
|
||||||
if stdev(kb.responseTimes) > WARN_TIME_STDEV:
|
deviation = stdev(kb.responseTimes)
|
||||||
|
|
||||||
|
if deviation > WARN_TIME_STDEV:
|
||||||
kb.adjustTimeDelay = False
|
kb.adjustTimeDelay = False
|
||||||
|
|
||||||
warnMsg = "there is considerable lagging in connection "
|
warnMsg = "there is considerable lagging (standard deviation: "
|
||||||
warnMsg += "response(s). Please use as high value for "
|
warnMsg += "%f sec%s) " % (deviation, "s" if deviation > 1 else "")
|
||||||
warnMsg += "--time-sec option as possible (e.g. 10 or more)"
|
warnMsg += "in connection response(s). Please use as high "
|
||||||
|
warnMsg += "value for --time-sec option as possible (e.g. "
|
||||||
|
warnMsg += "%d or more)" % (conf.timeSec * 2)
|
||||||
logger.critical(warnMsg)
|
logger.critical(warnMsg)
|
||||||
elif not kb.testMode:
|
elif not kb.testMode:
|
||||||
warnMsg = "it is very important not to stress the network adapter's "
|
warnMsg = "it is very important not to stress the network adapter's "
|
||||||
|
|
Loading…
Reference in New Issue
Block a user