mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2024-11-23 01:56:36 +03:00
little explanation
This commit is contained in:
parent
dc651d59ec
commit
398b82644a
|
@ -356,7 +356,9 @@ def checkSqlInjection(place, parameter, value):
|
|||
_ = Request.queryPage(reqPayload, place, noteResponseTime = False)
|
||||
duration = calculateDeltaSeconds(start)
|
||||
|
||||
# Reference: http://www.answers.com/topic/standard-deviation
|
||||
# 99.9999999997440% of all non-time affected durations
|
||||
# should be inside 7*stdev(durations)
|
||||
# (Reference: http://www.answers.com/topic/standard-deviation)
|
||||
trueResult = (duration >= 7 * stdev(kb.responseTimes))
|
||||
|
||||
if trueResult:
|
||||
|
|
Loading…
Reference in New Issue
Block a user