File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -781,19 +781,19 @@ def _():
781
781
if PAYLOAD .TECHNIQUE .BOOLEAN not in injection .data :
782
782
checkBooleanExpression ("%d=%d" % (randInt1 , randInt2 ))
783
783
784
- if checkBooleanExpression ("%d=%d" % (randInt1 , randInt3 )):
784
+ if checkBooleanExpression ("%d=%d" % (randInt1 , randInt3 )): # this must not be evaluated to True
785
785
retVal = None
786
786
break
787
787
788
- elif checkBooleanExpression ("%d=%d" % (randInt3 , randInt2 )):
788
+ elif checkBooleanExpression ("%d=%d" % (randInt3 , randInt2 )): # this must not be evaluated to True
789
789
retVal = None
790
790
break
791
791
792
- elif not checkBooleanExpression ("%d=%d" % (randInt2 , randInt2 )):
792
+ elif not checkBooleanExpression ("%d=%d" % (randInt2 , randInt2 )): # this must be evaluated to True
793
793
retVal = None
794
794
break
795
795
796
- elif checkBooleanExpression ("%d %d" % (randInt3 , randInt2 )):
796
+ elif checkBooleanExpression ("%d %d" % (randInt3 , randInt2 )): # this must not be evaluated to True (invalid statement)
797
797
retVal = None
798
798
break
799
799
You can’t perform that action at this time.
0 commit comments