Burp Suite cheat sheet for netadmins/sysadmins
The ultimate web app security testing toolkit for penetration testers and security professionalsβperfect for intercepting, analyzing, and exploiting web vulnerabilities.
This cheat sheet covers:
β Proxy setup & traffic interception β Vulnerability scanning & exploitation β Repeater & Intruder techniques β Tips for efficient web app testing
Burp Suite Cheat Sheet
Proxy & Interception, Vulnerability Scanning, and Repeater & Intruder Techniques
1. Setup & Configuration
Launch Burp Suite
bash
burpsuite # Community/Pro edition
Configure Browser Proxy
Proxy IP:
127.0.0.1
Port:
8080
(default)Disable HTTPS warnings (install Burp CA certificate)
Import CA Certificate
Visit
http://burp
in browserDownload
cacert.der
Import into browser/OS trust store
2. Proxy & Interception
Intercept HTTP/S Requests
Turn Intercept on/off (
Proxy β Intercept
)Forward (send request)
Drop (block request)
Modify Requests
Edit headers, parameters, cookies
Right-click β Send to Repeater/Intruder
Match & Replace Rules
Proxy β Options β Match and Replace
Auto-modify requests/responses (e.g., User-Agent, cookies)
3. Scanner (Pro Feature)
Run Automated Scan
Target β Site map
β Right-click β ScanSelect scan type (Active/Passive)
Configure Scan Settings
Scanner β Scan queue
β Fine-tune insertion points
4. Repeater
Manual Request Testing
Send requests, modify, and replay
Compare responses (
< >
diff view)
Tips
Use Ctrl+R to quickly send to Repeater
Enable Follow Redirects for chain testing
5. Intruder (Automated Attacks)
Attack Types
Sniper: Single payload, one position
Battering ram: Single payload, multiple positions
Pitchfork: Multiple payloads (parallel)
Cluster bomb: Multiple payloads (combinatorial)
Payload Sets
Simple list, numbers, dates, custom regex
Load from file (
Payloads β Load
)
Example: Brute-Force Login
Send request to Intruder
Mark
username
&password
as payload positionsLoad wordlists β Start attack
6. Other Modules
Sequencer (Session Token Analysis)
Proxy β HTTP history
β Right-click β Send to SequencerCheck randomness of tokens/cookies
Decoder (Data Transformation)
Encode/decode Base64, URL, HTML, hex, etc.
Smart decode (auto-detect encoding)
Comparer (Diff Tool)
Compare responses byte-by-byte
7. Tips & Tricks
Bypass Client-Side Validation
Intercept β Modify input limits (
maxlength
, JS checks)
Test for IDOR
Change IDs in requests (e.g.,
user_id=100 β 101
)
Find Hidden Endpoints
Target β Site map
β Spider featureCheck
robots.txt
, JS files
Quick Reference Table
Shortcut
Action
Ctrl+Shift+D
Send to Repeater
Ctrl+I
Send to Intruder
Ctrl+R
Send to Scanner (Pro)
Alt+Q
Switch to Quick send (Repeater)
Pro Tips:
β Use Burp Collaborator (Pro) for blind SSRF/RCE detection
β Save projects (Project β Save
) for long-term testing
β Combine with OAuth testing extensions for API security
Learn More:
Help β Burp Suite Documentation
Last updated