February 2019
Beginner to intermediate
366 pages
7h 49m
English
The HTTP protocol has different methods, usually, we use to know the GET, POST, and CONNECT methods because they are the most commonly used. However, there are others that can be used to get information about the server, upload and delete files into the application, or obtain debug information.
Testing these methods using Burp Suite is easy. From the proxy, just modify the request in the following way:
OPTIONS / HTTP/1.1
Actually, OPTIONS is a method that allows us to know what methods are allowed on the web server. The methods that can appear are PUT, DELETE, TRACE, TRACK, and HEAD. The exploitation of these methods is beyond the scope of this book because a lot depends on the environment in the application.
Read now
Unlock full access