We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7b95a2d commit 1f71d80Copy full SHA for 1f71d80
lib/controller/checks.py
@@ -706,7 +706,8 @@ def checkFalsePositives(injection):
706
707
retVal = injection
708
709
- if all(_ in (PAYLOAD.TECHNIQUE.BOOLEAN, PAYLOAD.TECHNIQUE.TIME, PAYLOAD.TECHNIQUE.STACKED) for _ in injection.data):
+ if all(_ in (PAYLOAD.TECHNIQUE.BOOLEAN, PAYLOAD.TECHNIQUE.TIME, PAYLOAD.TECHNIQUE.STACKED) for _ in injection.data) or\
710
+ (len(injection.data) == 1 and PAYLOAD.TECHNIQUE.UNION in injection.data and "Generic" in injection.data[PAYLOAD.TECHNIQUE.UNION].title):
711
pushValue(kb.injection)
712
713
infoMsg = "checking if the injection point on %s " % injection.place
0 commit comments