Skip to content

Commit 0599288

Browse files
committed
fix issue in filtersResultWithSringOnBodyResonse.py
Signed-off-by: Timothée Ruffenach <timruff@gmx.com>
1 parent 5d4a4d3 commit 0599288

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

httpfuzzerprocessor/filtersResultWithStringOnBodyResponse.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ def processResult(utils, fuzzResult) :
4141
# test all posibility
4242
if isCheck == JOptionPane.NO_OPTION and entry in body:
4343
return bool(1);
44-
elif isCheck == JOptionPane.YES_OPTION and entry in body:
44+
elif isCheck == JOptionPane.YES_OPTION and not entry in body:
4545
return bool(1);
4646
else:
4747
return bool(0);

0 commit comments

Comments
 (0)