The Journey
Cyber Security
Cyber Security
  • Chapter 1: Setting up Debian
    • Make User Sudoer
    • Change SSH Keys
    • Add Kali Repositories
    • Bidirectional Clipboard
    • Create Flameshot Keybind
    • Install Peek and add keybind
    • Customizing Looks and Feels
    • Disable Suspend/Hibernation
    • Add Min/Max buttons to Windows
    • Install and Configure ZSH for Terminal Syntax Highlighting
  • Chapter 2: Bug Bounty Basics
    • Web Requests
      • HTTP Fundamentals
        • HTTP
        • URL
        • HTTP Flow
        • cURL
        • HTTPS
        • HTTPS Flow
        • cURL for HTTPS
        • HTTP Request
        • HTTP Response
        • HTTP Headers
        • More cURL
        • Browser DevTools
      • HTTP Methods
  • Cheat Sheets
    • cURL / DevTools
Powered by GitBook
On this page
  1. Chapter 2: Bug Bounty Basics
  2. Web Requests
  3. HTTP Fundamentals

More cURL

PreviousHTTP HeadersNextBrowser DevTools

Last updated 3 years ago

-v shows all details of HTTP request and response.

-I Only response headers (HEAD request) **Capital i....

-i Both headers and response body. (HTML code)

Difference between i and I is that -I sends a HEAD request while -i sends any request we specify and prints the headers as well.

-H Set request headers.

-A Set User-Agent

Example: Use -A to change the User-Agent, along with -I and -A to ensure the changes actually took place.