0PricingLogin
Ethical Hacking Academy · Lesson

Proxy and Interception

Capture requests.

What Is Burp Suite?

Burp Suite is an integrated platform for testing the security of web applications. It sits between your browser and the target server as an intercepting proxy, letting you inspect and modify every HTTP/HTTPS request and response.

  • Proxy — intercept traffic
  • Repeater — manually replay requests
  • Intruder — automate fuzzing
  • Scanner — find vulnerabilities (Pro)

The Intercepting Proxy

Burp's Proxy listens on a local port (default 127.0.0.1:8080). Your browser is configured to send all traffic through it, so Burp can pause requests before they reach the server.

This man-in-the-middle position is what makes web testing possible: you see exactly what the application sends, including hidden parameters and headers.

Proxy listener: 127.0.0.1:8080
Browser proxy setting -> HTTP/HTTPS host 127.0.0.1 port 8080

All lessons in this course

  1. Proxy and Interception
  2. Repeater and Intruder
  3. Scanner
  4. Extensions
← Back to Ethical Hacking Academy