Does anyone know whether this kind of filtering logic is possible in ffuf: remove if (fs=100 AND fl=5 AND fw=20 AND fr="error") OR (fs=150 AND fl=10 AND fw=12 AND fr="main")
I can make an ffuf command to run one of the two, but never both at the same time, example: ffuf -u site -w wordlistPath -fs 100 -fw 20 -fl 5 -fr "error" -fmode "and"
I've thought about post processing with the JSON response, but the JSON returned from ffuf doesn't contain the response of the request, so I can't filter based off a regex / string, which is needed in this case.
Is there a way to do this either in the tool or post processing, or would I need to modify a local copy of ffuf, thanks.