
REST API automation for Burp Suite Community Edition. Drop-in Java extension exposing send/repeat/history endpoints over a local HTTP API.
A Burp Suite (Montoya API) extension that exposes Burp's most useful primitives over a
localhost HTTP API so an agentic coding shell (Claude Code, OpenAI Codex, etc.) can drive
Burp from curl.
Works on Burp Community.
Grab the latest release JAR — no clone or build required:
→ cc-bridge-0.1.0.jar (381 KB · sha256 10e21b82a602e43df62ffa2758ef3f51a24af8e1a04affa82ef12d02bde9192c)
All releases: https://github.com/larrypeseckis/burp-cc-bridge/releases
For validation results across 7 PortSwigger Web Security Academy labs spanning 6 vulnerability classes (250 cc-burp calls, 6 solves, 1 documented architectural boundary, 0 GUI fallbacks), see VALIDATION.md.
mvn clean package
# -> target/cc-bridge-0.1.0.jar (shaded fat JAR)
target/cc-bridge-0.1.0.jar, click Next.CC-Bridge listening on http://127.0.0.1:1337
Auth token written to ~/.cc-bridge-token (mode 600)
curl -sH "Authorization: Bearer $(cat ~/.cc-bridge-token)" http://127.0.0.1:1337/health
Override bind host/port at JVM args (Extension settings → JVM properties):
-Dccbridge.host=127.0.0.1 -Dccbridge.port=1337
All endpoints require Authorization: Bearer <token>.
./cc-burp health
./cc-burp send -d '{"method":"GET","url":"https://example.com/"}'
./cc-burp history 'host=example.com&limit=10'
./cc-burp 'history/42'
./cc-burp 'repeat/42' -d '{"headers":{"X-Spoof":"1"}}'
./cc-burp 'collaborator/new' -X POST
~/.cc-bridge-token is missing or empty. Delete it
to rotate.127.0.0.1 by default — never expose this to the network.| Verb | Path | Body / Query |
|---|
| GET | /health | – |
| POST | /send | {method,url,headers?,body?} or {raw, host, port, tls} |
| GET | /history | host=, method=, status=, contains=, `source=proxy |
| GET | /history/{id} | – |
| POST | /repeat/{id} | {headers?, removeHeaders?, body?, method?, url?} |
| POST | /decode | `{input, kind: auto |
| POST | /scan | `{url |
| GET | /scan/{taskId} | – |
| DEL | /scan/{taskId} | – |
| GET | /issues | host=, `severity=HIGH |
| POST | /collaborator/new | – |
| POST | /collaborator/{ctx} | mint another payload on existing ctx |
| GET | /collaborator/{ctx} | poll interactions |