burpsuite-project-parser

burpsuite-project-parser is a skill for Codex from OutlineDriven/outline-driven-development. It costs 49 tokens per session (1,744 once invoked), scanned A, original, Apache-2.0.

A read-only tool for examining Burp Suite project files, which store captured web traffic and security-test findings. It returns size-limited JSON and treats findings as indicators that need confirmation.

In plain words
What is it for?
Use it to inspect request or response details, search captured traffic, and extract Burp audit items.
Why use it?
It lets you search saved requests, responses, site maps, and audit items without modifying the project.

Skill for Codex

Written for Codex: agents/openai.yaml present.

Good fit Use it to inspect request or response details, search captured traffic, and extract Burp audit items.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/outlinedriven/outline-driven-development/burpsuite-project-parser
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add OutlineDriven/outline-driven-development --skill burpsuite-project-parser
Clone the repo
git clone --depth 1 https://github.com/OutlineDriven/outline-driven-development

Made for: Codex.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for burpsuite-project-parser

README.md
[![agentmods](https://agentmods.dev/badge/skills/outlinedriven/outline-driven-development/burpsuite-project-parser.svg)](https://agentmods.dev/skills/outlinedriven/outline-driven-development/burpsuite-project-parser)
Your own site
<a href="https://agentmods.dev/skills/outlinedriven/outline-driven-development/burpsuite-project-parser"><img src="https://agentmods.dev/badge/skills/outlinedriven/outline-driven-development/burpsuite-project-parser.svg" alt="Measured on agentmods" height="20"></a>
Per session 49 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,744 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe. Third-party audits
  • NVIDIA SkillSpector warn 7 Sept 2026
SkillSpector: 2 findings, up to high

These are SkillSpector’s own severities. On a checked sample its high-severity flags on skills were ~96% false positives — a documented command, a public API, a “never do X” rule — so we show them as a caution to read, not a verdict. Why →

  • high YARA Match · line 2
    YARA rule matched a hack tool or exploit indicator (offensive tools, reconnaissance, privilege escalation, or exploit frameworks).
    Fix: Remove offensive tool references and exploit code. Legitimate agent skills should not contain penetration testing tools, exploit frameworks, or reconnaissance utilities.
  • medium Output Handling · line 75
    Output size or generation rate is not bounded. Unbounded output enables denial-of-service through resource exhaustion, log flooding, or context-window stuffing.
    Fix: Set explicit limits on output length, generation count, and rate. Use max_tokens and truncation to prevent unbounded output.
How audits are shown
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00049 $0.01744
Opus 5 $0.00024 $0.00872
Sonnet 5 $0.00010 $0.00349
Haiku 4.5 $0.00005 $0.00174

Measured yesterday against content hash 939b1363b341, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-07, from the pricing page.

Security

Grade A, and why

burpsuite-project-parser scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured yesterday.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

.devin/skills/burpsuite-project-parser/SKILL.md · 76 lines

How it starts

The opening of the file, as written. The whole thing — 76 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Burp Suite project parser

Contract

Field Bound contract
Trigger A user asks to search or analyze a Burp Suite .burp project, extract audit items, inspect request or response metadata, or search captured traffic.
Authority Read-only: the .burp project is read through Burp Suite Professional; no project file is modified. No remote mutation.
Side effect The user-selected local .burp project is read through Burp Suite Professional; output is capped and filtered in parsed mode, or streamed raw in stream mode.
Done The requested operation returns the correct JSON output for the selected mode: size-checked and truncated in parsed mode, or raw streamed in stream mode.

Inputs

  • Project file path (required): absolute path to a .burp project file.
  • Operation (required): one of auditItems, proxyHistory, siteMap, responseHeader='regex', responseBody='regex', or a sub-component filter such as proxyHistory.request.headers.
  • Mode (required): parsed (default) or stream. stream returns the parser output unchanged to stdout without body truncation.
  • BURP_JAVA (required if not at default platform path): path to Burp Suite Professional's bundled Java executable.
  • BURP_JAR (required if not at default platform path): path to burpsuite_pro.jar.
  • jq (required for parsed mode): used for filtering, truncating body fields, and triaging audit items.

Procedure

  1. Verify prerequisites. Confirm Burp Suite Professional is installed, the burpsuite-project-file-parser extension (github.com/BuffaloWill/burpsuite-project-file-parser) is loaded, and BURP_JAVA, BURP_JAR, and jq resolve to existing executables. BURP_JAVA and BURP_JAR default to macOS /Applications/Burp Suite Professional.app/Contents/Resources/... and Linux /opt/BurpSuiteProfessional/.... If any prerequisite is missing, stop and report it. This skill does not parse .burp files directly. Done when: Burp Suite, the extension, Java, JAR, and jq are confirmed present.
  2. Confirm the project file exists at the supplied path. If not, stop and report the missing file. Done when: the project file is confirmed.
  3. If no operation argument is supplied, print usage and stop. Done when: at least one operation is present or usage is printed.
  4. Mode parsed: preflight result size by running the operation through wc -cl:
    "$BURP_JAVA" -Djava.awt.headless=true -jar "$BURP_JAR" \
      --project-file="$PROJECT_FILE" <operation> | wc -cl
    
    The -Djava.awt.headless=true flag must precede -jar. Interpret both metrics: lines under 50 and bytes under 50 KB are safe; lines 50 to 200 or bytes 50 to 200 KB require narrowing; lines over 200 or bytes over 200 KB require further narrowing; lines over 1000 or bytes over 1 MB require stopping and refining. A single large response on one line shows a high byte count but only one line; the byte check catches this. Done when: size is classified as safe, needs narrowing, or stop-and-refine.
  5. Mode parsed: if the size check is too broad, narrow the operation. Replace full proxyHistory or siteMap with sub-component filters (proxyHistory.request.headers, proxyHistory.response.headers, siteMap.request.headers, siteMap.response.headers). Tighten regex patterns from .* to specific content. Pipe through jq with a select filter before retrieving full output. Done when: the operation is narrowed to pass the size check.
  6. Mode parsed: retrieve the narrowed result with a hard byte cap of 50 KB:
    "$BURP_JAVA" -Djava.awt.headless=true -jar "$BURP_JAR" \
      --project-file="$PROJECT_FILE" <operation> | head -c 50000
    
    Done when: the narrowed result is retrieved with a 50 KB byte cap.
  7. Mode parsed: truncate body fields and triage audit items using jq. For any operation returning a .body field, truncate each body to 1000 characters before it enters context:
    ... | head -n 20 | jq -c '.body = (.body[:1000] + "...[TRUNCATED]")'
    
    For audit items, triage by severity and confidence:
    ... | jq 'select(.severity == "High")' | jq 'select(.confidence == "Certain" or .confidence == "Firm")'
    
    Present Burp findings as indicators requiring manual validation, not proven vulnerabilities. Note that proxy history may be incomplete due to Burp scope filters, intercept settings, or traffic not routed through the proxy. Done when: every body field is truncated, audit items are triaged, and findings are presented as indicators requiring validation.
  8. Mode stream: run the parser by executing the resolved Java binary headless against the resolved JAR, passing --project-file=<project-file> followed by every operation argument verbatim:
    <BURP_JAVA> -Djava.awt.headless=true -jar <BURP_JAR> --project-file=<PROJECT_FILE> <operation...>
    
    Stream the JSON output (one object per line) to stdout unchanged. Do not parse, filter, or mutate the output. Done when: the parser is invoked and its output is streamed.

Read the full file on GitHub · 76 lines

Files

What ships with it

1 file beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. yesterday Changed · +6 lines · -22 tokens per session 939b1363b341
  2. 4d ago First seen · 70 lines · 71 tokens per session scan A 26b93de3c58f

Subscribe to this mod's changes

burpsuite-project-parser is a skill published in the GitHub repository OutlineDriven/outline-driven-development (52 stars, last pushed 2d ago), licensed Apache-2.0. It adds 49 tokens to every session and 1,744 once invoked, about $0.0002 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-09-03.

Related

Other skills, from other repositories

audit-project

Run an iterative multi-agent code audit until critical and high findings are resolved. Use when the user says "audit my code", "find all the bugs", "deep code audit", "iterative review", or "review until clean".

OutlineDriven/odin-claude-plugin · 50 tokens

duet

Use when the user invokes /duet, says "pair with me", or faces aesthetic, architectural, or irreversible decisions.

OutlineDriven/odin-claude-plugin · 28 tokens

goal-prompt-drafting

Use when asked to draft copy-ready /goal objectives for long-running agents; returns one normalized one-line objective with measurable end state, grounded proof, easy-out invariants, a stop clause, and a Missing list. Not for source or remote-system changes.

OutlineDriven/odin-claude-plugin · 57 tokens

handoff-prompt

Use when the user asks for a handoff, delegation, or clipboard-ready prompt for another agent: a standalone path-free prompt copied to the clipboard, confirmed by title. Not for session-snapshot briefs — use handoff; never remote, credential, publish, deploy, or irreversible.

OutlineDriven/odin-claude-plugin · 62 tokens

publish-branch

Use when asked to publish the checked-out branch: commit and push it on whatever branch it is, the default branch included. Not for creating branches, PRs, force pushes, or pushing any other branch; when the request excludes the default branch, use commit-push-current.

OutlineDriven/odin-claude-plugin · 60 tokens

drill

Use when a concept needs practising rather than explaining: run a scaffolded exercise from worked example to independent problem, quiz the learner, run spaced recall over what they cleared, or probe for the gaps blocking what they want next. For explanation, use explain-concept; for an end-to-end build, use capstone.

OutlineDriven/odin-claude-plugin · 67 tokens