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 edab7d0 commit 07c3d4fCopy full SHA for 07c3d4f
1 file changed
lib/controller/controller.py
@@ -416,7 +416,8 @@ def start():
416
elif parameter in conf.testParameter:
417
pass
418
419
- elif parameter.upper() in IGNORE_PARAMETERS:
+ # Ignore session-like parameters for --level < 4
420
+ elif conf.level < 4 and parameter.upper() in IGNORE_PARAMETERS:
421
testSqlInj = False
422
423
infoMsg = "ignoring %s parameter '%s'" % (place, parameter)
0 commit comments