[{"data":1,"prerenderedAt":-1},["ShallowReactive",2],{"skill-trail-of-bits-burpsuite-project-parser":3,"mdc--evxv1u-key":35,"related-repo-trail-of-bits-burpsuite-project-parser":2703,"related-org-trail-of-bits-burpsuite-project-parser":2801},{"slug":4,"name":4,"fn":5,"description":6,"org":7,"tags":12,"stars":23,"repoUrl":24,"updatedAt":25,"license":26,"forks":27,"topics":28,"repo":30,"sourceUrl":33,"mdContent":34},"burpsuite-project-parser","parse Burp Suite project files","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.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},"trail-of-bits","Trail of Bits","https:\u002F\u002Fpexgzepcugksgbtrxkhf.supabase.co\u002Fstorage\u002Fv1\u002Fobject\u002Fpublic\u002Forg-logos\u002Ftrail-of-bits.png","trailofbits",[13,17,20],{"name":14,"slug":15,"type":16},"Security","security","tag",{"name":18,"slug":19,"type":16},"Audit","audit",{"name":21,"slug":22,"type":16},"CLI","cli",6139,"https:\u002F\u002Fgithub.com\u002Ftrailofbits\u002Fskills","2026-07-17T06:05:33.198077",null,541,[29],"agent-skills",{"repoUrl":24,"stars":23,"forks":27,"topics":31,"description":32},[29],"Trail of Bits Claude Code skills for security research, vulnerability detection, and audit workflows","https:\u002F\u002Fgithub.com\u002Ftrailofbits\u002Fskills\u002Ftree\u002FHEAD\u002Fplugins\u002Fburpsuite-project-parser\u002Fskills\u002Fburpsuite-project-parser","---\nname: burpsuite-project-parser\ndescription: 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.\nallowed-tools: Bash Read\n---\n\n# Burp Project Parser\n\nSearch and extract data from Burp Suite project files using the burpsuite-project-file-parser extension.\n\n## When to Use\n\n- Searching response headers or bodies with regex patterns\n- Extracting security audit findings from Burp projects\n- Dumping proxy history or site map data\n- Analyzing HTTP traffic captured in a Burp project file\n\n## Prerequisites\n\nThis skill **delegates parsing to Burp Suite Professional** - it does not parse .burp files directly.\n\n**Required:**\n1. **Burp Suite Professional** - Must be installed ([portswigger.net](https:\u002F\u002Fportswigger.net\u002Fburp\u002Fpro))\n2. **burpsuite-project-file-parser extension** - Provides CLI functionality\n\n**Install the extension:**\n1. Download from [github.com\u002FBuffaloWill\u002Fburpsuite-project-file-parser](https:\u002F\u002Fgithub.com\u002FBuffaloWill\u002Fburpsuite-project-file-parser)\n2. In Burp Suite: Extender → Extensions → Add\n3. Select the downloaded JAR file\n\n## Quick Reference\n\nUse the wrapper script:\n```bash\n{baseDir}\u002Fscripts\u002Fburp-search.sh \u002Fpath\u002Fto\u002Fproject.burp [FLAGS]\n```\n\nThe script uses environment variables for platform compatibility:\n- `BURP_JAVA`: Path to Java executable\n- `BURP_JAR`: Path to burpsuite_pro.jar\n\nSee [Platform Configuration](#platform-configuration) for setup instructions.\n\n## Sub-Component Filters (USE THESE)\n\n**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.\n\n### Available Filters\n\n| Filter | Returns | Typical Size |\n|--------|---------|--------------|\n| `proxyHistory.request.headers` | Request line + headers only | Small (\u003C 1KB\u002Frecord) |\n| `proxyHistory.request.body` | Request body only | Variable |\n| `proxyHistory.response.headers` | Status + headers only | Small (\u003C 1KB\u002Frecord) |\n| `proxyHistory.response.body` | Response body only | **LARGE - avoid** |\n| `siteMap.request.headers` | Same as above for site map | Small |\n| `siteMap.request.body` | | Variable |\n| `siteMap.response.headers` | | Small |\n| `siteMap.response.body` | | **LARGE - avoid** |\n\n### Default Approach\n\n**Start with headers, not bodies:**\n\n```bash\n# GOOD - headers only, safe to retrieve\n{baseDir}\u002Fscripts\u002Fburp-search.sh project.burp proxyHistory.request.headers | head -c 50000\n{baseDir}\u002Fscripts\u002Fburp-search.sh project.burp proxyHistory.response.headers | head -c 50000\n\n# BAD - full records include bodies, can be gigabytes\n{baseDir}\u002Fscripts\u002Fburp-search.sh project.burp proxyHistory  # NEVER DO THIS\n```\n\n**Only fetch bodies for specific URLs after reviewing headers, and ALWAYS truncate:**\n\n```bash\n# 1. First, find interesting URLs from headers\n{baseDir}\u002Fscripts\u002Fburp-search.sh project.burp proxyHistory.response.headers | \\\n  jq -r 'select(.headers | test(\"text\u002Fhtml\")) | .url' | head -n 20\n\n# 2. Then search bodies with targeted regex - MUST truncate body to 1000 chars\n{baseDir}\u002Fscripts\u002Fburp-search.sh project.burp \"responseBody='.*specific-pattern.*'\" | \\\n  head -n 10 | jq -c '.body = (.body[:1000] + \"...[TRUNCATED]\")'\n```\n\n**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.\n\n## Regex Search Operations\n\n### Search Response Headers\n```bash\nresponseHeader='.*regex.*'\n```\nSearches all response headers. Output: `{\"url\":\"...\", \"header\":\"...\"}`\n\nExample - find server signatures:\n```bash\nresponseHeader='.*(nginx|Apache|Servlet).*' | head -c 50000\n```\n\n### Search Response Bodies\n```bash\nresponseBody='.*regex.*'\n```\n**MANDATORY: Always truncate body content to 1000 chars max.** Response bodies can be megabytes each.\n\n```bash\n# REQUIRED format - always truncate .body field\n{baseDir}\u002Fscripts\u002Fburp-search.sh project.burp \"responseBody='.*\u003Cform.*action.*'\" | \\\n  head -n 10 | jq -c '.body = (.body[:1000] + \"...[TRUNCATED]\")'\n```\n\n**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.\n\n## Other Operations\n\n### Extract Audit Items\n```bash\nauditItems\n```\nReturns all security findings. Output includes: name, severity, confidence, host, port, protocol, url.\n\n**Note:** Audit items are small (no bodies) - safe to retrieve with `head -n 100`.\n\n### Dump Proxy History (AVOID)\n```bash\nproxyHistory\n```\n**NEVER use this directly.** Use sub-component filters instead:\n- `proxyHistory.request.headers`\n- `proxyHistory.response.headers`\n\n### Dump Site Map (AVOID)\n```bash\nsiteMap\n```\n**NEVER use this directly.** Use sub-component filters instead.\n\n## Output Limits (REQUIRED)\n\n**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.\n\n### Step 1: Always Check Size First\n\nBefore any search, check BOTH record count AND byte size:\n\n```bash\n# Check record count AND total bytes - never skip this step\n{baseDir}\u002Fscripts\u002Fburp-search.sh project.burp proxyHistory | wc -cl\n{baseDir}\u002Fscripts\u002Fburp-search.sh project.burp \"responseHeader='.*Server.*'\" | wc -cl\n{baseDir}\u002Fscripts\u002Fburp-search.sh project.burp auditItems | wc -cl\n```\n\nThe `wc -cl` output shows: `\u003Cbytes> \u003Clines>` (e.g., `524288 42` means 512KB across 42 records).\n\n**Interpret the results - BOTH must pass:**\n\n| Metric | Safe | Narrow search | Too broad | STOP |\n|--------|------|---------------|-----------|------|\n| **Lines** | \u003C 50 | 50-200 | 200+ | 1000+ |\n| **Bytes** | \u003C 50KB | 50-200KB | 200KB+ | 1MB+ |\n\n**A single 10MB response on one line will show high byte count but only 1 line - the byte check catches this.**\n\n### Step 2: Refine Broad Searches\n\nIf count\u002Fsize is too high:\n\n1. **Use sub-component filters** (see table above):\n   ```bash\n   # Instead of: proxyHistory (gigabytes)\n   # Use: proxyHistory.request.headers (kilobytes)\n   ```\n\n2. **Narrow regex patterns:**\n   ```bash\n   # Too broad (matches everything):\n   responseHeader='.*'\n\n   # Better - target specific headers:\n   responseHeader='.*X-Frame-Options.*'\n   responseHeader='.*Content-Security-Policy.*'\n   ```\n\n3. **Filter with jq before retrieving:**\n   ```bash\n   # Get only specific content types\n   {baseDir}\u002Fscripts\u002Fburp-search.sh project.burp proxyHistory.response.headers | \\\n     jq -c 'select(.url | test(\"\u002Fapi\u002F\"))' | head -n 50\n   ```\n\n### Step 3: Always Truncate Output\n\nEven after narrowing, always pipe through truncation:\n\n```bash\n# ALWAYS use head -c to limit total bytes (max 50KB)\n{baseDir}\u002Fscripts\u002Fburp-search.sh project.burp proxyHistory.request.headers | head -c 50000\n\n# For body searches, truncate each JSON object's body field:\n{baseDir}\u002Fscripts\u002Fburp-search.sh project.burp \"responseBody='pattern'\" | \\\n  head -n 20 | jq -c '.body = (.body | if length > 1000 then .[:1000] + \"...[TRUNCATED]\" else . end)'\n\n# Limit both record count AND byte size:\n{baseDir}\u002Fscripts\u002Fburp-search.sh project.burp auditItems | head -n 50 | head -c 50000\n```\n\n**Hard limits to enforce:**\n- `head -c 50000` (50KB max) on ALL output\n- **Truncate `.body` fields to 1000 chars - MANDATORY, no exceptions**\n  ```bash\n  jq -c '.body = (.body[:1000] + \"...[TRUNCATED]\")'\n  ```\n\n**Never run these without counting first AND truncating:**\n- `proxyHistory` \u002F `siteMap` (full dumps - always use sub-component filters)\n- `responseBody='...'` searches (bodies can be megabytes each)\n- Any broad regex like `.*` or `.+`\n\n## Investigation Workflow\n\n1. **Identify scope** - What are you looking for? (specific vuln type, endpoint, header pattern)\n\n2. **Search audit items first** - Start with Burp's findings:\n   ```bash\n   {baseDir}\u002Fscripts\u002Fburp-search.sh project.burp auditItems | jq 'select(.severity == \"High\")'\n   ```\n\n3. **Check confidence scores** - Filter for actionable findings:\n   ```bash\n   ... | jq 'select(.confidence == \"Certain\" or .confidence == \"Firm\")'\n   ```\n\n4. **Extract affected URLs** - Get the attack surface:\n   ```bash\n   ... | jq -r '.url' | sort -u\n   ```\n\n5. **Search raw traffic for context** - Examine actual requests\u002Fresponses:\n   ```bash\n   {baseDir}\u002Fscripts\u002Fburp-search.sh project.burp \"responseBody='pattern'\"\n   ```\n\n6. **Validate manually** - Burp findings are indicators, not proof. Verify each one.\n\n## Understanding Results\n\n### Severity vs Confidence\n\nBurp reports both **severity** (High\u002FMedium\u002FLow) and **confidence** (Certain\u002FFirm\u002FTentative). Use both when triaging:\n\n| Combination | Meaning |\n|-------------|---------|\n| High + Certain | Likely real vulnerability, prioritize investigation |\n| High + Tentative | Often a false positive, verify before reporting |\n| Medium + Firm | Worth investigating, may need manual validation |\n\nA \"High severity, Tentative confidence\" finding is frequently a false positive. Don't report findings based on severity alone.\n\n### When Proxy History is Incomplete\n\nProxy history only contains what Burp captured. It may be missing traffic due to:\n- **Scope filters** excluding domains\n- **Intercept settings** dropping requests\n- **Browser traffic** not routed through Burp proxy\n\nIf you don't find expected traffic, check Burp's scope and proxy settings in the original project.\n\n### HTTP Body Encoding\n\nResponse 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:\n- Check if responses are compressed\n- Try broader patterns or search headers first\n- Use Burp's UI to inspect raw vs rendered response\n\n## Rationalizations to Reject\n\nCommon shortcuts that lead to missed vulnerabilities or false reports:\n\n| Shortcut | Why It's Wrong |\n|----------|----------------|\n| \"This regex looks good\" | Verify on sample data first—encoding and escaping cause silent failures |\n| \"High severity = must fix\" | Check confidence score too; Burp has false positives |\n| \"All audit items are relevant\" | Filter by actual threat model; not every finding matters for every app |\n| \"Proxy history is complete\" | May be filtered by Burp scope\u002Fintercept settings; you see only what Burp captured |\n| \"Burp found it, so it's a vuln\" | Burp findings require manual verification—they indicate potential issues, not proof |\n\n## Output Format\n\nAll output is JSON, one object per line. Pipe to `jq` for formatting:\n```bash\n{baseDir}\u002Fscripts\u002Fburp-search.sh project.burp auditItems | jq .\n```\n\nFilter with grep:\n```bash\n{baseDir}\u002Fscripts\u002Fburp-search.sh project.burp auditItems | grep -i \"sql injection\"\n```\n\n## Examples\n\nSearch for CORS headers (with byte limit):\n```bash\n{baseDir}\u002Fscripts\u002Fburp-search.sh project.burp \"responseHeader='.*Access-Control.*'\" | head -c 50000\n```\n\nGet all high-severity findings (audit items are small, but still limit):\n```bash\n{baseDir}\u002Fscripts\u002Fburp-search.sh project.burp auditItems | jq -c 'select(.severity == \"High\")' | head -n 100\n```\n\nExtract just request URLs from proxy history:\n```bash\n{baseDir}\u002Fscripts\u002Fburp-search.sh project.burp proxyHistory.request.headers | jq -r '.request.url' | head -n 200\n```\n\nSearch response bodies (MUST truncate body to 1000 chars):\n```bash\n{baseDir}\u002Fscripts\u002Fburp-search.sh project.burp \"responseBody='.*password.*'\" | \\\n  head -n 10 | jq -c '.body = (.body[:1000] + \"...[TRUNCATED]\")'\n```\n\n## Platform Configuration\n\nThe wrapper script requires two environment variables to locate Burp Suite's bundled Java and JAR file.\n\n### macOS\n\n```bash\nexport BURP_JAVA=\"\u002FApplications\u002FBurp Suite Professional.app\u002FContents\u002FResources\u002Fjre.bundle\u002FContents\u002FHome\u002Fbin\u002Fjava\"\nexport BURP_JAR=\"\u002FApplications\u002FBurp Suite Professional.app\u002FContents\u002FResources\u002Fapp\u002Fburpsuite_pro.jar\"\n```\n\n### Windows\n\n```powershell\n$env:BURP_JAVA = \"C:\\Program Files\\BurpSuiteProfessional\\jre\\bin\\java.exe\"\n$env:BURP_JAR = \"C:\\Program Files\\BurpSuiteProfessional\\burpsuite_pro.jar\"\n```\n\n### Linux\n\n```bash\nexport BURP_JAVA=\"\u002Fopt\u002FBurpSuiteProfessional\u002Fjre\u002Fbin\u002Fjava\"\nexport BURP_JAR=\"\u002Fopt\u002FBurpSuiteProfessional\u002Fburpsuite_pro.jar\"\n```\n\nAdd these exports to your shell profile (`.bashrc`, `.zshrc`, etc.) for persistence.\n\n### Manual Invocation\n\nIf not using the wrapper script, invoke directly:\n```bash\n\"$BURP_JAVA\" -jar -Djava.awt.headless=true \"$BURP_JAR\" \\\n  --project-file=\u002Fpath\u002Fto\u002Fproject.burp [FLAGS]\n```\n",{"data":36,"body":38},{"name":4,"description":6,"allowed-tools":37},"Bash Read",{"type":39,"children":40},"root",[41,50,56,63,88,94,107,115,150,158,183,189,194,217,222,247,260,266,292,299,504,510,518,580,588,732,742,748,754,787,798,803,851,857,888,898,960,970,976,982,996,1001,1019,1025,1039,1049,1068,1074,1088,1097,1103,1113,1119,1124,1163,1192,1200,1299,1307,1313,1318,1535,1541,1546,1657,1665,1726,1734,1782,1788,1969,1975,1981,2000,2061,2066,2072,2077,2110,2115,2121,2126,2144,2150,2155,2242,2248,2260,2274,2279,2293,2299,2304,2318,2323,2337,2342,2356,2361,2415,2420,2425,2431,2500,2506,2531,2537,2600,2621,2627,2632,2697],{"type":42,"tag":43,"props":44,"children":46},"element","h1",{"id":45},"burp-project-parser",[47],{"type":48,"value":49},"text","Burp Project Parser",{"type":42,"tag":51,"props":52,"children":53},"p",{},[54],{"type":48,"value":55},"Search and extract data from Burp Suite project files using the burpsuite-project-file-parser extension.",{"type":42,"tag":57,"props":58,"children":60},"h2",{"id":59},"when-to-use",[61],{"type":48,"value":62},"When to Use",{"type":42,"tag":64,"props":65,"children":66},"ul",{},[67,73,78,83],{"type":42,"tag":68,"props":69,"children":70},"li",{},[71],{"type":48,"value":72},"Searching response headers or bodies with regex patterns",{"type":42,"tag":68,"props":74,"children":75},{},[76],{"type":48,"value":77},"Extracting security audit findings from Burp projects",{"type":42,"tag":68,"props":79,"children":80},{},[81],{"type":48,"value":82},"Dumping proxy history or site map data",{"type":42,"tag":68,"props":84,"children":85},{},[86],{"type":48,"value":87},"Analyzing HTTP traffic captured in a Burp project file",{"type":42,"tag":57,"props":89,"children":91},{"id":90},"prerequisites",[92],{"type":48,"value":93},"Prerequisites",{"type":42,"tag":51,"props":95,"children":96},{},[97,99,105],{"type":48,"value":98},"This skill ",{"type":42,"tag":100,"props":101,"children":102},"strong",{},[103],{"type":48,"value":104},"delegates parsing to Burp Suite Professional",{"type":48,"value":106}," - it does not parse .burp files directly.",{"type":42,"tag":51,"props":108,"children":109},{},[110],{"type":42,"tag":100,"props":111,"children":112},{},[113],{"type":48,"value":114},"Required:",{"type":42,"tag":116,"props":117,"children":118},"ol",{},[119,140],{"type":42,"tag":68,"props":120,"children":121},{},[122,127,129,138],{"type":42,"tag":100,"props":123,"children":124},{},[125],{"type":48,"value":126},"Burp Suite Professional",{"type":48,"value":128}," - Must be installed (",{"type":42,"tag":130,"props":131,"children":135},"a",{"href":132,"rel":133},"https:\u002F\u002Fportswigger.net\u002Fburp\u002Fpro",[134],"nofollow",[136],{"type":48,"value":137},"portswigger.net",{"type":48,"value":139},")",{"type":42,"tag":68,"props":141,"children":142},{},[143,148],{"type":42,"tag":100,"props":144,"children":145},{},[146],{"type":48,"value":147},"burpsuite-project-file-parser extension",{"type":48,"value":149}," - Provides CLI functionality",{"type":42,"tag":51,"props":151,"children":152},{},[153],{"type":42,"tag":100,"props":154,"children":155},{},[156],{"type":48,"value":157},"Install the extension:",{"type":42,"tag":116,"props":159,"children":160},{},[161,173,178],{"type":42,"tag":68,"props":162,"children":163},{},[164,166],{"type":48,"value":165},"Download from ",{"type":42,"tag":130,"props":167,"children":170},{"href":168,"rel":169},"https:\u002F\u002Fgithub.com\u002FBuffaloWill\u002Fburpsuite-project-file-parser",[134],[171],{"type":48,"value":172},"github.com\u002FBuffaloWill\u002Fburpsuite-project-file-parser",{"type":42,"tag":68,"props":174,"children":175},{},[176],{"type":48,"value":177},"In Burp Suite: Extender → Extensions → Add",{"type":42,"tag":68,"props":179,"children":180},{},[181],{"type":48,"value":182},"Select the downloaded JAR file",{"type":42,"tag":57,"props":184,"children":186},{"id":185},"quick-reference",[187],{"type":48,"value":188},"Quick Reference",{"type":42,"tag":51,"props":190,"children":191},{},[192],{"type":48,"value":193},"Use the wrapper script:",{"type":42,"tag":195,"props":196,"children":201},"pre",{"className":197,"code":198,"language":199,"meta":200,"style":200},"language-bash shiki shiki-themes material-theme-lighter material-theme material-theme-palenight","{baseDir}\u002Fscripts\u002Fburp-search.sh \u002Fpath\u002Fto\u002Fproject.burp [FLAGS]\n","bash","",[202],{"type":42,"tag":203,"props":204,"children":205},"code",{"__ignoreMap":200},[206],{"type":42,"tag":207,"props":208,"children":211},"span",{"class":209,"line":210},"line",1,[212],{"type":42,"tag":207,"props":213,"children":215},{"style":214},"--shiki-light:#90A4AE;--shiki-default:#EEFFFF;--shiki-dark:#BABED8",[216],{"type":48,"value":198},{"type":42,"tag":51,"props":218,"children":219},{},[220],{"type":48,"value":221},"The script uses environment variables for platform compatibility:",{"type":42,"tag":64,"props":223,"children":224},{},[225,236],{"type":42,"tag":68,"props":226,"children":227},{},[228,234],{"type":42,"tag":203,"props":229,"children":231},{"className":230},[],[232],{"type":48,"value":233},"BURP_JAVA",{"type":48,"value":235},": Path to Java executable",{"type":42,"tag":68,"props":237,"children":238},{},[239,245],{"type":42,"tag":203,"props":240,"children":242},{"className":241},[],[243],{"type":48,"value":244},"BURP_JAR",{"type":48,"value":246},": Path to burpsuite_pro.jar",{"type":42,"tag":51,"props":248,"children":249},{},[250,252,258],{"type":48,"value":251},"See ",{"type":42,"tag":130,"props":253,"children":255},{"href":254},"#platform-configuration",[256],{"type":48,"value":257},"Platform Configuration",{"type":48,"value":259}," for setup instructions.",{"type":42,"tag":57,"props":261,"children":263},{"id":262},"sub-component-filters-use-these",[264],{"type":48,"value":265},"Sub-Component Filters (USE THESE)",{"type":42,"tag":51,"props":267,"children":268},{},[269,274,276,282,284,290],{"type":42,"tag":100,"props":270,"children":271},{},[272],{"type":48,"value":273},"ALWAYS use sub-component filters instead of full dumps.",{"type":48,"value":275}," Full ",{"type":42,"tag":203,"props":277,"children":279},{"className":278},[],[280],{"type":48,"value":281},"proxyHistory",{"type":48,"value":283}," or ",{"type":42,"tag":203,"props":285,"children":287},{"className":286},[],[288],{"type":48,"value":289},"siteMap",{"type":48,"value":291}," can return gigabytes of data. Sub-component filters return only what you need.",{"type":42,"tag":293,"props":294,"children":296},"h3",{"id":295},"available-filters",[297],{"type":48,"value":298},"Available Filters",{"type":42,"tag":300,"props":301,"children":302},"table",{},[303,327],{"type":42,"tag":304,"props":305,"children":306},"thead",{},[307],{"type":42,"tag":308,"props":309,"children":310},"tr",{},[311,317,322],{"type":42,"tag":312,"props":313,"children":314},"th",{},[315],{"type":48,"value":316},"Filter",{"type":42,"tag":312,"props":318,"children":319},{},[320],{"type":48,"value":321},"Returns",{"type":42,"tag":312,"props":323,"children":324},{},[325],{"type":48,"value":326},"Typical Size",{"type":42,"tag":328,"props":329,"children":330},"tbody",{},[331,354,376,397,422,444,463,482],{"type":42,"tag":308,"props":332,"children":333},{},[334,344,349],{"type":42,"tag":335,"props":336,"children":337},"td",{},[338],{"type":42,"tag":203,"props":339,"children":341},{"className":340},[],[342],{"type":48,"value":343},"proxyHistory.request.headers",{"type":42,"tag":335,"props":345,"children":346},{},[347],{"type":48,"value":348},"Request line + headers only",{"type":42,"tag":335,"props":350,"children":351},{},[352],{"type":48,"value":353},"Small (\u003C 1KB\u002Frecord)",{"type":42,"tag":308,"props":355,"children":356},{},[357,366,371],{"type":42,"tag":335,"props":358,"children":359},{},[360],{"type":42,"tag":203,"props":361,"children":363},{"className":362},[],[364],{"type":48,"value":365},"proxyHistory.request.body",{"type":42,"tag":335,"props":367,"children":368},{},[369],{"type":48,"value":370},"Request body only",{"type":42,"tag":335,"props":372,"children":373},{},[374],{"type":48,"value":375},"Variable",{"type":42,"tag":308,"props":377,"children":378},{},[379,388,393],{"type":42,"tag":335,"props":380,"children":381},{},[382],{"type":42,"tag":203,"props":383,"children":385},{"className":384},[],[386],{"type":48,"value":387},"proxyHistory.response.headers",{"type":42,"tag":335,"props":389,"children":390},{},[391],{"type":48,"value":392},"Status + headers only",{"type":42,"tag":335,"props":394,"children":395},{},[396],{"type":48,"value":353},{"type":42,"tag":308,"props":398,"children":399},{},[400,409,414],{"type":42,"tag":335,"props":401,"children":402},{},[403],{"type":42,"tag":203,"props":404,"children":406},{"className":405},[],[407],{"type":48,"value":408},"proxyHistory.response.body",{"type":42,"tag":335,"props":410,"children":411},{},[412],{"type":48,"value":413},"Response body only",{"type":42,"tag":335,"props":415,"children":416},{},[417],{"type":42,"tag":100,"props":418,"children":419},{},[420],{"type":48,"value":421},"LARGE - avoid",{"type":42,"tag":308,"props":423,"children":424},{},[425,434,439],{"type":42,"tag":335,"props":426,"children":427},{},[428],{"type":42,"tag":203,"props":429,"children":431},{"className":430},[],[432],{"type":48,"value":433},"siteMap.request.headers",{"type":42,"tag":335,"props":435,"children":436},{},[437],{"type":48,"value":438},"Same as above for site map",{"type":42,"tag":335,"props":440,"children":441},{},[442],{"type":48,"value":443},"Small",{"type":42,"tag":308,"props":445,"children":446},{},[447,456,459],{"type":42,"tag":335,"props":448,"children":449},{},[450],{"type":42,"tag":203,"props":451,"children":453},{"className":452},[],[454],{"type":48,"value":455},"siteMap.request.body",{"type":42,"tag":335,"props":457,"children":458},{},[],{"type":42,"tag":335,"props":460,"children":461},{},[462],{"type":48,"value":375},{"type":42,"tag":308,"props":464,"children":465},{},[466,475,478],{"type":42,"tag":335,"props":467,"children":468},{},[469],{"type":42,"tag":203,"props":470,"children":472},{"className":471},[],[473],{"type":48,"value":474},"siteMap.response.headers",{"type":42,"tag":335,"props":476,"children":477},{},[],{"type":42,"tag":335,"props":479,"children":480},{},[481],{"type":48,"value":443},{"type":42,"tag":308,"props":483,"children":484},{},[485,494,497],{"type":42,"tag":335,"props":486,"children":487},{},[488],{"type":42,"tag":203,"props":489,"children":491},{"className":490},[],[492],{"type":48,"value":493},"siteMap.response.body",{"type":42,"tag":335,"props":495,"children":496},{},[],{"type":42,"tag":335,"props":498,"children":499},{},[500],{"type":42,"tag":100,"props":501,"children":502},{},[503],{"type":48,"value":421},{"type":42,"tag":293,"props":505,"children":507},{"id":506},"default-approach",[508],{"type":48,"value":509},"Default Approach",{"type":42,"tag":51,"props":511,"children":512},{},[513],{"type":42,"tag":100,"props":514,"children":515},{},[516],{"type":48,"value":517},"Start with headers, not bodies:",{"type":42,"tag":195,"props":519,"children":521},{"className":197,"code":520,"language":199,"meta":200,"style":200},"# GOOD - headers only, safe to retrieve\n{baseDir}\u002Fscripts\u002Fburp-search.sh project.burp proxyHistory.request.headers | head -c 50000\n{baseDir}\u002Fscripts\u002Fburp-search.sh project.burp proxyHistory.response.headers | head -c 50000\n\n# BAD - full records include bodies, can be gigabytes\n{baseDir}\u002Fscripts\u002Fburp-search.sh project.burp proxyHistory  # NEVER DO THIS\n",[522],{"type":42,"tag":203,"props":523,"children":524},{"__ignoreMap":200},[525,534,543,552,562,571],{"type":42,"tag":207,"props":526,"children":527},{"class":209,"line":210},[528],{"type":42,"tag":207,"props":529,"children":531},{"style":530},"--shiki-light:#90A4AE;--shiki-light-font-style:italic;--shiki-default:#546E7A;--shiki-default-font-style:italic;--shiki-dark:#676E95;--shiki-dark-font-style:italic",[532],{"type":48,"value":533},"# GOOD - headers only, safe to retrieve\n",{"type":42,"tag":207,"props":535,"children":537},{"class":209,"line":536},2,[538],{"type":42,"tag":207,"props":539,"children":540},{"style":214},[541],{"type":48,"value":542},"{baseDir}\u002Fscripts\u002Fburp-search.sh project.burp proxyHistory.request.headers | head -c 50000\n",{"type":42,"tag":207,"props":544,"children":546},{"class":209,"line":545},3,[547],{"type":42,"tag":207,"props":548,"children":549},{"style":214},[550],{"type":48,"value":551},"{baseDir}\u002Fscripts\u002Fburp-search.sh project.burp proxyHistory.response.headers | head -c 50000\n",{"type":42,"tag":207,"props":553,"children":555},{"class":209,"line":554},4,[556],{"type":42,"tag":207,"props":557,"children":559},{"emptyLinePlaceholder":558},true,[560],{"type":48,"value":561},"\n",{"type":42,"tag":207,"props":563,"children":565},{"class":209,"line":564},5,[566],{"type":42,"tag":207,"props":567,"children":568},{"style":530},[569],{"type":48,"value":570},"# BAD - full records include bodies, can be gigabytes\n",{"type":42,"tag":207,"props":572,"children":574},{"class":209,"line":573},6,[575],{"type":42,"tag":207,"props":576,"children":577},{"style":214},[578],{"type":48,"value":579},"{baseDir}\u002Fscripts\u002Fburp-search.sh project.burp proxyHistory  # NEVER DO THIS\n",{"type":42,"tag":51,"props":581,"children":582},{},[583],{"type":42,"tag":100,"props":584,"children":585},{},[586],{"type":48,"value":587},"Only fetch bodies for specific URLs after reviewing headers, and ALWAYS truncate:",{"type":42,"tag":195,"props":589,"children":591},{"className":197,"code":590,"language":199,"meta":200,"style":200},"# 1. First, find interesting URLs from headers\n{baseDir}\u002Fscripts\u002Fburp-search.sh project.burp proxyHistory.response.headers | \\\n  jq -r 'select(.headers | test(\"text\u002Fhtml\")) | .url' | head -n 20\n\n# 2. Then search bodies with targeted regex - MUST truncate body to 1000 chars\n{baseDir}\u002Fscripts\u002Fburp-search.sh project.burp \"responseBody='.*specific-pattern.*'\" | \\\n  head -n 10 | jq -c '.body = (.body[:1000] + \"...[TRUNCATED]\")'\n",[592],{"type":42,"tag":203,"props":593,"children":594},{"__ignoreMap":200},[595,603,611,663,670,678,686],{"type":42,"tag":207,"props":596,"children":597},{"class":209,"line":210},[598],{"type":42,"tag":207,"props":599,"children":600},{"style":530},[601],{"type":48,"value":602},"# 1. First, find interesting URLs from headers\n",{"type":42,"tag":207,"props":604,"children":605},{"class":209,"line":536},[606],{"type":42,"tag":207,"props":607,"children":608},{"style":214},[609],{"type":48,"value":610},"{baseDir}\u002Fscripts\u002Fburp-search.sh project.burp proxyHistory.response.headers | \\\n",{"type":42,"tag":207,"props":612,"children":613},{"class":209,"line":545},[614,620,626,632,637,642,647,652,657],{"type":42,"tag":207,"props":615,"children":617},{"style":616},"--shiki-light:#E2931D;--shiki-default:#FFCB6B;--shiki-dark:#FFCB6B",[618],{"type":48,"value":619},"  jq",{"type":42,"tag":207,"props":621,"children":623},{"style":622},"--shiki-light:#91B859;--shiki-default:#C3E88D;--shiki-dark:#C3E88D",[624],{"type":48,"value":625}," -r",{"type":42,"tag":207,"props":627,"children":629},{"style":628},"--shiki-light:#39ADB5;--shiki-default:#89DDFF;--shiki-dark:#89DDFF",[630],{"type":48,"value":631}," '",{"type":42,"tag":207,"props":633,"children":634},{"style":622},[635],{"type":48,"value":636},"select(.headers | test(\"text\u002Fhtml\")) | .url",{"type":42,"tag":207,"props":638,"children":639},{"style":628},[640],{"type":48,"value":641},"'",{"type":42,"tag":207,"props":643,"children":644},{"style":628},[645],{"type":48,"value":646}," |",{"type":42,"tag":207,"props":648,"children":649},{"style":616},[650],{"type":48,"value":651}," head",{"type":42,"tag":207,"props":653,"children":654},{"style":622},[655],{"type":48,"value":656}," -n",{"type":42,"tag":207,"props":658,"children":660},{"style":659},"--shiki-light:#F76D47;--shiki-default:#F78C6C;--shiki-dark:#F78C6C",[661],{"type":48,"value":662}," 20\n",{"type":42,"tag":207,"props":664,"children":665},{"class":209,"line":554},[666],{"type":42,"tag":207,"props":667,"children":668},{"emptyLinePlaceholder":558},[669],{"type":48,"value":561},{"type":42,"tag":207,"props":671,"children":672},{"class":209,"line":564},[673],{"type":42,"tag":207,"props":674,"children":675},{"style":530},[676],{"type":48,"value":677},"# 2. Then search bodies with targeted regex - MUST truncate body to 1000 chars\n",{"type":42,"tag":207,"props":679,"children":680},{"class":209,"line":573},[681],{"type":42,"tag":207,"props":682,"children":683},{"style":214},[684],{"type":48,"value":685},"{baseDir}\u002Fscripts\u002Fburp-search.sh project.burp \"responseBody='.*specific-pattern.*'\" | \\\n",{"type":42,"tag":207,"props":687,"children":689},{"class":209,"line":688},7,[690,695,699,704,708,713,718,722,727],{"type":42,"tag":207,"props":691,"children":692},{"style":616},[693],{"type":48,"value":694},"  head",{"type":42,"tag":207,"props":696,"children":697},{"style":622},[698],{"type":48,"value":656},{"type":42,"tag":207,"props":700,"children":701},{"style":659},[702],{"type":48,"value":703}," 10",{"type":42,"tag":207,"props":705,"children":706},{"style":628},[707],{"type":48,"value":646},{"type":42,"tag":207,"props":709,"children":710},{"style":616},[711],{"type":48,"value":712}," jq",{"type":42,"tag":207,"props":714,"children":715},{"style":622},[716],{"type":48,"value":717}," -c",{"type":42,"tag":207,"props":719,"children":720},{"style":628},[721],{"type":48,"value":631},{"type":42,"tag":207,"props":723,"children":724},{"style":622},[725],{"type":48,"value":726},".body = (.body[:1000] + \"...[TRUNCATED]\")",{"type":42,"tag":207,"props":728,"children":729},{"style":628},[730],{"type":48,"value":731},"'\n",{"type":42,"tag":51,"props":733,"children":734},{},[735,740],{"type":42,"tag":100,"props":736,"children":737},{},[738],{"type":48,"value":739},"HARD RULE: Body content > 1000 chars must NEVER enter context.",{"type":48,"value":741}," If the user needs full body content, they must view it in Burp Suite's UI.",{"type":42,"tag":57,"props":743,"children":745},{"id":744},"regex-search-operations",[746],{"type":48,"value":747},"Regex Search Operations",{"type":42,"tag":293,"props":749,"children":751},{"id":750},"search-response-headers",[752],{"type":48,"value":753},"Search Response Headers",{"type":42,"tag":195,"props":755,"children":757},{"className":197,"code":756,"language":199,"meta":200,"style":200},"responseHeader='.*regex.*'\n",[758],{"type":42,"tag":203,"props":759,"children":760},{"__ignoreMap":200},[761],{"type":42,"tag":207,"props":762,"children":763},{"class":209,"line":210},[764,769,774,778,783],{"type":42,"tag":207,"props":765,"children":766},{"style":214},[767],{"type":48,"value":768},"responseHeader",{"type":42,"tag":207,"props":770,"children":771},{"style":628},[772],{"type":48,"value":773},"=",{"type":42,"tag":207,"props":775,"children":776},{"style":628},[777],{"type":48,"value":641},{"type":42,"tag":207,"props":779,"children":780},{"style":622},[781],{"type":48,"value":782},".*regex.*",{"type":42,"tag":207,"props":784,"children":785},{"style":628},[786],{"type":48,"value":731},{"type":42,"tag":51,"props":788,"children":789},{},[790,792],{"type":48,"value":791},"Searches all response headers. Output: ",{"type":42,"tag":203,"props":793,"children":795},{"className":794},[],[796],{"type":48,"value":797},"{\"url\":\"...\", \"header\":\"...\"}",{"type":42,"tag":51,"props":799,"children":800},{},[801],{"type":48,"value":802},"Example - find server signatures:",{"type":42,"tag":195,"props":804,"children":806},{"className":197,"code":805,"language":199,"meta":200,"style":200},"responseHeader='.*(nginx|Apache|Servlet).*' | head -c 50000\n",[807],{"type":42,"tag":203,"props":808,"children":809},{"__ignoreMap":200},[810],{"type":42,"tag":207,"props":811,"children":812},{"class":209,"line":210},[813,817,821,825,830,834,838,842,846],{"type":42,"tag":207,"props":814,"children":815},{"style":214},[816],{"type":48,"value":768},{"type":42,"tag":207,"props":818,"children":819},{"style":628},[820],{"type":48,"value":773},{"type":42,"tag":207,"props":822,"children":823},{"style":628},[824],{"type":48,"value":641},{"type":42,"tag":207,"props":826,"children":827},{"style":622},[828],{"type":48,"value":829},".*(nginx|Apache|Servlet).*",{"type":42,"tag":207,"props":831,"children":832},{"style":628},[833],{"type":48,"value":641},{"type":42,"tag":207,"props":835,"children":836},{"style":628},[837],{"type":48,"value":646},{"type":42,"tag":207,"props":839,"children":840},{"style":616},[841],{"type":48,"value":651},{"type":42,"tag":207,"props":843,"children":844},{"style":622},[845],{"type":48,"value":717},{"type":42,"tag":207,"props":847,"children":848},{"style":659},[849],{"type":48,"value":850}," 50000\n",{"type":42,"tag":293,"props":852,"children":854},{"id":853},"search-response-bodies",[855],{"type":48,"value":856},"Search Response Bodies",{"type":42,"tag":195,"props":858,"children":860},{"className":197,"code":859,"language":199,"meta":200,"style":200},"responseBody='.*regex.*'\n",[861],{"type":42,"tag":203,"props":862,"children":863},{"__ignoreMap":200},[864],{"type":42,"tag":207,"props":865,"children":866},{"class":209,"line":210},[867,872,876,880,884],{"type":42,"tag":207,"props":868,"children":869},{"style":214},[870],{"type":48,"value":871},"responseBody",{"type":42,"tag":207,"props":873,"children":874},{"style":628},[875],{"type":48,"value":773},{"type":42,"tag":207,"props":877,"children":878},{"style":628},[879],{"type":48,"value":641},{"type":42,"tag":207,"props":881,"children":882},{"style":622},[883],{"type":48,"value":782},{"type":42,"tag":207,"props":885,"children":886},{"style":628},[887],{"type":48,"value":731},{"type":42,"tag":51,"props":889,"children":890},{},[891,896],{"type":42,"tag":100,"props":892,"children":893},{},[894],{"type":48,"value":895},"MANDATORY: Always truncate body content to 1000 chars max.",{"type":48,"value":897}," Response bodies can be megabytes each.",{"type":42,"tag":195,"props":899,"children":901},{"className":197,"code":900,"language":199,"meta":200,"style":200},"# REQUIRED format - always truncate .body field\n{baseDir}\u002Fscripts\u002Fburp-search.sh project.burp \"responseBody='.*\u003Cform.*action.*'\" | \\\n  head -n 10 | jq -c '.body = (.body[:1000] + \"...[TRUNCATED]\")'\n",[902],{"type":42,"tag":203,"props":903,"children":904},{"__ignoreMap":200},[905,913,921],{"type":42,"tag":207,"props":906,"children":907},{"class":209,"line":210},[908],{"type":42,"tag":207,"props":909,"children":910},{"style":530},[911],{"type":48,"value":912},"# REQUIRED format - always truncate .body field\n",{"type":42,"tag":207,"props":914,"children":915},{"class":209,"line":536},[916],{"type":42,"tag":207,"props":917,"children":918},{"style":214},[919],{"type":48,"value":920},"{baseDir}\u002Fscripts\u002Fburp-search.sh project.burp \"responseBody='.*\u003Cform.*action.*'\" | \\\n",{"type":42,"tag":207,"props":922,"children":923},{"class":209,"line":545},[924,928,932,936,940,944,948,952,956],{"type":42,"tag":207,"props":925,"children":926},{"style":616},[927],{"type":48,"value":694},{"type":42,"tag":207,"props":929,"children":930},{"style":622},[931],{"type":48,"value":656},{"type":42,"tag":207,"props":933,"children":934},{"style":659},[935],{"type":48,"value":703},{"type":42,"tag":207,"props":937,"children":938},{"style":628},[939],{"type":48,"value":646},{"type":42,"tag":207,"props":941,"children":942},{"style":616},[943],{"type":48,"value":712},{"type":42,"tag":207,"props":945,"children":946},{"style":622},[947],{"type":48,"value":717},{"type":42,"tag":207,"props":949,"children":950},{"style":628},[951],{"type":48,"value":631},{"type":42,"tag":207,"props":953,"children":954},{"style":622},[955],{"type":48,"value":726},{"type":42,"tag":207,"props":957,"children":958},{"style":628},[959],{"type":48,"value":731},{"type":42,"tag":51,"props":961,"children":962},{},[963,968],{"type":42,"tag":100,"props":964,"children":965},{},[966],{"type":48,"value":967},"Never retrieve full body content.",{"type":48,"value":969}," If you need to see more of a specific response, ask the user to open it in Burp Suite's UI.",{"type":42,"tag":57,"props":971,"children":973},{"id":972},"other-operations",[974],{"type":48,"value":975},"Other Operations",{"type":42,"tag":293,"props":977,"children":979},{"id":978},"extract-audit-items",[980],{"type":48,"value":981},"Extract Audit Items",{"type":42,"tag":195,"props":983,"children":985},{"className":197,"code":984,"language":199,"meta":200,"style":200},"auditItems\n",[986],{"type":42,"tag":203,"props":987,"children":988},{"__ignoreMap":200},[989],{"type":42,"tag":207,"props":990,"children":991},{"class":209,"line":210},[992],{"type":42,"tag":207,"props":993,"children":994},{"style":616},[995],{"type":48,"value":984},{"type":42,"tag":51,"props":997,"children":998},{},[999],{"type":48,"value":1000},"Returns all security findings. Output includes: name, severity, confidence, host, port, protocol, url.",{"type":42,"tag":51,"props":1002,"children":1003},{},[1004,1009,1011,1017],{"type":42,"tag":100,"props":1005,"children":1006},{},[1007],{"type":48,"value":1008},"Note:",{"type":48,"value":1010}," Audit items are small (no bodies) - safe to retrieve with ",{"type":42,"tag":203,"props":1012,"children":1014},{"className":1013},[],[1015],{"type":48,"value":1016},"head -n 100",{"type":48,"value":1018},".",{"type":42,"tag":293,"props":1020,"children":1022},{"id":1021},"dump-proxy-history-avoid",[1023],{"type":48,"value":1024},"Dump Proxy History (AVOID)",{"type":42,"tag":195,"props":1026,"children":1028},{"className":197,"code":1027,"language":199,"meta":200,"style":200},"proxyHistory\n",[1029],{"type":42,"tag":203,"props":1030,"children":1031},{"__ignoreMap":200},[1032],{"type":42,"tag":207,"props":1033,"children":1034},{"class":209,"line":210},[1035],{"type":42,"tag":207,"props":1036,"children":1037},{"style":616},[1038],{"type":48,"value":1027},{"type":42,"tag":51,"props":1040,"children":1041},{},[1042,1047],{"type":42,"tag":100,"props":1043,"children":1044},{},[1045],{"type":48,"value":1046},"NEVER use this directly.",{"type":48,"value":1048}," Use sub-component filters instead:",{"type":42,"tag":64,"props":1050,"children":1051},{},[1052,1060],{"type":42,"tag":68,"props":1053,"children":1054},{},[1055],{"type":42,"tag":203,"props":1056,"children":1058},{"className":1057},[],[1059],{"type":48,"value":343},{"type":42,"tag":68,"props":1061,"children":1062},{},[1063],{"type":42,"tag":203,"props":1064,"children":1066},{"className":1065},[],[1067],{"type":48,"value":387},{"type":42,"tag":293,"props":1069,"children":1071},{"id":1070},"dump-site-map-avoid",[1072],{"type":48,"value":1073},"Dump Site Map (AVOID)",{"type":42,"tag":195,"props":1075,"children":1077},{"className":197,"code":1076,"language":199,"meta":200,"style":200},"siteMap\n",[1078],{"type":42,"tag":203,"props":1079,"children":1080},{"__ignoreMap":200},[1081],{"type":42,"tag":207,"props":1082,"children":1083},{"class":209,"line":210},[1084],{"type":42,"tag":207,"props":1085,"children":1086},{"style":616},[1087],{"type":48,"value":1076},{"type":42,"tag":51,"props":1089,"children":1090},{},[1091,1095],{"type":42,"tag":100,"props":1092,"children":1093},{},[1094],{"type":48,"value":1046},{"type":48,"value":1096}," Use sub-component filters instead.",{"type":42,"tag":57,"props":1098,"children":1100},{"id":1099},"output-limits-required",[1101],{"type":48,"value":1102},"Output Limits (REQUIRED)",{"type":42,"tag":51,"props":1104,"children":1105},{},[1106,1111],{"type":42,"tag":100,"props":1107,"children":1108},{},[1109],{"type":48,"value":1110},"CRITICAL: Always check result size BEFORE retrieving data.",{"type":48,"value":1112}," A broad search can return thousands of records, each potentially megabytes. This will overflow the context window.",{"type":42,"tag":293,"props":1114,"children":1116},{"id":1115},"step-1-always-check-size-first",[1117],{"type":48,"value":1118},"Step 1: Always Check Size First",{"type":42,"tag":51,"props":1120,"children":1121},{},[1122],{"type":48,"value":1123},"Before any search, check BOTH record count AND byte size:",{"type":42,"tag":195,"props":1125,"children":1127},{"className":197,"code":1126,"language":199,"meta":200,"style":200},"# Check record count AND total bytes - never skip this step\n{baseDir}\u002Fscripts\u002Fburp-search.sh project.burp proxyHistory | wc -cl\n{baseDir}\u002Fscripts\u002Fburp-search.sh project.burp \"responseHeader='.*Server.*'\" | wc -cl\n{baseDir}\u002Fscripts\u002Fburp-search.sh project.burp auditItems | wc -cl\n",[1128],{"type":42,"tag":203,"props":1129,"children":1130},{"__ignoreMap":200},[1131,1139,1147,1155],{"type":42,"tag":207,"props":1132,"children":1133},{"class":209,"line":210},[1134],{"type":42,"tag":207,"props":1135,"children":1136},{"style":530},[1137],{"type":48,"value":1138},"# Check record count AND total bytes - never skip this step\n",{"type":42,"tag":207,"props":1140,"children":1141},{"class":209,"line":536},[1142],{"type":42,"tag":207,"props":1143,"children":1144},{"style":214},[1145],{"type":48,"value":1146},"{baseDir}\u002Fscripts\u002Fburp-search.sh project.burp proxyHistory | wc -cl\n",{"type":42,"tag":207,"props":1148,"children":1149},{"class":209,"line":545},[1150],{"type":42,"tag":207,"props":1151,"children":1152},{"style":214},[1153],{"type":48,"value":1154},"{baseDir}\u002Fscripts\u002Fburp-search.sh project.burp \"responseHeader='.*Server.*'\" | wc -cl\n",{"type":42,"tag":207,"props":1156,"children":1157},{"class":209,"line":554},[1158],{"type":42,"tag":207,"props":1159,"children":1160},{"style":214},[1161],{"type":48,"value":1162},"{baseDir}\u002Fscripts\u002Fburp-search.sh project.burp auditItems | wc -cl\n",{"type":42,"tag":51,"props":1164,"children":1165},{},[1166,1168,1174,1176,1182,1184,1190],{"type":48,"value":1167},"The ",{"type":42,"tag":203,"props":1169,"children":1171},{"className":1170},[],[1172],{"type":48,"value":1173},"wc -cl",{"type":48,"value":1175}," output shows: ",{"type":42,"tag":203,"props":1177,"children":1179},{"className":1178},[],[1180],{"type":48,"value":1181},"\u003Cbytes> \u003Clines>",{"type":48,"value":1183}," (e.g., ",{"type":42,"tag":203,"props":1185,"children":1187},{"className":1186},[],[1188],{"type":48,"value":1189},"524288 42",{"type":48,"value":1191}," means 512KB across 42 records).",{"type":42,"tag":51,"props":1193,"children":1194},{},[1195],{"type":42,"tag":100,"props":1196,"children":1197},{},[1198],{"type":48,"value":1199},"Interpret the results - BOTH must pass:",{"type":42,"tag":300,"props":1201,"children":1202},{},[1203,1234],{"type":42,"tag":304,"props":1204,"children":1205},{},[1206],{"type":42,"tag":308,"props":1207,"children":1208},{},[1209,1214,1219,1224,1229],{"type":42,"tag":312,"props":1210,"children":1211},{},[1212],{"type":48,"value":1213},"Metric",{"type":42,"tag":312,"props":1215,"children":1216},{},[1217],{"type":48,"value":1218},"Safe",{"type":42,"tag":312,"props":1220,"children":1221},{},[1222],{"type":48,"value":1223},"Narrow search",{"type":42,"tag":312,"props":1225,"children":1226},{},[1227],{"type":48,"value":1228},"Too broad",{"type":42,"tag":312,"props":1230,"children":1231},{},[1232],{"type":48,"value":1233},"STOP",{"type":42,"tag":328,"props":1235,"children":1236},{},[1237,1268],{"type":42,"tag":308,"props":1238,"children":1239},{},[1240,1248,1253,1258,1263],{"type":42,"tag":335,"props":1241,"children":1242},{},[1243],{"type":42,"tag":100,"props":1244,"children":1245},{},[1246],{"type":48,"value":1247},"Lines",{"type":42,"tag":335,"props":1249,"children":1250},{},[1251],{"type":48,"value":1252},"\u003C 50",{"type":42,"tag":335,"props":1254,"children":1255},{},[1256],{"type":48,"value":1257},"50-200",{"type":42,"tag":335,"props":1259,"children":1260},{},[1261],{"type":48,"value":1262},"200+",{"type":42,"tag":335,"props":1264,"children":1265},{},[1266],{"type":48,"value":1267},"1000+",{"type":42,"tag":308,"props":1269,"children":1270},{},[1271,1279,1284,1289,1294],{"type":42,"tag":335,"props":1272,"children":1273},{},[1274],{"type":42,"tag":100,"props":1275,"children":1276},{},[1277],{"type":48,"value":1278},"Bytes",{"type":42,"tag":335,"props":1280,"children":1281},{},[1282],{"type":48,"value":1283},"\u003C 50KB",{"type":42,"tag":335,"props":1285,"children":1286},{},[1287],{"type":48,"value":1288},"50-200KB",{"type":42,"tag":335,"props":1290,"children":1291},{},[1292],{"type":48,"value":1293},"200KB+",{"type":42,"tag":335,"props":1295,"children":1296},{},[1297],{"type":48,"value":1298},"1MB+",{"type":42,"tag":51,"props":1300,"children":1301},{},[1302],{"type":42,"tag":100,"props":1303,"children":1304},{},[1305],{"type":48,"value":1306},"A single 10MB response on one line will show high byte count but only 1 line - the byte check catches this.",{"type":42,"tag":293,"props":1308,"children":1310},{"id":1309},"step-2-refine-broad-searches",[1311],{"type":48,"value":1312},"Step 2: Refine Broad Searches",{"type":42,"tag":51,"props":1314,"children":1315},{},[1316],{"type":48,"value":1317},"If count\u002Fsize is too high:",{"type":42,"tag":116,"props":1319,"children":1320},{},[1321,1354,1464],{"type":42,"tag":68,"props":1322,"children":1323},{},[1324,1329,1331],{"type":42,"tag":100,"props":1325,"children":1326},{},[1327],{"type":48,"value":1328},"Use sub-component filters",{"type":48,"value":1330}," (see table above):",{"type":42,"tag":195,"props":1332,"children":1334},{"className":197,"code":1333,"language":199,"meta":200,"style":200},"# Instead of: proxyHistory (gigabytes)\n# Use: proxyHistory.request.headers (kilobytes)\n",[1335],{"type":42,"tag":203,"props":1336,"children":1337},{"__ignoreMap":200},[1338,1346],{"type":42,"tag":207,"props":1339,"children":1340},{"class":209,"line":210},[1341],{"type":42,"tag":207,"props":1342,"children":1343},{"style":530},[1344],{"type":48,"value":1345},"# Instead of: proxyHistory (gigabytes)\n",{"type":42,"tag":207,"props":1347,"children":1348},{"class":209,"line":536},[1349],{"type":42,"tag":207,"props":1350,"children":1351},{"style":530},[1352],{"type":48,"value":1353},"# Use: proxyHistory.request.headers (kilobytes)\n",{"type":42,"tag":68,"props":1355,"children":1356},{},[1357,1362],{"type":42,"tag":100,"props":1358,"children":1359},{},[1360],{"type":48,"value":1361},"Narrow regex patterns:",{"type":42,"tag":195,"props":1363,"children":1365},{"className":197,"code":1364,"language":199,"meta":200,"style":200},"# Too broad (matches everything):\nresponseHeader='.*'\n\n# Better - target specific headers:\nresponseHeader='.*X-Frame-Options.*'\nresponseHeader='.*Content-Security-Policy.*'\n",[1366],{"type":42,"tag":203,"props":1367,"children":1368},{"__ignoreMap":200},[1369,1377,1401,1408,1416,1440],{"type":42,"tag":207,"props":1370,"children":1371},{"class":209,"line":210},[1372],{"type":42,"tag":207,"props":1373,"children":1374},{"style":530},[1375],{"type":48,"value":1376},"# Too broad (matches everything):\n",{"type":42,"tag":207,"props":1378,"children":1379},{"class":209,"line":536},[1380,1384,1388,1392,1397],{"type":42,"tag":207,"props":1381,"children":1382},{"style":214},[1383],{"type":48,"value":768},{"type":42,"tag":207,"props":1385,"children":1386},{"style":628},[1387],{"type":48,"value":773},{"type":42,"tag":207,"props":1389,"children":1390},{"style":628},[1391],{"type":48,"value":641},{"type":42,"tag":207,"props":1393,"children":1394},{"style":622},[1395],{"type":48,"value":1396},".*",{"type":42,"tag":207,"props":1398,"children":1399},{"style":628},[1400],{"type":48,"value":731},{"type":42,"tag":207,"props":1402,"children":1403},{"class":209,"line":545},[1404],{"type":42,"tag":207,"props":1405,"children":1406},{"emptyLinePlaceholder":558},[1407],{"type":48,"value":561},{"type":42,"tag":207,"props":1409,"children":1410},{"class":209,"line":554},[1411],{"type":42,"tag":207,"props":1412,"children":1413},{"style":530},[1414],{"type":48,"value":1415},"# Better - target specific headers:\n",{"type":42,"tag":207,"props":1417,"children":1418},{"class":209,"line":564},[1419,1423,1427,1431,1436],{"type":42,"tag":207,"props":1420,"children":1421},{"style":214},[1422],{"type":48,"value":768},{"type":42,"tag":207,"props":1424,"children":1425},{"style":628},[1426],{"type":48,"value":773},{"type":42,"tag":207,"props":1428,"children":1429},{"style":628},[1430],{"type":48,"value":641},{"type":42,"tag":207,"props":1432,"children":1433},{"style":622},[1434],{"type":48,"value":1435},".*X-Frame-Options.*",{"type":42,"tag":207,"props":1437,"children":1438},{"style":628},[1439],{"type":48,"value":731},{"type":42,"tag":207,"props":1441,"children":1442},{"class":209,"line":573},[1443,1447,1451,1455,1460],{"type":42,"tag":207,"props":1444,"children":1445},{"style":214},[1446],{"type":48,"value":768},{"type":42,"tag":207,"props":1448,"children":1449},{"style":628},[1450],{"type":48,"value":773},{"type":42,"tag":207,"props":1452,"children":1453},{"style":628},[1454],{"type":48,"value":641},{"type":42,"tag":207,"props":1456,"children":1457},{"style":622},[1458],{"type":48,"value":1459},".*Content-Security-Policy.*",{"type":42,"tag":207,"props":1461,"children":1462},{"style":628},[1463],{"type":48,"value":731},{"type":42,"tag":68,"props":1465,"children":1466},{},[1467,1472],{"type":42,"tag":100,"props":1468,"children":1469},{},[1470],{"type":48,"value":1471},"Filter with jq before retrieving:",{"type":42,"tag":195,"props":1473,"children":1475},{"className":197,"code":1474,"language":199,"meta":200,"style":200},"# Get only specific content types\n{baseDir}\u002Fscripts\u002Fburp-search.sh project.burp proxyHistory.response.headers | \\\n  jq -c 'select(.url | test(\"\u002Fapi\u002F\"))' | head -n 50\n",[1476],{"type":42,"tag":203,"props":1477,"children":1478},{"__ignoreMap":200},[1479,1487,1494],{"type":42,"tag":207,"props":1480,"children":1481},{"class":209,"line":210},[1482],{"type":42,"tag":207,"props":1483,"children":1484},{"style":530},[1485],{"type":48,"value":1486},"# Get only specific content types\n",{"type":42,"tag":207,"props":1488,"children":1489},{"class":209,"line":536},[1490],{"type":42,"tag":207,"props":1491,"children":1492},{"style":214},[1493],{"type":48,"value":610},{"type":42,"tag":207,"props":1495,"children":1496},{"class":209,"line":545},[1497,1501,1505,1509,1514,1518,1522,1526,1530],{"type":42,"tag":207,"props":1498,"children":1499},{"style":616},[1500],{"type":48,"value":619},{"type":42,"tag":207,"props":1502,"children":1503},{"style":622},[1504],{"type":48,"value":717},{"type":42,"tag":207,"props":1506,"children":1507},{"style":628},[1508],{"type":48,"value":631},{"type":42,"tag":207,"props":1510,"children":1511},{"style":622},[1512],{"type":48,"value":1513},"select(.url | test(\"\u002Fapi\u002F\"))",{"type":42,"tag":207,"props":1515,"children":1516},{"style":628},[1517],{"type":48,"value":641},{"type":42,"tag":207,"props":1519,"children":1520},{"style":628},[1521],{"type":48,"value":646},{"type":42,"tag":207,"props":1523,"children":1524},{"style":616},[1525],{"type":48,"value":651},{"type":42,"tag":207,"props":1527,"children":1528},{"style":622},[1529],{"type":48,"value":656},{"type":42,"tag":207,"props":1531,"children":1532},{"style":659},[1533],{"type":48,"value":1534}," 50\n",{"type":42,"tag":293,"props":1536,"children":1538},{"id":1537},"step-3-always-truncate-output",[1539],{"type":48,"value":1540},"Step 3: Always Truncate Output",{"type":42,"tag":51,"props":1542,"children":1543},{},[1544],{"type":48,"value":1545},"Even after narrowing, always pipe through truncation:",{"type":42,"tag":195,"props":1547,"children":1549},{"className":197,"code":1548,"language":199,"meta":200,"style":200},"# ALWAYS use head -c to limit total bytes (max 50KB)\n{baseDir}\u002Fscripts\u002Fburp-search.sh project.burp proxyHistory.request.headers | head -c 50000\n\n# For body searches, truncate each JSON object's body field:\n{baseDir}\u002Fscripts\u002Fburp-search.sh project.burp \"responseBody='pattern'\" | \\\n  head -n 20 | jq -c '.body = (.body | if length > 1000 then .[:1000] + \"...[TRUNCATED]\" else . end)'\n\n# Limit both record count AND byte size:\n{baseDir}\u002Fscripts\u002Fburp-search.sh project.burp auditItems | head -n 50 | head -c 50000\n",[1550],{"type":42,"tag":203,"props":1551,"children":1552},{"__ignoreMap":200},[1553,1561,1568,1575,1583,1591,1632,1639,1648],{"type":42,"tag":207,"props":1554,"children":1555},{"class":209,"line":210},[1556],{"type":42,"tag":207,"props":1557,"children":1558},{"style":530},[1559],{"type":48,"value":1560},"# ALWAYS use head -c to limit total bytes (max 50KB)\n",{"type":42,"tag":207,"props":1562,"children":1563},{"class":209,"line":536},[1564],{"type":42,"tag":207,"props":1565,"children":1566},{"style":214},[1567],{"type":48,"value":542},{"type":42,"tag":207,"props":1569,"children":1570},{"class":209,"line":545},[1571],{"type":42,"tag":207,"props":1572,"children":1573},{"emptyLinePlaceholder":558},[1574],{"type":48,"value":561},{"type":42,"tag":207,"props":1576,"children":1577},{"class":209,"line":554},[1578],{"type":42,"tag":207,"props":1579,"children":1580},{"style":530},[1581],{"type":48,"value":1582},"# For body searches, truncate each JSON object's body field:\n",{"type":42,"tag":207,"props":1584,"children":1585},{"class":209,"line":564},[1586],{"type":42,"tag":207,"props":1587,"children":1588},{"style":214},[1589],{"type":48,"value":1590},"{baseDir}\u002Fscripts\u002Fburp-search.sh project.burp \"responseBody='pattern'\" | \\\n",{"type":42,"tag":207,"props":1592,"children":1593},{"class":209,"line":573},[1594,1598,1602,1607,1611,1615,1619,1623,1628],{"type":42,"tag":207,"props":1595,"children":1596},{"style":616},[1597],{"type":48,"value":694},{"type":42,"tag":207,"props":1599,"children":1600},{"style":622},[1601],{"type":48,"value":656},{"type":42,"tag":207,"props":1603,"children":1604},{"style":659},[1605],{"type":48,"value":1606}," 20",{"type":42,"tag":207,"props":1608,"children":1609},{"style":628},[1610],{"type":48,"value":646},{"type":42,"tag":207,"props":1612,"children":1613},{"style":616},[1614],{"type":48,"value":712},{"type":42,"tag":207,"props":1616,"children":1617},{"style":622},[1618],{"type":48,"value":717},{"type":42,"tag":207,"props":1620,"children":1621},{"style":628},[1622],{"type":48,"value":631},{"type":42,"tag":207,"props":1624,"children":1625},{"style":622},[1626],{"type":48,"value":1627},".body = (.body | if length > 1000 then .[:1000] + \"...[TRUNCATED]\" else . end)",{"type":42,"tag":207,"props":1629,"children":1630},{"style":628},[1631],{"type":48,"value":731},{"type":42,"tag":207,"props":1633,"children":1634},{"class":209,"line":688},[1635],{"type":42,"tag":207,"props":1636,"children":1637},{"emptyLinePlaceholder":558},[1638],{"type":48,"value":561},{"type":42,"tag":207,"props":1640,"children":1642},{"class":209,"line":1641},8,[1643],{"type":42,"tag":207,"props":1644,"children":1645},{"style":530},[1646],{"type":48,"value":1647},"# Limit both record count AND byte size:\n",{"type":42,"tag":207,"props":1649,"children":1651},{"class":209,"line":1650},9,[1652],{"type":42,"tag":207,"props":1653,"children":1654},{"style":214},[1655],{"type":48,"value":1656},"{baseDir}\u002Fscripts\u002Fburp-search.sh project.burp auditItems | head -n 50 | head -c 50000\n",{"type":42,"tag":51,"props":1658,"children":1659},{},[1660],{"type":42,"tag":100,"props":1661,"children":1662},{},[1663],{"type":48,"value":1664},"Hard limits to enforce:",{"type":42,"tag":64,"props":1666,"children":1667},{},[1668,1679],{"type":42,"tag":68,"props":1669,"children":1670},{},[1671,1677],{"type":42,"tag":203,"props":1672,"children":1674},{"className":1673},[],[1675],{"type":48,"value":1676},"head -c 50000",{"type":48,"value":1678}," (50KB max) on ALL output",{"type":42,"tag":68,"props":1680,"children":1681},{},[1682,1695],{"type":42,"tag":100,"props":1683,"children":1684},{},[1685,1687,1693],{"type":48,"value":1686},"Truncate ",{"type":42,"tag":203,"props":1688,"children":1690},{"className":1689},[],[1691],{"type":48,"value":1692},".body",{"type":48,"value":1694}," fields to 1000 chars - MANDATORY, no exceptions",{"type":42,"tag":195,"props":1696,"children":1698},{"className":197,"code":1697,"language":199,"meta":200,"style":200},"jq -c '.body = (.body[:1000] + \"...[TRUNCATED]\")'\n",[1699],{"type":42,"tag":203,"props":1700,"children":1701},{"__ignoreMap":200},[1702],{"type":42,"tag":207,"props":1703,"children":1704},{"class":209,"line":210},[1705,1710,1714,1718,1722],{"type":42,"tag":207,"props":1706,"children":1707},{"style":616},[1708],{"type":48,"value":1709},"jq",{"type":42,"tag":207,"props":1711,"children":1712},{"style":622},[1713],{"type":48,"value":717},{"type":42,"tag":207,"props":1715,"children":1716},{"style":628},[1717],{"type":48,"value":631},{"type":42,"tag":207,"props":1719,"children":1720},{"style":622},[1721],{"type":48,"value":726},{"type":42,"tag":207,"props":1723,"children":1724},{"style":628},[1725],{"type":48,"value":731},{"type":42,"tag":51,"props":1727,"children":1728},{},[1729],{"type":42,"tag":100,"props":1730,"children":1731},{},[1732],{"type":48,"value":1733},"Never run these without counting first AND truncating:",{"type":42,"tag":64,"props":1735,"children":1736},{},[1737,1754,1765],{"type":42,"tag":68,"props":1738,"children":1739},{},[1740,1745,1747,1752],{"type":42,"tag":203,"props":1741,"children":1743},{"className":1742},[],[1744],{"type":48,"value":281},{"type":48,"value":1746}," \u002F ",{"type":42,"tag":203,"props":1748,"children":1750},{"className":1749},[],[1751],{"type":48,"value":289},{"type":48,"value":1753}," (full dumps - always use sub-component filters)",{"type":42,"tag":68,"props":1755,"children":1756},{},[1757,1763],{"type":42,"tag":203,"props":1758,"children":1760},{"className":1759},[],[1761],{"type":48,"value":1762},"responseBody='...'",{"type":48,"value":1764}," searches (bodies can be megabytes each)",{"type":42,"tag":68,"props":1766,"children":1767},{},[1768,1770,1775,1776],{"type":48,"value":1769},"Any broad regex like ",{"type":42,"tag":203,"props":1771,"children":1773},{"className":1772},[],[1774],{"type":48,"value":1396},{"type":48,"value":283},{"type":42,"tag":203,"props":1777,"children":1779},{"className":1778},[],[1780],{"type":48,"value":1781},".+",{"type":42,"tag":57,"props":1783,"children":1785},{"id":1784},"investigation-workflow",[1786],{"type":48,"value":1787},"Investigation Workflow",{"type":42,"tag":116,"props":1789,"children":1790},{},[1791,1801,1825,1872,1935,1959],{"type":42,"tag":68,"props":1792,"children":1793},{},[1794,1799],{"type":42,"tag":100,"props":1795,"children":1796},{},[1797],{"type":48,"value":1798},"Identify scope",{"type":48,"value":1800}," - What are you looking for? (specific vuln type, endpoint, header pattern)",{"type":42,"tag":68,"props":1802,"children":1803},{},[1804,1809,1811],{"type":42,"tag":100,"props":1805,"children":1806},{},[1807],{"type":48,"value":1808},"Search audit items first",{"type":48,"value":1810}," - Start with Burp's findings:",{"type":42,"tag":195,"props":1812,"children":1814},{"className":197,"code":1813,"language":199,"meta":200,"style":200},"{baseDir}\u002Fscripts\u002Fburp-search.sh project.burp auditItems | jq 'select(.severity == \"High\")'\n",[1815],{"type":42,"tag":203,"props":1816,"children":1817},{"__ignoreMap":200},[1818],{"type":42,"tag":207,"props":1819,"children":1820},{"class":209,"line":210},[1821],{"type":42,"tag":207,"props":1822,"children":1823},{"style":214},[1824],{"type":48,"value":1813},{"type":42,"tag":68,"props":1826,"children":1827},{},[1828,1833,1835],{"type":42,"tag":100,"props":1829,"children":1830},{},[1831],{"type":48,"value":1832},"Check confidence scores",{"type":48,"value":1834}," - Filter for actionable findings:",{"type":42,"tag":195,"props":1836,"children":1838},{"className":197,"code":1837,"language":199,"meta":200,"style":200},"... | jq 'select(.confidence == \"Certain\" or .confidence == \"Firm\")'\n",[1839],{"type":42,"tag":203,"props":1840,"children":1841},{"__ignoreMap":200},[1842],{"type":42,"tag":207,"props":1843,"children":1844},{"class":209,"line":210},[1845,1851,1855,1859,1863,1868],{"type":42,"tag":207,"props":1846,"children":1848},{"style":1847},"--shiki-light:#6182B8;--shiki-default:#82AAFF;--shiki-dark:#82AAFF",[1849],{"type":48,"value":1850},"...",{"type":42,"tag":207,"props":1852,"children":1853},{"style":628},[1854],{"type":48,"value":646},{"type":42,"tag":207,"props":1856,"children":1857},{"style":616},[1858],{"type":48,"value":712},{"type":42,"tag":207,"props":1860,"children":1861},{"style":628},[1862],{"type":48,"value":631},{"type":42,"tag":207,"props":1864,"children":1865},{"style":622},[1866],{"type":48,"value":1867},"select(.confidence == \"Certain\" or .confidence == \"Firm\")",{"type":42,"tag":207,"props":1869,"children":1870},{"style":628},[1871],{"type":48,"value":731},{"type":42,"tag":68,"props":1873,"children":1874},{},[1875,1880,1882],{"type":42,"tag":100,"props":1876,"children":1877},{},[1878],{"type":48,"value":1879},"Extract affected URLs",{"type":48,"value":1881}," - Get the attack surface:",{"type":42,"tag":195,"props":1883,"children":1885},{"className":197,"code":1884,"language":199,"meta":200,"style":200},"... | jq -r '.url' | sort -u\n",[1886],{"type":42,"tag":203,"props":1887,"children":1888},{"__ignoreMap":200},[1889],{"type":42,"tag":207,"props":1890,"children":1891},{"class":209,"line":210},[1892,1896,1900,1904,1908,1912,1917,1921,1925,1930],{"type":42,"tag":207,"props":1893,"children":1894},{"style":1847},[1895],{"type":48,"value":1850},{"type":42,"tag":207,"props":1897,"children":1898},{"style":628},[1899],{"type":48,"value":646},{"type":42,"tag":207,"props":1901,"children":1902},{"style":616},[1903],{"type":48,"value":712},{"type":42,"tag":207,"props":1905,"children":1906},{"style":622},[1907],{"type":48,"value":625},{"type":42,"tag":207,"props":1909,"children":1910},{"style":628},[1911],{"type":48,"value":631},{"type":42,"tag":207,"props":1913,"children":1914},{"style":622},[1915],{"type":48,"value":1916},".url",{"type":42,"tag":207,"props":1918,"children":1919},{"style":628},[1920],{"type":48,"value":641},{"type":42,"tag":207,"props":1922,"children":1923},{"style":628},[1924],{"type":48,"value":646},{"type":42,"tag":207,"props":1926,"children":1927},{"style":616},[1928],{"type":48,"value":1929}," sort",{"type":42,"tag":207,"props":1931,"children":1932},{"style":622},[1933],{"type":48,"value":1934}," -u\n",{"type":42,"tag":68,"props":1936,"children":1937},{},[1938,1943,1945],{"type":42,"tag":100,"props":1939,"children":1940},{},[1941],{"type":48,"value":1942},"Search raw traffic for context",{"type":48,"value":1944}," - Examine actual requests\u002Fresponses:",{"type":42,"tag":195,"props":1946,"children":1948},{"className":197,"code":1947,"language":199,"meta":200,"style":200},"{baseDir}\u002Fscripts\u002Fburp-search.sh project.burp \"responseBody='pattern'\"\n",[1949],{"type":42,"tag":203,"props":1950,"children":1951},{"__ignoreMap":200},[1952],{"type":42,"tag":207,"props":1953,"children":1954},{"class":209,"line":210},[1955],{"type":42,"tag":207,"props":1956,"children":1957},{"style":214},[1958],{"type":48,"value":1947},{"type":42,"tag":68,"props":1960,"children":1961},{},[1962,1967],{"type":42,"tag":100,"props":1963,"children":1964},{},[1965],{"type":48,"value":1966},"Validate manually",{"type":48,"value":1968}," - Burp findings are indicators, not proof. Verify each one.",{"type":42,"tag":57,"props":1970,"children":1972},{"id":1971},"understanding-results",[1973],{"type":48,"value":1974},"Understanding Results",{"type":42,"tag":293,"props":1976,"children":1978},{"id":1977},"severity-vs-confidence",[1979],{"type":48,"value":1980},"Severity vs Confidence",{"type":42,"tag":51,"props":1982,"children":1983},{},[1984,1986,1991,1993,1998],{"type":48,"value":1985},"Burp reports both ",{"type":42,"tag":100,"props":1987,"children":1988},{},[1989],{"type":48,"value":1990},"severity",{"type":48,"value":1992}," (High\u002FMedium\u002FLow) and ",{"type":42,"tag":100,"props":1994,"children":1995},{},[1996],{"type":48,"value":1997},"confidence",{"type":48,"value":1999}," (Certain\u002FFirm\u002FTentative). Use both when triaging:",{"type":42,"tag":300,"props":2001,"children":2002},{},[2003,2019],{"type":42,"tag":304,"props":2004,"children":2005},{},[2006],{"type":42,"tag":308,"props":2007,"children":2008},{},[2009,2014],{"type":42,"tag":312,"props":2010,"children":2011},{},[2012],{"type":48,"value":2013},"Combination",{"type":42,"tag":312,"props":2015,"children":2016},{},[2017],{"type":48,"value":2018},"Meaning",{"type":42,"tag":328,"props":2020,"children":2021},{},[2022,2035,2048],{"type":42,"tag":308,"props":2023,"children":2024},{},[2025,2030],{"type":42,"tag":335,"props":2026,"children":2027},{},[2028],{"type":48,"value":2029},"High + Certain",{"type":42,"tag":335,"props":2031,"children":2032},{},[2033],{"type":48,"value":2034},"Likely real vulnerability, prioritize investigation",{"type":42,"tag":308,"props":2036,"children":2037},{},[2038,2043],{"type":42,"tag":335,"props":2039,"children":2040},{},[2041],{"type":48,"value":2042},"High + Tentative",{"type":42,"tag":335,"props":2044,"children":2045},{},[2046],{"type":48,"value":2047},"Often a false positive, verify before reporting",{"type":42,"tag":308,"props":2049,"children":2050},{},[2051,2056],{"type":42,"tag":335,"props":2052,"children":2053},{},[2054],{"type":48,"value":2055},"Medium + Firm",{"type":42,"tag":335,"props":2057,"children":2058},{},[2059],{"type":48,"value":2060},"Worth investigating, may need manual validation",{"type":42,"tag":51,"props":2062,"children":2063},{},[2064],{"type":48,"value":2065},"A \"High severity, Tentative confidence\" finding is frequently a false positive. Don't report findings based on severity alone.",{"type":42,"tag":293,"props":2067,"children":2069},{"id":2068},"when-proxy-history-is-incomplete",[2070],{"type":48,"value":2071},"When Proxy History is Incomplete",{"type":42,"tag":51,"props":2073,"children":2074},{},[2075],{"type":48,"value":2076},"Proxy history only contains what Burp captured. It may be missing traffic due to:",{"type":42,"tag":64,"props":2078,"children":2079},{},[2080,2090,2100],{"type":42,"tag":68,"props":2081,"children":2082},{},[2083,2088],{"type":42,"tag":100,"props":2084,"children":2085},{},[2086],{"type":48,"value":2087},"Scope filters",{"type":48,"value":2089}," excluding domains",{"type":42,"tag":68,"props":2091,"children":2092},{},[2093,2098],{"type":42,"tag":100,"props":2094,"children":2095},{},[2096],{"type":48,"value":2097},"Intercept settings",{"type":48,"value":2099}," dropping requests",{"type":42,"tag":68,"props":2101,"children":2102},{},[2103,2108],{"type":42,"tag":100,"props":2104,"children":2105},{},[2106],{"type":48,"value":2107},"Browser traffic",{"type":48,"value":2109}," not routed through Burp proxy",{"type":42,"tag":51,"props":2111,"children":2112},{},[2113],{"type":48,"value":2114},"If you don't find expected traffic, check Burp's scope and proxy settings in the original project.",{"type":42,"tag":293,"props":2116,"children":2118},{"id":2117},"http-body-encoding",[2119],{"type":48,"value":2120},"HTTP Body Encoding",{"type":42,"tag":51,"props":2122,"children":2123},{},[2124],{"type":48,"value":2125},"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:",{"type":42,"tag":64,"props":2127,"children":2128},{},[2129,2134,2139],{"type":42,"tag":68,"props":2130,"children":2131},{},[2132],{"type":48,"value":2133},"Check if responses are compressed",{"type":42,"tag":68,"props":2135,"children":2136},{},[2137],{"type":48,"value":2138},"Try broader patterns or search headers first",{"type":42,"tag":68,"props":2140,"children":2141},{},[2142],{"type":48,"value":2143},"Use Burp's UI to inspect raw vs rendered response",{"type":42,"tag":57,"props":2145,"children":2147},{"id":2146},"rationalizations-to-reject",[2148],{"type":48,"value":2149},"Rationalizations to Reject",{"type":42,"tag":51,"props":2151,"children":2152},{},[2153],{"type":48,"value":2154},"Common shortcuts that lead to missed vulnerabilities or false reports:",{"type":42,"tag":300,"props":2156,"children":2157},{},[2158,2174],{"type":42,"tag":304,"props":2159,"children":2160},{},[2161],{"type":42,"tag":308,"props":2162,"children":2163},{},[2164,2169],{"type":42,"tag":312,"props":2165,"children":2166},{},[2167],{"type":48,"value":2168},"Shortcut",{"type":42,"tag":312,"props":2170,"children":2171},{},[2172],{"type":48,"value":2173},"Why It's Wrong",{"type":42,"tag":328,"props":2175,"children":2176},{},[2177,2190,2203,2216,2229],{"type":42,"tag":308,"props":2178,"children":2179},{},[2180,2185],{"type":42,"tag":335,"props":2181,"children":2182},{},[2183],{"type":48,"value":2184},"\"This regex looks good\"",{"type":42,"tag":335,"props":2186,"children":2187},{},[2188],{"type":48,"value":2189},"Verify on sample data first—encoding and escaping cause silent failures",{"type":42,"tag":308,"props":2191,"children":2192},{},[2193,2198],{"type":42,"tag":335,"props":2194,"children":2195},{},[2196],{"type":48,"value":2197},"\"High severity = must fix\"",{"type":42,"tag":335,"props":2199,"children":2200},{},[2201],{"type":48,"value":2202},"Check confidence score too; Burp has false positives",{"type":42,"tag":308,"props":2204,"children":2205},{},[2206,2211],{"type":42,"tag":335,"props":2207,"children":2208},{},[2209],{"type":48,"value":2210},"\"All audit items are relevant\"",{"type":42,"tag":335,"props":2212,"children":2213},{},[2214],{"type":48,"value":2215},"Filter by actual threat model; not every finding matters for every app",{"type":42,"tag":308,"props":2217,"children":2218},{},[2219,2224],{"type":42,"tag":335,"props":2220,"children":2221},{},[2222],{"type":48,"value":2223},"\"Proxy history is complete\"",{"type":42,"tag":335,"props":2225,"children":2226},{},[2227],{"type":48,"value":2228},"May be filtered by Burp scope\u002Fintercept settings; you see only what Burp captured",{"type":42,"tag":308,"props":2230,"children":2231},{},[2232,2237],{"type":42,"tag":335,"props":2233,"children":2234},{},[2235],{"type":48,"value":2236},"\"Burp found it, so it's a vuln\"",{"type":42,"tag":335,"props":2238,"children":2239},{},[2240],{"type":48,"value":2241},"Burp findings require manual verification—they indicate potential issues, not proof",{"type":42,"tag":57,"props":2243,"children":2245},{"id":2244},"output-format",[2246],{"type":48,"value":2247},"Output Format",{"type":42,"tag":51,"props":2249,"children":2250},{},[2251,2253,2258],{"type":48,"value":2252},"All output is JSON, one object per line. Pipe to ",{"type":42,"tag":203,"props":2254,"children":2256},{"className":2255},[],[2257],{"type":48,"value":1709},{"type":48,"value":2259}," for formatting:",{"type":42,"tag":195,"props":2261,"children":2263},{"className":197,"code":2262,"language":199,"meta":200,"style":200},"{baseDir}\u002Fscripts\u002Fburp-search.sh project.burp auditItems | jq .\n",[2264],{"type":42,"tag":203,"props":2265,"children":2266},{"__ignoreMap":200},[2267],{"type":42,"tag":207,"props":2268,"children":2269},{"class":209,"line":210},[2270],{"type":42,"tag":207,"props":2271,"children":2272},{"style":214},[2273],{"type":48,"value":2262},{"type":42,"tag":51,"props":2275,"children":2276},{},[2277],{"type":48,"value":2278},"Filter with grep:",{"type":42,"tag":195,"props":2280,"children":2282},{"className":197,"code":2281,"language":199,"meta":200,"style":200},"{baseDir}\u002Fscripts\u002Fburp-search.sh project.burp auditItems | grep -i \"sql injection\"\n",[2283],{"type":42,"tag":203,"props":2284,"children":2285},{"__ignoreMap":200},[2286],{"type":42,"tag":207,"props":2287,"children":2288},{"class":209,"line":210},[2289],{"type":42,"tag":207,"props":2290,"children":2291},{"style":214},[2292],{"type":48,"value":2281},{"type":42,"tag":57,"props":2294,"children":2296},{"id":2295},"examples",[2297],{"type":48,"value":2298},"Examples",{"type":42,"tag":51,"props":2300,"children":2301},{},[2302],{"type":48,"value":2303},"Search for CORS headers (with byte limit):",{"type":42,"tag":195,"props":2305,"children":2307},{"className":197,"code":2306,"language":199,"meta":200,"style":200},"{baseDir}\u002Fscripts\u002Fburp-search.sh project.burp \"responseHeader='.*Access-Control.*'\" | head -c 50000\n",[2308],{"type":42,"tag":203,"props":2309,"children":2310},{"__ignoreMap":200},[2311],{"type":42,"tag":207,"props":2312,"children":2313},{"class":209,"line":210},[2314],{"type":42,"tag":207,"props":2315,"children":2316},{"style":214},[2317],{"type":48,"value":2306},{"type":42,"tag":51,"props":2319,"children":2320},{},[2321],{"type":48,"value":2322},"Get all high-severity findings (audit items are small, but still limit):",{"type":42,"tag":195,"props":2324,"children":2326},{"className":197,"code":2325,"language":199,"meta":200,"style":200},"{baseDir}\u002Fscripts\u002Fburp-search.sh project.burp auditItems | jq -c 'select(.severity == \"High\")' | head -n 100\n",[2327],{"type":42,"tag":203,"props":2328,"children":2329},{"__ignoreMap":200},[2330],{"type":42,"tag":207,"props":2331,"children":2332},{"class":209,"line":210},[2333],{"type":42,"tag":207,"props":2334,"children":2335},{"style":214},[2336],{"type":48,"value":2325},{"type":42,"tag":51,"props":2338,"children":2339},{},[2340],{"type":48,"value":2341},"Extract just request URLs from proxy history:",{"type":42,"tag":195,"props":2343,"children":2345},{"className":197,"code":2344,"language":199,"meta":200,"style":200},"{baseDir}\u002Fscripts\u002Fburp-search.sh project.burp proxyHistory.request.headers | jq -r '.request.url' | head -n 200\n",[2346],{"type":42,"tag":203,"props":2347,"children":2348},{"__ignoreMap":200},[2349],{"type":42,"tag":207,"props":2350,"children":2351},{"class":209,"line":210},[2352],{"type":42,"tag":207,"props":2353,"children":2354},{"style":214},[2355],{"type":48,"value":2344},{"type":42,"tag":51,"props":2357,"children":2358},{},[2359],{"type":48,"value":2360},"Search response bodies (MUST truncate body to 1000 chars):",{"type":42,"tag":195,"props":2362,"children":2364},{"className":197,"code":2363,"language":199,"meta":200,"style":200},"{baseDir}\u002Fscripts\u002Fburp-search.sh project.burp \"responseBody='.*password.*'\" | \\\n  head -n 10 | jq -c '.body = (.body[:1000] + \"...[TRUNCATED]\")'\n",[2365],{"type":42,"tag":203,"props":2366,"children":2367},{"__ignoreMap":200},[2368,2376],{"type":42,"tag":207,"props":2369,"children":2370},{"class":209,"line":210},[2371],{"type":42,"tag":207,"props":2372,"children":2373},{"style":214},[2374],{"type":48,"value":2375},"{baseDir}\u002Fscripts\u002Fburp-search.sh project.burp \"responseBody='.*password.*'\" | \\\n",{"type":42,"tag":207,"props":2377,"children":2378},{"class":209,"line":536},[2379,2383,2387,2391,2395,2399,2403,2407,2411],{"type":42,"tag":207,"props":2380,"children":2381},{"style":616},[2382],{"type":48,"value":694},{"type":42,"tag":207,"props":2384,"children":2385},{"style":622},[2386],{"type":48,"value":656},{"type":42,"tag":207,"props":2388,"children":2389},{"style":659},[2390],{"type":48,"value":703},{"type":42,"tag":207,"props":2392,"children":2393},{"style":628},[2394],{"type":48,"value":646},{"type":42,"tag":207,"props":2396,"children":2397},{"style":616},[2398],{"type":48,"value":712},{"type":42,"tag":207,"props":2400,"children":2401},{"style":622},[2402],{"type":48,"value":717},{"type":42,"tag":207,"props":2404,"children":2405},{"style":628},[2406],{"type":48,"value":631},{"type":42,"tag":207,"props":2408,"children":2409},{"style":622},[2410],{"type":48,"value":726},{"type":42,"tag":207,"props":2412,"children":2413},{"style":628},[2414],{"type":48,"value":731},{"type":42,"tag":57,"props":2416,"children":2418},{"id":2417},"platform-configuration",[2419],{"type":48,"value":257},{"type":42,"tag":51,"props":2421,"children":2422},{},[2423],{"type":48,"value":2424},"The wrapper script requires two environment variables to locate Burp Suite's bundled Java and JAR file.",{"type":42,"tag":293,"props":2426,"children":2428},{"id":2427},"macos",[2429],{"type":48,"value":2430},"macOS",{"type":42,"tag":195,"props":2432,"children":2434},{"className":197,"code":2433,"language":199,"meta":200,"style":200},"export BURP_JAVA=\"\u002FApplications\u002FBurp Suite Professional.app\u002FContents\u002FResources\u002Fjre.bundle\u002FContents\u002FHome\u002Fbin\u002Fjava\"\nexport BURP_JAR=\"\u002FApplications\u002FBurp Suite Professional.app\u002FContents\u002FResources\u002Fapp\u002Fburpsuite_pro.jar\"\n",[2435],{"type":42,"tag":203,"props":2436,"children":2437},{"__ignoreMap":200},[2438,2471],{"type":42,"tag":207,"props":2439,"children":2440},{"class":209,"line":210},[2441,2447,2452,2456,2461,2466],{"type":42,"tag":207,"props":2442,"children":2444},{"style":2443},"--shiki-light:#9C3EDA;--shiki-default:#C792EA;--shiki-dark:#C792EA",[2445],{"type":48,"value":2446},"export",{"type":42,"tag":207,"props":2448,"children":2449},{"style":214},[2450],{"type":48,"value":2451}," BURP_JAVA",{"type":42,"tag":207,"props":2453,"children":2454},{"style":628},[2455],{"type":48,"value":773},{"type":42,"tag":207,"props":2457,"children":2458},{"style":628},[2459],{"type":48,"value":2460},"\"",{"type":42,"tag":207,"props":2462,"children":2463},{"style":622},[2464],{"type":48,"value":2465},"\u002FApplications\u002FBurp Suite Professional.app\u002FContents\u002FResources\u002Fjre.bundle\u002FContents\u002FHome\u002Fbin\u002Fjava",{"type":42,"tag":207,"props":2467,"children":2468},{"style":628},[2469],{"type":48,"value":2470},"\"\n",{"type":42,"tag":207,"props":2472,"children":2473},{"class":209,"line":536},[2474,2478,2483,2487,2491,2496],{"type":42,"tag":207,"props":2475,"children":2476},{"style":2443},[2477],{"type":48,"value":2446},{"type":42,"tag":207,"props":2479,"children":2480},{"style":214},[2481],{"type":48,"value":2482}," BURP_JAR",{"type":42,"tag":207,"props":2484,"children":2485},{"style":628},[2486],{"type":48,"value":773},{"type":42,"tag":207,"props":2488,"children":2489},{"style":628},[2490],{"type":48,"value":2460},{"type":42,"tag":207,"props":2492,"children":2493},{"style":622},[2494],{"type":48,"value":2495},"\u002FApplications\u002FBurp Suite Professional.app\u002FContents\u002FResources\u002Fapp\u002Fburpsuite_pro.jar",{"type":42,"tag":207,"props":2497,"children":2498},{"style":628},[2499],{"type":48,"value":2470},{"type":42,"tag":293,"props":2501,"children":2503},{"id":2502},"windows",[2504],{"type":48,"value":2505},"Windows",{"type":42,"tag":195,"props":2507,"children":2511},{"className":2508,"code":2509,"language":2510,"meta":200,"style":200},"language-powershell shiki shiki-themes material-theme-lighter material-theme material-theme-palenight","$env:BURP_JAVA = \"C:\\Program Files\\BurpSuiteProfessional\\jre\\bin\\java.exe\"\n$env:BURP_JAR = \"C:\\Program Files\\BurpSuiteProfessional\\burpsuite_pro.jar\"\n","powershell",[2512],{"type":42,"tag":203,"props":2513,"children":2514},{"__ignoreMap":200},[2515,2523],{"type":42,"tag":207,"props":2516,"children":2517},{"class":209,"line":210},[2518],{"type":42,"tag":207,"props":2519,"children":2520},{},[2521],{"type":48,"value":2522},"$env:BURP_JAVA = \"C:\\Program Files\\BurpSuiteProfessional\\jre\\bin\\java.exe\"\n",{"type":42,"tag":207,"props":2524,"children":2525},{"class":209,"line":536},[2526],{"type":42,"tag":207,"props":2527,"children":2528},{},[2529],{"type":48,"value":2530},"$env:BURP_JAR = \"C:\\Program Files\\BurpSuiteProfessional\\burpsuite_pro.jar\"\n",{"type":42,"tag":293,"props":2532,"children":2534},{"id":2533},"linux",[2535],{"type":48,"value":2536},"Linux",{"type":42,"tag":195,"props":2538,"children":2540},{"className":197,"code":2539,"language":199,"meta":200,"style":200},"export BURP_JAVA=\"\u002Fopt\u002FBurpSuiteProfessional\u002Fjre\u002Fbin\u002Fjava\"\nexport BURP_JAR=\"\u002Fopt\u002FBurpSuiteProfessional\u002Fburpsuite_pro.jar\"\n",[2541],{"type":42,"tag":203,"props":2542,"children":2543},{"__ignoreMap":200},[2544,2572],{"type":42,"tag":207,"props":2545,"children":2546},{"class":209,"line":210},[2547,2551,2555,2559,2563,2568],{"type":42,"tag":207,"props":2548,"children":2549},{"style":2443},[2550],{"type":48,"value":2446},{"type":42,"tag":207,"props":2552,"children":2553},{"style":214},[2554],{"type":48,"value":2451},{"type":42,"tag":207,"props":2556,"children":2557},{"style":628},[2558],{"type":48,"value":773},{"type":42,"tag":207,"props":2560,"children":2561},{"style":628},[2562],{"type":48,"value":2460},{"type":42,"tag":207,"props":2564,"children":2565},{"style":622},[2566],{"type":48,"value":2567},"\u002Fopt\u002FBurpSuiteProfessional\u002Fjre\u002Fbin\u002Fjava",{"type":42,"tag":207,"props":2569,"children":2570},{"style":628},[2571],{"type":48,"value":2470},{"type":42,"tag":207,"props":2573,"children":2574},{"class":209,"line":536},[2575,2579,2583,2587,2591,2596],{"type":42,"tag":207,"props":2576,"children":2577},{"style":2443},[2578],{"type":48,"value":2446},{"type":42,"tag":207,"props":2580,"children":2581},{"style":214},[2582],{"type":48,"value":2482},{"type":42,"tag":207,"props":2584,"children":2585},{"style":628},[2586],{"type":48,"value":773},{"type":42,"tag":207,"props":2588,"children":2589},{"style":628},[2590],{"type":48,"value":2460},{"type":42,"tag":207,"props":2592,"children":2593},{"style":622},[2594],{"type":48,"value":2595},"\u002Fopt\u002FBurpSuiteProfessional\u002Fburpsuite_pro.jar",{"type":42,"tag":207,"props":2597,"children":2598},{"style":628},[2599],{"type":48,"value":2470},{"type":42,"tag":51,"props":2601,"children":2602},{},[2603,2605,2611,2613,2619],{"type":48,"value":2604},"Add these exports to your shell profile (",{"type":42,"tag":203,"props":2606,"children":2608},{"className":2607},[],[2609],{"type":48,"value":2610},".bashrc",{"type":48,"value":2612},", ",{"type":42,"tag":203,"props":2614,"children":2616},{"className":2615},[],[2617],{"type":48,"value":2618},".zshrc",{"type":48,"value":2620},", etc.) for persistence.",{"type":42,"tag":293,"props":2622,"children":2624},{"id":2623},"manual-invocation",[2625],{"type":48,"value":2626},"Manual Invocation",{"type":42,"tag":51,"props":2628,"children":2629},{},[2630],{"type":48,"value":2631},"If not using the wrapper script, invoke directly:",{"type":42,"tag":195,"props":2633,"children":2635},{"className":197,"code":2634,"language":199,"meta":200,"style":200},"\"$BURP_JAVA\" -jar -Djava.awt.headless=true \"$BURP_JAR\" \\\n  --project-file=\u002Fpath\u002Fto\u002Fproject.burp [FLAGS]\n",[2636],{"type":42,"tag":203,"props":2637,"children":2638},{"__ignoreMap":200},[2639,2684],{"type":42,"tag":207,"props":2640,"children":2641},{"class":209,"line":210},[2642,2646,2651,2655,2660,2665,2670,2675,2679],{"type":42,"tag":207,"props":2643,"children":2644},{"style":616},[2645],{"type":48,"value":2460},{"type":42,"tag":207,"props":2647,"children":2648},{"style":214},[2649],{"type":48,"value":2650},"$BURP_JAVA",{"type":42,"tag":207,"props":2652,"children":2653},{"style":616},[2654],{"type":48,"value":2460},{"type":42,"tag":207,"props":2656,"children":2657},{"style":622},[2658],{"type":48,"value":2659}," -jar",{"type":42,"tag":207,"props":2661,"children":2662},{"style":622},[2663],{"type":48,"value":2664}," -Djava.awt.headless=true",{"type":42,"tag":207,"props":2666,"children":2667},{"style":628},[2668],{"type":48,"value":2669}," \"",{"type":42,"tag":207,"props":2671,"children":2672},{"style":214},[2673],{"type":48,"value":2674},"$BURP_JAR",{"type":42,"tag":207,"props":2676,"children":2677},{"style":628},[2678],{"type":48,"value":2460},{"type":42,"tag":207,"props":2680,"children":2681},{"style":214},[2682],{"type":48,"value":2683}," \\\n",{"type":42,"tag":207,"props":2685,"children":2686},{"class":209,"line":536},[2687,2692],{"type":42,"tag":207,"props":2688,"children":2689},{"style":622},[2690],{"type":48,"value":2691},"  --project-file=\u002Fpath\u002Fto\u002Fproject.burp",{"type":42,"tag":207,"props":2693,"children":2694},{"style":214},[2695],{"type":48,"value":2696}," [FLAGS]\n",{"type":42,"tag":2698,"props":2699,"children":2700},"style",{},[2701],{"type":48,"value":2702},"html .light .shiki span {color: var(--shiki-light);background: var(--shiki-light-bg);font-style: var(--shiki-light-font-style);font-weight: var(--shiki-light-font-weight);text-decoration: var(--shiki-light-text-decoration);}html.light .shiki span {color: var(--shiki-light);background: var(--shiki-light-bg);font-style: var(--shiki-light-font-style);font-weight: var(--shiki-light-font-weight);text-decoration: var(--shiki-light-text-decoration);}html .default .shiki span {color: var(--shiki-default);background: var(--shiki-default-bg);font-style: var(--shiki-default-font-style);font-weight: var(--shiki-default-font-weight);text-decoration: var(--shiki-default-text-decoration);}html .shiki span {color: var(--shiki-default);background: var(--shiki-default-bg);font-style: var(--shiki-default-font-style);font-weight: var(--shiki-default-font-weight);text-decoration: var(--shiki-default-text-decoration);}html .dark .shiki span {color: var(--shiki-dark);background: var(--shiki-dark-bg);font-style: var(--shiki-dark-font-style);font-weight: var(--shiki-dark-font-weight);text-decoration: var(--shiki-dark-text-decoration);}html.dark .shiki span {color: var(--shiki-dark);background: var(--shiki-dark-bg);font-style: var(--shiki-dark-font-style);font-weight: var(--shiki-dark-font-weight);text-decoration: var(--shiki-dark-text-decoration);}",{"items":2704,"total":2800},[2705,2722,2732,2752,2765,2778,2790],{"slug":2706,"name":2706,"fn":2707,"description":2708,"org":2709,"tags":2710,"stars":23,"repoUrl":24,"updatedAt":2721},"address-sanitizer","detect memory errors during fuzzing","AddressSanitizer detects memory errors during fuzzing. Use when fuzzing C\u002FC++ code to find buffer overflows and use-after-free bugs.\n",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[2711,2714,2717,2718],{"name":2712,"slug":2713,"type":16},"C#","c",{"name":2715,"slug":2716,"type":16},"Debugging","debugging",{"name":14,"slug":15,"type":16},{"name":2719,"slug":2720,"type":16},"Testing","testing","2026-07-17T06:05:14.925095",{"slug":2723,"name":2723,"fn":2724,"description":2725,"org":2726,"tags":2727,"stars":23,"repoUrl":24,"updatedAt":2731},"aflpp","perform multi-core fuzzing of C\u002FC++ projects","AFL++ is a fork of AFL with better fuzzing performance and advanced features. Use for multi-core fuzzing of C\u002FC++ projects.\n",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[2728,2729,2730],{"name":2712,"slug":2713,"type":16},{"name":14,"slug":15,"type":16},{"name":2719,"slug":2720,"type":16},"2026-07-17T06:05:12.433192",{"slug":2733,"name":2733,"fn":2734,"description":2735,"org":2736,"tags":2737,"stars":23,"repoUrl":24,"updatedAt":2751},"agentic-actions-auditor","audit GitHub Actions for security vulnerabilities","Audits GitHub Actions workflows for security vulnerabilities in AI agent integrations including Claude Code Action, Gemini CLI, OpenAI Codex, and GitHub AI Inference. Detects attack vectors where attacker-controlled input reaches AI agents running in CI\u002FCD pipelines, including env var intermediary patterns, direct expression injection, dangerous sandbox configurations, and wildcard user allowlists. Use when reviewing workflow files that invoke AI coding agents, auditing CI\u002FCD pipeline security for prompt injection risks, or evaluating agentic action configurations.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[2738,2741,2744,2747,2750],{"name":2739,"slug":2740,"type":16},"Agents","agents",{"name":2742,"slug":2743,"type":16},"CI\u002FCD","ci-cd",{"name":2745,"slug":2746,"type":16},"Code Analysis","code-analysis",{"name":2748,"slug":2749,"type":16},"GitHub Actions","github-actions",{"name":14,"slug":15,"type":16},"2026-07-18T05:47:48.564744",{"slug":2753,"name":2753,"fn":2754,"description":2755,"org":2756,"tags":2757,"stars":23,"repoUrl":24,"updatedAt":2764},"algorand-vulnerability-scanner","scan Algorand smart contracts for vulnerabilities","Scans Algorand smart contracts for 11 common vulnerabilities including rekeying attacks, unchecked transaction fees, missing field validations, and access control issues. Use when auditing Algorand projects (TEAL\u002FPyTeal).",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[2758,2759,2760,2761],{"name":18,"slug":19,"type":16},{"name":2745,"slug":2746,"type":16},{"name":14,"slug":15,"type":16},{"name":2762,"slug":2763,"type":16},"Smart Contracts","smart-contracts","2026-07-18T05:47:43.989063",{"slug":2766,"name":2766,"fn":2767,"description":2768,"org":2769,"tags":2770,"stars":23,"repoUrl":24,"updatedAt":2777},"ask-questions-if-underspecified","clarify requirements before implementation","Clarify requirements before implementing. Use when serious doubts arise.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[2771,2774],{"name":2772,"slug":2773,"type":16},"Engineering","engineering",{"name":2775,"slug":2776,"type":16},"Productivity","productivity","2026-07-17T06:05:33.543262",{"slug":2779,"name":2779,"fn":2780,"description":2781,"org":2782,"tags":2783,"stars":23,"repoUrl":24,"updatedAt":2789},"atheris","fuzz Python code with Atheris","Atheris is a coverage-guided Python fuzzer based on libFuzzer. Use for fuzzing pure Python code and Python C extensions.\n",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[2784,2787,2788],{"name":2785,"slug":2786,"type":16},"Python","python",{"name":14,"slug":15,"type":16},{"name":2719,"slug":2720,"type":16},"2026-07-17T06:05:14.575191",{"slug":2791,"name":2791,"fn":2792,"description":2793,"org":2794,"tags":2795,"stars":23,"repoUrl":24,"updatedAt":2799},"audit-augmentation","augment code graphs with audit findings","Augments Trailmark code graphs with external audit findings from SARIF static analysis results, weAudit annotation files, and version-gated Trailmark 0.4.x binary-analysis graph exports. Maps findings to graph nodes by file and line overlap, creates severity-based subgraphs, and enables cross-referencing findings with pre-analysis data (blast radius, taint, etc.). Use when projecting SARIF results onto a code graph, overlaying weAudit annotations, importing binary graph findings, cross-referencing Semgrep, CodeQL, or binary-analysis findings with call graph data, or visualizing audit findings in the context of code structure.\n",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[2796,2797,2798],{"name":18,"slug":19,"type":16},{"name":2745,"slug":2746,"type":16},{"name":14,"slug":15,"type":16},"2026-08-01T05:44:54.920542",77,{"items":2802,"total":2900},[2803,2810,2816,2824,2831,2836,2842,2848,2861,2872,2878,2889],{"slug":2706,"name":2706,"fn":2707,"description":2708,"org":2804,"tags":2805,"stars":23,"repoUrl":24,"updatedAt":2721},{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[2806,2807,2808,2809],{"name":2712,"slug":2713,"type":16},{"name":2715,"slug":2716,"type":16},{"name":14,"slug":15,"type":16},{"name":2719,"slug":2720,"type":16},{"slug":2723,"name":2723,"fn":2724,"description":2725,"org":2811,"tags":2812,"stars":23,"repoUrl":24,"updatedAt":2731},{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[2813,2814,2815],{"name":2712,"slug":2713,"type":16},{"name":14,"slug":15,"type":16},{"name":2719,"slug":2720,"type":16},{"slug":2733,"name":2733,"fn":2734,"description":2735,"org":2817,"tags":2818,"stars":23,"repoUrl":24,"updatedAt":2751},{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[2819,2820,2821,2822,2823],{"name":2739,"slug":2740,"type":16},{"name":2742,"slug":2743,"type":16},{"name":2745,"slug":2746,"type":16},{"name":2748,"slug":2749,"type":16},{"name":14,"slug":15,"type":16},{"slug":2753,"name":2753,"fn":2754,"description":2755,"org":2825,"tags":2826,"stars":23,"repoUrl":24,"updatedAt":2764},{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[2827,2828,2829,2830],{"name":18,"slug":19,"type":16},{"name":2745,"slug":2746,"type":16},{"name":14,"slug":15,"type":16},{"name":2762,"slug":2763,"type":16},{"slug":2766,"name":2766,"fn":2767,"description":2768,"org":2832,"tags":2833,"stars":23,"repoUrl":24,"updatedAt":2777},{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[2834,2835],{"name":2772,"slug":2773,"type":16},{"name":2775,"slug":2776,"type":16},{"slug":2779,"name":2779,"fn":2780,"description":2781,"org":2837,"tags":2838,"stars":23,"repoUrl":24,"updatedAt":2789},{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[2839,2840,2841],{"name":2785,"slug":2786,"type":16},{"name":14,"slug":15,"type":16},{"name":2719,"slug":2720,"type":16},{"slug":2791,"name":2791,"fn":2792,"description":2793,"org":2843,"tags":2844,"stars":23,"repoUrl":24,"updatedAt":2799},{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[2845,2846,2847],{"name":18,"slug":19,"type":16},{"name":2745,"slug":2746,"type":16},{"name":14,"slug":15,"type":16},{"slug":2849,"name":2849,"fn":2850,"description":2851,"org":2852,"tags":2853,"stars":23,"repoUrl":24,"updatedAt":2860},"audit-context-building","build architectural context for code analysis","Enables ultra-granular, line-by-line code analysis to build deep architectural context before vulnerability or bug finding.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[2854,2857,2858,2859],{"name":2855,"slug":2856,"type":16},"Architecture","architecture",{"name":18,"slug":19,"type":16},{"name":2745,"slug":2746,"type":16},{"name":2772,"slug":2773,"type":16},"2026-07-18T05:47:40.122449",{"slug":2862,"name":2862,"fn":2863,"description":2864,"org":2865,"tags":2866,"stars":23,"repoUrl":24,"updatedAt":2871},"audit-prep-assistant","prepare codebases for security audits","Prepares codebases for security review using Trail of Bits' checklist. Helps set review goals, runs static analysis tools, increases test coverage, removes dead code, ensures accessibility, and generates documentation (flowcharts, user stories, inline comments).",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[2867,2868,2869,2870],{"name":18,"slug":19,"type":16},{"name":2745,"slug":2746,"type":16},{"name":2772,"slug":2773,"type":16},{"name":14,"slug":15,"type":16},"2026-07-18T05:47:39.210985",{"slug":4,"name":4,"fn":5,"description":6,"org":2873,"tags":2874,"stars":23,"repoUrl":24,"updatedAt":25},{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[2875,2876,2877],{"name":18,"slug":19,"type":16},{"name":21,"slug":22,"type":16},{"name":14,"slug":15,"type":16},{"slug":2879,"name":2879,"fn":2880,"description":2881,"org":2882,"tags":2883,"stars":23,"repoUrl":24,"updatedAt":2888},"c-review","audit C and C++ code","Performs comprehensive C\u002FC++ security review for memory corruption, integer overflows, race conditions, and platform-specific vulnerabilities. Use when auditing native C\u002FC++ applications, reviewing daemons or services for memory safety, or hunting integer overflow \u002F use-after-free \u002F race conditions in userspace code.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[2884,2885,2886,2887],{"name":18,"slug":19,"type":16},{"name":2712,"slug":2713,"type":16},{"name":2745,"slug":2746,"type":16},{"name":14,"slug":15,"type":16},"2026-07-17T06:05:11.333374",{"slug":2890,"name":2890,"fn":2891,"description":2892,"org":2893,"tags":2894,"stars":23,"repoUrl":24,"updatedAt":2899},"cairo-vulnerability-scanner","scan Cairo and StarkNet contracts for vulnerabilities","Scans Cairo\u002FStarkNet smart contracts for 6 critical vulnerabilities including felt252 arithmetic overflow, L1-L2 messaging issues, address conversion problems, and signature replay. Use when auditing StarkNet projects.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[2895,2896,2897,2898],{"name":18,"slug":19,"type":16},{"name":2745,"slug":2746,"type":16},{"name":14,"slug":15,"type":16},{"name":2762,"slug":2763,"type":16},"2026-07-18T05:47:42.84568",111]