Request method is an operation which run on a resource on a web server.
.....
There are mainly 7 methods used in websites............
- GET----------for information retrival
- POST----------for sending data(like form submission)
- HEAD----------response for GET but no response body
- TRACE-----------echo client request back
- PUT------------------for uploading file
- DELETE------------- for deleting file
- CONNECT--------------- for connecting to server
websites for their security some methods allowed and some methods disallowed
-----now question arises in your mind... how we know that which methods are allowed and disallowed in website????????
we can know this by tools like nmap,metasploit,curl---
⇇
if you want to test each method individually---
2. By Metasploit-----------
- enter msfconsole in terminal
- msf>use auxiliary/scanner/http/options
- set rhosts
- run
Comments