May 2020
Intermediate to advanced
544 pages
12h 57m
English
Fuzzing HTTP methods is quite easy and, at the same time, quite helpful. Let's try to fuzz the HTTP verbs on a simple web application using Wfuzz. Fuzzing HTTP request methods can be done by following these steps:
wfuzz -z list,PUT-POST-HEAD-OPTIONS-TRACE-GET -X FUZZ <url>

The -z option is used to input the payload. In this case, we used a list (-z <list name>) of common HTTP request methods (GET, POST, HEAD, OPTIONS, TRACE, and PUT).
The -X option is used to ...
Read now
Unlock full access