burpsuite-project-parser
Install this skill
npx skills add trailofbits/skillsWorks across Claude Code, Cursor, Codex, Copilot & Antigravity
The burpsuite-project-parser facilitates automated data retrieval from Burp Suite Professional project files. By interacting with the underlying Java-based burpsuite-project-file-parser extension, this skill enables programmatic access to proxy history, site maps, and vulnerability audit findings. It serves as an interface for querying captured HTTP traffic via command-line patterns rather than manual UI navigation. The tool emphasizes safe data extraction through granular sub-component filters, ensuring that large-scale traffic data does not overwhelm system memory or context windows. Users can apply regex-based searches against request and response headers or bodies, provided they follow strict truncation protocols for payload retrieval. It acts as an bridge between static project files and automated security analysis workflows, prioritizing targeted information gathering over exhaustive data dumping.
When to Use This Skill
- •Identifying specific server technologies via response header signatures
- •Extracting security findings from a completed penetration test project
- •Searching for hardcoded secrets or patterns within captured response bodies
- •Mapping application site structure from archived traffic data
How to Invoke This Skill
Example prompts that trigger this skill in Claude Code, Cursor, or Antigravity:
- “Search my Burp project file for specific regex patterns
- “Extract vulnerability findings from the Burp Suite project
- “Find all server headers in the proxy history
- “Scan the site map for specific URL structures
- “List security audit items found in the project
Pro Tips
- 💡Ensure `BURP_JAVA` and `BURP_JAR` environment variables are correctly configured for seamless execution, especially in containerized or CI/CD environments.
- 💡Combine this skill with data processing or reporting skills (e.g., for JSON/CSV output) to fully automate the generation of security reports from extracted Burp data.
- 💡Familiarize yourself with the full range of command-line flags available for the underlying `burpsuite-project-file-parser` extension to unlock advanced filtering and extraction capabilities.
What this skill does
- •Execute regex-based searches against HTTP headers and bodies
- •Extract vulnerability audit findings and severity reports
- •Filter proxy history and site map data by specific components
- •Export metadata for automated analysis while maintaining context integrity
When not to use it
- ✕When raw manual inspection via the Burp Suite GUI is faster or more intuitive
- ✕When parsing extremely large files where even granular filters exceed memory limits
- ✕When the objective is to modify or edit the project file (this is read-only)
Example workflow
- Verify the presence of Burp Suite Professional and the parser extension
- Check the total size of the targeted component using 'wc -cl'
- Search specifically for headers to identify interesting traffic subsets
- Retrieve body content using targeted regex strings
- Truncate all body outputs to under 1000 characters before inclusion in the final report
Prerequisites
- –Burp Suite Professional installed
- –burpsuite-project-file-parser extension JAR installed in Burp
- –Path to Java executable and Burp Suite jar defined in environment variables
Pitfalls & limitations
- !Retrieving full body content often leads to context window overflow
- !Failing to filter by sub-component results in gigabyte-scale data dumps
- !Lack of truncation on large payloads renders output unreadable
- !Attempting to run searches without checking initial record counts can cause command timeouts
FAQ
How it compares
Unlike manual GUI analysis which is interactive and visual, this skill enables batch-scripted extraction and automated regex filtering across thousands of requests simultaneously.
📄 Full skill instructions — original source: trailofbits/skills
Search and extract data from Burp Suite project files using the burpsuite-project-file-parser extension.
## When to Use
- Searching response headers or bodies with regex patterns
- Extracting security audit findings from Burp projects
- Dumping proxy history or site map data
- Analyzing HTTP traffic captured in a Burp project file
## Prerequisites
This skill **delegates parsing to Burp Suite Professional** - it does not parse .burp files directly.
**Required:**
1. **Burp Suite Professional** - Must be installed ([portswigger.net](https://portswigger.net/burp/pro))
2. **burpsuite-project-file-parser extension** - Provides CLI functionality
**Install the extension:**
1. Download from [github.com/BuffaloWill/burpsuite-project-file-parser](https://github.com/BuffaloWill/burpsuite-project-file-parser)
2. In Burp Suite: Extender → Extensions → Add
3. Select the downloaded JAR file
## Quick Reference
Use the wrapper script:
{baseDir}/scripts/burp-search.sh /path/to/project.burp [FLAGS]The script uses environment variables for platform compatibility:
-
BURP_JAVA: Path to Java executable-
BURP_JAR: Path to burpsuite_pro.jarSee [Platform Configuration](#platform-configuration) for setup instructions.
## Sub-Component Filters (USE THESE)
**ALWAYS use sub-component filters instead of full dumps.** Full
proxyHistory or siteMap can return gigabytes of data. Sub-component filters return only what you need.### Available Filters
| Filter | Returns | Typical Size |
|--------|---------|--------------|
|
proxyHistory.request.headers | Request line + headers only | Small (< 1KB/record) ||
proxyHistory.request.body | Request body only | Variable ||
proxyHistory.response.headers | Status + headers only | Small (< 1KB/record) ||
proxyHistory.response.body | Response body only | **LARGE - avoid** ||
siteMap.request.headers | Same as above for site map | Small ||
siteMap.request.body | | Variable ||
siteMap.response.headers | | Small ||
siteMap.response.body | | **LARGE - avoid** |### Default Approach
**Start with headers, not bodies:**
# GOOD - headers only, safe to retrieve
{baseDir}/scripts/burp-search.sh project.burp proxyHistory.request.headers | head -c 50000
{baseDir}/scripts/burp-search.sh project.burp proxyHistory.response.headers | head -c 50000
# BAD - full records include bodies, can be gigabytes
{baseDir}/scripts/burp-search.sh project.burp proxyHistory # NEVER DO THIS**Only fetch bodies for specific URLs after reviewing headers, and ALWAYS truncate:**
# 1. First, find interesting URLs from headers
{baseDir}/scripts/burp-search.sh project.burp proxyHistory.response.headers | \
jq -r 'select(.headers | test("text/html")) | .url' | head -n 20
# 2. Then search bodies with targeted regex - MUST truncate body to 1000 chars
{baseDir}/scripts/burp-search.sh project.burp "responseBody='.*specific-pattern.*'" | \
head -n 10 | jq -c '.body = (.body[:1000] + "...[TRUNCATED]")'**HARD RULE: Body content > 1000 chars must NEVER enter context.** If the user needs full body content, they must view it in Burp Suite's UI.
## Regex Search Operations
### Search Response Headers
responseHeader='.*regex.*'Searches all response headers. Output:
{"url":"...", "header":"..."}Example - find server signatures:
responseHeader='.*(nginx|Apache|Servlet).*' | head -c 50000### Search Response Bodies
responseBody='.*regex.*'**MANDATORY: Always truncate body content to 1000 chars max.** Response bodies can be megabytes each.
# REQUIRED format - always truncate .body field
{baseDir}/scripts/burp-search.sh project.burp "responseBody='.*<form.*action.*'" | \
head -n 10 | jq -c '.body = (.body[:1000] + "...[TRUNCATED]")'**Never retrieve full body content.** If you need to see more of a specific response, ask the user to open it in Burp Suite's UI.
## Other Operations
### Extract Audit Items
auditItemsReturns all security findings. Output includes: name, severity, confidence, host, port, protocol, url.
**Note:** Audit items are small (no bodies) - safe to retrieve with
head -n 100.### Dump Proxy History (AVOID)
proxyHistory**NEVER use this directly.** Use sub-component filters instead:
-
proxyHistory.request.headers-
proxyHistory.response.headers### Dump Site Map (AVOID)
siteMap**NEVER use this directly.** Use sub-component filters instead.
## Output Limits (REQUIRED)
**CRITICAL: Always check result size BEFORE retrieving data.** A broad search can return thousands of records, each potentially megabytes. This will overflow the context window.
### Step 1: Always Check Size First
Before any search, check BOTH record count AND byte size:
# Check record count AND total bytes - never skip this step
{baseDir}/scripts/burp-search.sh project.burp proxyHistory | wc -cl
{baseDir}/scripts/burp-search.sh project.burp "responseHeader='.*Server.*'" | wc -cl
{baseDir}/scripts/burp-search.sh project.burp auditItems | wc -clThe
wc -cl output shows: <bytes> <lines> (e.g., 524288 42 means 512KB across 42 records).**Interpret the results - BOTH must pass:**
| Metric | Safe | Narrow search | Too broad | STOP |
|--------|------|---------------|-----------|------|
| **Lines** | < 50 | 50-200 | 200+ | 1000+ |
| **Bytes** | < 50KB | 50-200KB | 200KB+ | 1MB+ |
**A single 10MB response on one line will show high byte count but only 1 line - the byte check catches this.**
### Step 2: Refine Broad Searches
If count/size is too high:
1. **Use sub-component filters** (see table above):
# Instead of: proxyHistory (gigabytes)
# Use: proxyHistory.request.headers (kilobytes)2. **Narrow regex patterns:**
# Too broad (matches everything):
responseHeader='.*'
# Better - target specific headers:
responseHeader='.*X-Frame-Options.*'
responseHeader='.*Content-Security-Policy.*'3. **Filter with jq before retrieving:**
# Get only specific content types
{baseDir}/scripts/burp-search.sh project.burp proxyHistory.response.headers | \
jq -c 'select(.url | test("/api/"))' | head -n 50### Step 3: Always Truncate Output
Even after narrowing, always pipe through truncation:
# ALWAYS use head -c to limit total bytes (max 50KB)
{baseDir}/scripts/burp-search.sh project.burp proxyHistory.request.headers | head -c 50000
# For body searches, truncate each JSON object's body field:
{baseDir}/scripts/burp-search.sh project.burp "responseBody='pattern'" | \
head -n 20 | jq -c '.body = (.body | if length > 1000 then .[:1000] + "...[TRUNCATED]" else . end)'
# Limit both record count AND byte size:
{baseDir}/scripts/burp-search.sh project.burp auditItems | head -n 50 | head -c 50000**Hard limits to enforce:**
-
head -c 50000 (50KB max) on ALL output- **Truncate
.body fields to 1000 chars - MANDATORY, no exceptions**jq -c '.body = (.body[:1000] + "...[TRUNCATED]")'**Never run these without counting first AND truncating:**
-
proxyHistory / siteMap (full dumps - always use sub-component filters)-
responseBody='...' searches (bodies can be megabytes each)- Any broad regex like
.* or .+## Investigation Workflow
1. **Identify scope** - What are you looking for? (specific vuln type, endpoint, header pattern)
2. **Search audit items first** - Start with Burp's findings:
{baseDir}/scripts/burp-search.sh project.burp auditItems | jq 'select(.severity == "High")'3. **Check confidence scores** - Filter for actionable findings:
... | jq 'select(.confidence == "Certain" or .confidence == "Firm")'4. **Extract affected URLs** - Get the attack surface:
... | jq -r '.url' | sort -u5. **Search raw traffic for context** - Examine actual requests/responses:
{baseDir}/scripts/burp-search.sh project.burp "responseBody='pattern'"6. **Validate manually** - Burp findings are indicators, not proof. Verify each one.
## Understanding Results
### Severity vs Confidence
Burp reports both **severity** (High/Medium/Low) and **confidence** (Certain/Firm/Tentative). Use both when triaging:
| Combination | Meaning |
|-------------|---------|
| High + Certain | Likely real vulnerability, prioritize investigation |
| High + Tentative | Often a false positive, verify before reporting |
| Medium + Firm | Worth investigating, may need manual validation |
A "High severity, Tentative confidence" finding is frequently a false positive. Don't report findings based on severity alone.
### When Proxy History is Incomplete
Proxy history only contains what Burp captured. It may be missing traffic due to:
- **Scope filters** excluding domains
- **Intercept settings** dropping requests
- **Browser traffic** not routed through Burp proxy
If you don't find expected traffic, check Burp's scope and proxy settings in the original project.
### HTTP Body Encoding
Response bodies may be gzip compressed, chunked, or use non-UTF8 encoding. Regex patterns that work on plaintext may silently fail on encoded responses. If searches return fewer results than expected:
- Check if responses are compressed
- Try broader patterns or search headers first
- Use Burp's UI to inspect raw vs rendered response
## Rationalizations to Reject
Common shortcuts that lead to missed vulnerabilities or false reports:
| Shortcut | Why It's Wrong |
|----------|----------------|
| "This regex looks good" | Verify on sample data first—encoding and escaping cause silent failures |
| "High severity = must fix" | Check confidence score too; Burp has false positives |
| "All audit items are relevant" | Filter by actual threat model; not every finding matters for every app |
| "Proxy history is complete" | May be filtered by Burp scope/intercept settings; you see only what Burp captured |
| "Burp found it, so it's a vuln" | Burp findings require manual verification—they indicate potential issues, not proof |
## Output Format
All output is JSON, one object per line. Pipe to
jq for formatting:{baseDir}/scripts/burp-search.sh project.burp auditItems | jq .Filter with grep:
{baseDir}/scripts/burp-search.sh project.burp auditItems | grep -i "sql injection"## Examples
Search for CORS headers (with byte limit):
{baseDir}/scripts/burp-search.sh project.burp "responseHeader='.*Access-Control.*'" | head -c 50000Get all high-severity findings (audit items are small, but still limit):
{baseDir}/scripts/burp-search.sh project.burp auditItems | jq -c 'select(.severity == "High")' | head -n 100Extract just request URLs from proxy history:
{baseDir}/scripts/burp-search.sh project.burp proxyHistory.request.headers | jq -r '.request.url' | head -n 200Search response bodies (MUST truncate body to 1000 chars):
{baseDir}/scripts/burp-search.sh project.burp "responseBody='.*password.*'" | \
head -n 10 | jq -c '.body = (.body[:1000] + "...[TRUNCATED]")'## Platform Configuration
The wrapper script requires two environment variables to locate Burp Suite's bundled Java and JAR file.
### macOS
export BURP_JAVA="/Applications/Burp Suite Professional.app/Contents/Resources/jre.bundle/Contents/Home/bin/java"
export BURP_JAR="/Applications/Burp Suite Professional.app/Contents/Resources/app/burpsuite_pro.jar"### Windows
$env:BURP_JAVA = "C:\Program Files\BurpSuiteProfessional\jre\bin\java.exe"
$env:BURP_JAR = "C:\Program Files\BurpSuiteProfessional\burpsuite_pro.jar"### Linux
export BURP_JAVA="/opt/BurpSuiteProfessional/jre/bin/java"
export BURP_JAR="/opt/BurpSuiteProfessional/burpsuite_pro.jar"Add these exports to your shell profile (
.bashrc, .zshrc, etc.) for persistence.### Manual Invocation
If not using the wrapper script, invoke directly:
"$BURP_JAVA" -jar -Djava.awt.headless=true "$BURP_JAR" \
--project-file=/path/to/project.burp [FLAGS]How to Use This Skill Unit
Option A: Project-Specific (Recommended)
- Click "Download" above
- In your project, create the directory:
.agent/skills/skills/ - Save the file as
SKILL.md - The agent will automatically discover the skill based on its description.
Option B: Global Installation (All Agents)
Save the file to these locations to make it available across all projects:
- Claude Code:
~/.claude/skills/trailofbits/skills/skills/SKILL.md - Cursor:
~/.cursor/skills/trailofbits/skills/skills/SKILL.md - Antigravity:
~/.gemini/antigravity/skills/trailofbits/skills/skills/SKILL.md
🚀 Install with CLI:npx skills add trailofbits/skills
