From d217cf71b22f07b9dc42ade692695b2221f2b39b Mon Sep 17 00:00:00 2001 From: Bernardo Damele Date: Wed, 8 Jun 2011 23:32:44 +0000 Subject: [PATCH] Minor bug fix --- 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 2a4ccfbe0..2dfa910d6 100644 --- a/lib/controller/checks.py +++ b/lib/controller/checks.py @@ -399,7 +399,7 @@ def checkSqlInjection(place, parameter, value): warnMsg = "using unescaped version of the test " warnMsg += "because of zero knowledge of the " warnMsg += "back-end DBMS" - singleTimeWarnMessage(warnMsg, logging.WARN, title) + singleTimeWarnMessage(warnMsg) # Test for UNION query SQL injection reqPayload, vector = unionTest(comment, place, parameter, value, prefix, suffix)