Skip to content

Commit 1f71d80

Browse files
committed
1 parent 7b95a2d commit 1f71d80

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

lib/controller/checks.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -706,7 +706,8 @@ def checkFalsePositives(injection):
706706

707707
retVal = injection
708708

709-
if all(_ in (PAYLOAD.TECHNIQUE.BOOLEAN, PAYLOAD.TECHNIQUE.TIME, PAYLOAD.TECHNIQUE.STACKED) for _ in injection.data):
709+
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):
710711
pushValue(kb.injection)
711712

712713
infoMsg = "checking if the injection point on %s " % injection.place

0 commit comments

Comments
 (0)