From 575e50673b1a387c8e963daa77836f67d154a2ca Mon Sep 17 00:00:00 2001 From: Miroslav Stampar Date: Tue, 7 Dec 2010 19:27:01 +0000 Subject: [PATCH] minor update --- lib/controller/checks.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/controller/checks.py b/lib/controller/checks.py index 61e5acc99..e630cb924 100644 --- a/lib/controller/checks.py +++ b/lib/controller/checks.py @@ -356,8 +356,8 @@ def checkSqlInjection(place, parameter, value): _ = Request.queryPage(reqPayload, place, noteResponseTime = False) duration = calculateDeltaSeconds(start) - # 99.9999999997440% of all non-time affected durations - # should be inside 7*stdev(durations) + # 99.9999999997440% of all non time-based sql injection + # affected durations should be inside 7*stdev(durations) # (Reference: http://www.answers.com/topic/standard-deviation) trueResult = (duration >= 7 * stdev(kb.responseTimes))