Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ed09c53 commit 95b4874Copy full SHA for 95b4874
1 file changed
lib/core/common.py
@@ -1540,7 +1540,7 @@ def wasLastRequestDelayed():
1540
"""
1541
1542
# 99.9999999997440% of all non time-based sql injection
1543
- # affected durations should be inside +-7*stdev(durations)
+ # affected response times should be inside +-7*stdev([normal response times])
1544
# (Math reference: http://www.answers.com/topic/standard-deviation)
1545
return (kb.lastQueryDuration >= average(kb.responseTimes) + 7 * stdev(kb.responseTimes))
1546
0 commit comments