burpsuite-project-parser

安全 社区
解读按原文结构重写,命令、链接、术语均保留;右侧可核对作者原始 SKILL.md

方法与流程

  • Default Approach:Start with headers, not bodies: Only fetch bodies for specific URLs after reviewing headers, and ALWAYS truncate: 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.
  • Step 1: Always Check Size First:Before any search, check BOTH record count AND byte size: The wc -cl output shows: <bytes> <lines> (e.g., 524288 42 means 512KB across 42 records). Interpret the results - BOTH must pass:
  • Step 2: Refine Broad Searches:If count/size is too high: Use sub-component filters (see table above): Narrow regex patterns:

适用与边界

  • 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
  • Dump Proxy History (AVOID):NEVER use this directly. Use sub-component filters instead: proxyHistory.request.headers proxyHistory.response.headers
  • Dump Site Map (AVOID):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.

原文中的明确线索

  • 要点:「delegates parsing to Burp Suite Professional」、「Required」、「Burp Suite Professional」、「burpsuite-project-file-parser extension」、「Install the extension」、「ALWAYS use sub-component filters instead of full dumps.」、「LARGE - avoid」、「Start with headers, not bodies」
  • 文件与命令BURPJAVABURPJARproxyHistorysiteMapproxyHistory.request.headersproxyHistory.request.bodyproxyHistory.response.headersproxyHistory.response.body

流狐整理:以上内容来自当前 SKILL.md 的章节与原词;未补写作者没有声明的工具、兼容性或能力。

流狐档案 作者与许可取自来源;运行、权限和网络为流狐检测或估算
流狐分类
安全
作者声明 Agent
未找到明确声明;不据此推断已兼容或已测试
静态检查
88 / 100 · 启发式扫描,不代表运行安全
作者 / 版本 / 许可
@trailofbits · 未声明 license
流狐 Token 估算
较高消耗
流狐接入估算
需简单配置
是否需要外部 API Key
未发现要求
检测到的系统要求
macOS · Linux · Windows
底层运行要求
未声明
检测到的文件与系统行为
  • 只读
  • 允许写入 / 修改
  • Shell 执行
  • 读取环境变量
检测到的网络行为
允许外网请求
安装命令数
无(仅作为资料)

档案由构建时根据 SKILL.md 与安装命令自动衍生,可能与作者实际意图存在差异。

需要注意: 未限定 allowed-tools,默认拥有全部工具权限。

输出预览 burpsuite-project-parser.preview
# Step 3: Always Truncate Output

# 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

讨论

基于 GitHub Discussions。登录 GitHub 即可参与讨论、点赞、订阅更新。