mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2026-08-04 14:55:40 +00:00
Fixes #4981
This commit is contained in:
parent
74f5518e62
commit
5e18bf81b9
2 changed files with 2 additions and 2 deletions
|
|
@ -1430,7 +1430,7 @@ class Connect(object):
|
|||
|
||||
deviation = stdev(kb.responseTimes[kb.responseTimeMode])
|
||||
|
||||
if deviation > WARN_TIME_STDEV:
|
||||
if deviation is not None and deviation > WARN_TIME_STDEV:
|
||||
kb.adjustTimeDelay = ADJUST_TIME_DELAY.DISABLE
|
||||
|
||||
warnMsg = "considerable lagging has been detected "
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue