agentic-actions-audito…
Audits GitHub Actions workflows for security vulnerabilities in AI agent integrations including Claude Code Action, Gemini CLI, OpenAI Codex, and GitHub AI…
Searches and explores Burp Suite project files (.burp) from the command line. Use when searching response headers or bodies with regex patterns, extracting security audit findings, dumping proxy history or site map data, or analyzing HTTP traffic captured in a Burp project.
$ npx -y skills add trailofbits/skills --skill burpsuite-project-parser --agent claude-codeHow it fires
How this skill gets triggered: by you, by Claude, or both.
/burpsuite-project-parserContext preview
The summary Claude sees to decide when to auto-load this skill.
Searches and explores Burp Suite project files (.burp) from the command line. Use when searching response headers or bodies with regex patterns, extracting security audit findings, dumping proxy history or site map data, or analyzing HTTP traffic captured in a Burp project.
name: burpsuite-project-parser description: Searches and explores Burp Suite project files (.burp) from the command line. Use when searching response headers or bodies with regex patterns, extracting security audit findings, dumping proxy history or site map data, or analyzing HTTP traffic captured in a Burp project. allowed-tools: Bash Read
Search and extract data from Burp Suite project files using the burpsuite-project-file-parser extension.
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
Use the wrapper script:
{baseDir}/scripts/burp-search.sh /path/to/project.burp [FLAGS]The script uses environment variables for platform compatibility:
**Check the exit code. Empty output is not a clean result.** Burp ignores flags it does not recognise, so without the parser extension it starts normally and drops the query — which looks exactly like a search that matched nothing.
| Exit | Meaning | What to do | |------|---------|------------| | 0 | Output produced | Proceed | | 1 | Bad usage, or a missing file, Java or JAR | Read the message; fix the path | | 3 | No output at all | **Do not report this as "nothing found".** An empty result set and an unloaded extension are indistinguishable from here. Run the control query below to tell them apart | | 4 | Output was not JSON | The extension is not loaded and Burp ignored the flags. Install it before trusting any result |
Anything other than 0 means the search result is unverified, and saying "no matching traffic" on the strength of it is a false negative reported as a clean finding.
Exit 3 is the common case — most narrowly-scoped regexes legitimately match nothing — so it needs a resolution you can carry out yourself. You have `Bash` and `Read`; Burp runs headless here, so there is no Extensions tab to open and no GUI to inspect. Re-running the same query just returns 3 again.
Run a **control query** instead: a selector broad enough that it must return rows if the parser is working at all, against the same project file. Use the sub-component filter, not the bare selector — a control is still a query, and the rules above apply to it unchanged.
{baseDir}/scripts/burp-search.sh project.burp proxyHistory.request.headers | head -c 2000`proxyHistory.request.headers` is the right control precisely because it is broad but bounded: it covers every record in the project, at under 1KB each. Bare `proxyHistory` would answer the same question and is banned above for a reason — one record with bodies can be megabytes, and `head -n 1` does not stop that, it delivers exactly one of them in full.
| Control result | What it means | What to do | |---|---|---| | Rows on stdout | The parser works | Your narrower query genuinely matched nothing. Report that as a result | | Exit 3 again | Nothing comes back at all | Either the extension is not loaded, or this project holds no proxy history. Check you named the right project file and that it is non-empty, then ask the user to confirm `burpsuite-project-file-parser` under Burp Suite → Extensions | | Exit 4 | Burp started and dropped the flags | The extension is not loaded. Say so; do not report on traffic |
**Run the control before concluding anything about the project's traffic.** Assuming the extension is loaded is exactly how an unverified empty result becomes a clean bill of health — and asking the user to check the GUI is a legitimate answer where the control is inconclusive. Guessing is not.
**Through a pipe the exit code is not yours to read.** A pipeline reports the status of its *last* command, and nearly every example here ends in `| jq`, `| head` or `| wc -cl` — so `$?` is `head`'s 0, not the script's 3. Two reliable signals:
`Error: Burp produced output, but not one JSON object` is the answer; no such block means the run was fine.
set -o pipefail
{baseDir}/scripts/burp-search.sh project.burp auditItems | jq -c 'select(.severity == "High")'
echo "exit: $?"Non-JSON output never reaches stdout, so a downstream `grep` or `jq` cannot match a Burp startup banner and mistake it for data.
See [Platform Configuration](#platform-configuration) for setup instructions.
**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.
| 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.respons
A Claude Code plugin marketplace from Trail of Bits providing skills to enhance AI-assisted security analysis, testing, and development workflows. Codex can load this marketplace through its Claude marketplace compatibility.
Audits GitHub Actions workflows for security vulnerabilities in AI agent integrations including Claude Code Action, Gemini CLI, OpenAI Codex, and GitHub AI…
Understand a codebase before looking for bugs in it - what each function assumes, what it guarantees, and what it depends on elsewhere. Use when starting an…
Scans Algorand smart contracts for 11 common vulnerabilities including rekeying attacks, unchecked transaction fees, missing field validations, and access…
Prepares codebases for security review using Trail of Bits' checklist. Helps set review goals, runs static analysis tools, increases test coverage, removes…
Scans Cairo/StarkNet smart contracts for 6 critical vulnerabilities including felt252 arithmetic overflow, L1-L2 messaging issues, address conversion problems,…
Systematic code maturity assessment using Trail of Bits' 9-category framework. Analyzes codebase for arithmetic safety, auditing practices, access controls,…