About HTTP. Bug Bounty Basic.

About HTTP

It is the protocol used by the WWW to communicate with Client and the Server. It is the request and response protocol works on port 80.



Method Of HTTP

Get Method:- This method is used to retrive information from the server. It only request data and have no effect in the data.


Post Method:- This method is used to send data to the server to fill the form or any other data. e.g:- Login details etc.

Head Method:- This is same as Get method but this does not request body from the server only request Header and status line.

PUT Method:- The HTTP PUT request method creates a new resource or replaces a representation of the target resource with the request payload.

Delete Method:- Delete all the current representation of target URL.

Connect Method:- It helps to establish tunnel to the server.

Options Method:- Describe the communication options for the target resource.


Trace Method:- Performs a message loop back test along with the path to the target resource.




Reading 1st Material For Bug Bounty

Comments