diff --git a/lib/controller/checks.py b/lib/controller/checks.py index 37abd9fa8..39660830d 100644 --- a/lib/controller/checks.py +++ b/lib/controller/checks.py @@ -716,7 +716,7 @@ def checkSqlInjection(place, parameter, value): else: injection = None - if injection: + if injection and NOTE.FALSE_POSITIVE_OR_UNEXPLOITABLE not in injection.notes: checkSuhosinPatch(injection) checkFilteredChars(injection) diff --git a/lib/core/settings.py b/lib/core/settings.py index a506f653e..67cbea3ab 100644 --- a/lib/core/settings.py +++ b/lib/core/settings.py @@ -19,7 +19,7 @@ from lib.core.enums import OS from lib.core.revision import getRevisionNumber # sqlmap version (...) -VERSION = "1.0.5.108" +VERSION = "1.0.5.109" REVISION = getRevisionNumber() STABLE = VERSION.count('.') <= 2 VERSION_STRING = "sqlmap/%s#%s" % (VERSION, "stable" if STABLE else "dev")