wfuzz

wfuzz -u http://10.129.95.200/api/getColleagues \
-w /opt/SecLists/Fuzzing/special-chars.txt \
-d '{"name":"FUZZ"}' -c -s 3 \
-H 'Content-Type: application/json;charset=utf-8' -p localhost:8080:HTTP


-u ## Specify the url 
-w ## Specify the wordlist, in this case special characters.
-d ## the POST payload
-c ## output with colors
-s ## time delay in seconds, in this case 3 seconds.
-H ## Specify headers, in this case the Content-Type.
-p ## Specify the proxy, in this case the localhost.

Last updated

Was this helpful?