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 8c80413 commit 0a620bfCopy full SHA for 0a620bf
1 file changed
lib/controller/checks.py
@@ -501,6 +501,12 @@ def genCmpPayload():
501
502
# Return the injection object
503
if injection.place is not None and injection.parameter is not None:
504
+ if not conf.dropSetCookie and PAYLOAD.TECHNIQUE.BOOLEAN in injection.data and injection.data[PAYLOAD.TECHNIQUE.BOOLEAN].vector.startswith('OR'):
505
+ warnMsg = "in cases like this (OR boolean) please consider usage "
506
+ warnMsg += "of switch --drop-set-cookie if you experience any "
507
+ warnMsg += "problems during data retrieval"
508
+ logger.warn(warnMsg)
509
+
510
injection = checkFalsePositives(injection)
511
return injection
512
else:
0 commit comments