Burp Suite sits between browser and website, reading and editing requests like open postcards. How the proxy, Repeater and Intruder work — and the server-side defenses that stop them.
Every message your browser sends can be intercepted, read and quietly changed before it reaches the website. The tool that does this — used by every professional web security tester — is called Burp Suite . Here is how it works, what damage one edited request can do, and how real defenses stop it. What Is Burp Suite? Burp Suite (by PortSwigger) is a web proxy for security testing. It positions itself between your browser and the target website: every request passes through Burp first, which can hold it, display it, let you edit it, then forward the modified version. Your browser thinks nothing happened. The server receives your edited request as gospel. The free Community Edition includes the three essentials: Proxy (capture), Repeater (edit and resend) and Intruder (automated payload firing). How Request Interception Works The flow is simple and devastating: Step 1 — Capture: Burp's proxy holds every outbound request from your browser. Clicking "buy" or "transfer" pauses mid-air inside Burp. Step 2 — Edit: The tester changes raw details — a price from 10 to 1 , a user ID from 4821 to 4822 , a role from user to admin . Step 3 — Forward: The manipulated request goes to the server, which — if poorly coded — trusts it completely. Repeater & Intruder: Edit and Resend Repeater is the manual workbench: take one captured request, tweak it, resend, study the response, repeat until something breaks. Intruder automates that loop — feeding lists of payloads (account IDs, fuzz strings, common passwords) through a request template to find the one combination the server mishandles. One Edited Request Can Hijack an Account Broken access control — the server trusting whatever ID the browser sends — is consistently a top web vulnerability. A single changed parameter can display another user's data, reset their password, or escalate a regular account to admin. Industry estimates put losses from broken authorization flaws at tens of millions of dollars yearly . 3 Defenses That Actuall
All blogs · All tools · Sitemap