mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2025-02-03 13:14:13 +03:00
no more CRITICAL drop outs in test mode - lots of reports were related to this
This commit is contained in:
parent
7b52bbe3fb
commit
806e898694
|
@ -393,6 +393,9 @@ class Connect:
|
|||
if "forcibly closed" in tbMsg:
|
||||
logger.critical(warnMsg)
|
||||
return None, None
|
||||
elif kb.testMode:
|
||||
logger.warn(warnMsg)
|
||||
return None
|
||||
elif silent or (ignoreTimeout and any(map(lambda x: x in tbMsg, ["timed out", "IncompleteRead"]))):
|
||||
return None, None
|
||||
elif threadData.retriesCount < conf.retries and not kb.threadException and not conf.realTest:
|
||||
|
|
Loading…
Reference in New Issue
Block a user