I was stuck on it for quite a while as well, I was able to find it by using burp and filtering by the content length of the request, my advice is to save the output to a file and use grep with the flag -v
to filter the size you see the most which according to the screenshot is 58
so it should look something along the line of:
ffuf command > file.txt
cat file.txt | grep -v “Size: 58”
You should use some flags.
By the response you got, we can see the amount of lines and words is repetetive.
Match flags help you get the answer you need
MATCHER OPTIONS:
-mc Match HTTP status codes, or "all" for everything. (default: 200-299,301,302,307,401,403,405,500)
-ml Match amount of lines in response
-mmode Matcher set operator. Either of: and, or (default: or)
-mr Match regexp
-ms Match HTTP response size
-mt Match how many milliseconds to the first response byte, either greater or less than. EG: >100 or <100
-mw Match amount of words in response
Filter flags remove what you don’t want to see.
FILTER OPTIONS:
-fc Filter HTTP status codes from response. Comma separated list of codes and ranges
-fl Filter by amount of lines in response. Comma separated list of line counts and ranges
-fmode Filter set operator. Either of: and, or (default: or)
-fr Filter regexp
-fs Filter HTTP response size. Comma separated list of sizes and ranges
-ft Filter by number of milliseconds to the first response byte, either greater or less than. EG: >100 or <100
-fw Filter by amount of words in response. Comma separated list of word counts and ranges
In your case use the “-fw 8” to filter any response that contains 8 words.