Skip to content

Latest commit

 

History

History
13 lines (11 loc) · 800 Bytes

03. Http Response.md

File metadata and controls

13 lines (11 loc) · 800 Bytes

Http Response

After receiving and interpreting a HTTP request message, a server responds with an HTTP response message as below.

  • HTTP response has 2 parts
    • Details about server as header.
    • Response's html content.
    • 200 OK is Http response code representing request and response were successfully done.
    • For more details on Http codes : Http_codes_cheat_sheet
    • Server gives server-version (useful for attackers to find out any specific vulnerabilities)

HTTP POST Method

  • POST is used to send data to a server to create/update a resource.