xmendez/wfuzz

Where can I find the response data?

yoonsch217 opened this issue · 1 comments

Issue template

Context

Please check:

  • I've read the docs for Wfuzz

Please describe your local environment:

Wfuzz version: Output of wfuzz --version
3.1.0

Python version: Output of python --version
3.8.2

OS: X

Report

What is the current behavior?

Running echo 'api/v1' | wfuzz -o json -c -v -z stdin http://MYSERVER/FUZZ will print

[{"chars": 10, "code": 200, "payload": "api/v1", "lines": 0, "location": "", "method": "GET", "post_data": [], "server": "", "url": "http://MYSERVER/api/v1", "words": 3}]%

There says that there are three words in response, but how can I figure out what the words are?

I checked the documents and help, but couldn't find about it.

I guess wfuzz don't record the response body on result, only the length.