Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 07c3d4f

Browse files
committed
minor adjustment
1 parent edab7d0 commit 07c3d4f

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

lib/controller/controller.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -416,7 +416,8 @@ def start():
416416
elif parameter in conf.testParameter:
417417
pass
418418

419-
elif parameter.upper() in IGNORE_PARAMETERS:
419+
# Ignore session-like parameters for --level < 4
420+
elif conf.level < 4 and parameter.upper() in IGNORE_PARAMETERS:
420421
testSqlInj = False
421422

422423
infoMsg = "ignoring %s parameter '%s'" % (place, parameter)

0 commit comments

Comments
 (0)