From 8281fe48e5b484e4540678ecf5b193370d28a37e Mon Sep 17 00:00:00 2001 From: Bernardo Damele Date: Sun, 1 Mar 2015 11:02:05 +0000 Subject: [PATCH] bug fix: test for boundaries with high levels if the test was extended --- lib/controller/checks.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/controller/checks.py b/lib/controller/checks.py index 14aef2610..e680b479a 100644 --- a/lib/controller/checks.py +++ b/lib/controller/checks.py @@ -299,7 +299,7 @@ def checkSqlInjection(place, parameter, value): # Skip boundary if the level is higher than the provided (or # default) value # Parse boundary's - if boundary.level > conf.level: + if boundary.level > conf.level and not (kb.extendTests and intersect(payloadDbms, kb.extendTests, True)): continue # Skip boundary if it does not match against test's