google/dev-mitm-proxy
MITM/network intercept development for Capsem -- the air-gapped network interception layer. Use when working on TLS termination, HTTP inspection, cert minting, SSE parsing, telemetry recording, or debugging network issues. Covers the full proxy pipeline, content-encoding handling, and lessons learned from past bugs.
npx skills add https://github.com/google/capsem --skill dev-mitm-proxy
The MITM proxy is the network engine's HTTPS interception boundary. It
intercepts traffic from the air-gapped guest VM, normalizes it into typed facts,
hands a SecurityEvent to the security engine, and preserves allowed runtime
bytes for upstream. Treat it as a system, not a collection of hacks -- every
capability must be general-purpose.
Network code parses transport bytes, routes traffic, and emits typed
SecurityEvent facts. It must not broker credentials, create credential refs,
run CEL/security decisions, or sanitize ledger projections. Those belong to the
security engine plugin rail. Every security plugin has the same data contract:
it receives a SecurityEvent and returns a SecurityEvent; the plugin stage
only controls ordering (preprocess, postprocess, or logging).
There are two materialization paths and they must never be collapsed:
resolve a broker ref back to a real credential because the protocol needs it.
session.db,structured logs, route JSON, and UI stats. It must contain only broker refs,
hashes, bounded previews, typed detections, and plugin execution evidence.
No credential logic belongs in HTTP header formatters, DB readers, frontend
transforms, debug harnesses, or route adapters. If a future change needs
capture, injection, redaction, threat intel, or PII handling, implement it as a
security plugin stage over SecurityEvent -> SecurityEvent.
Guest curl -> iptables REDIRECT -> capsem-net-proxy (guest, port 10443)
-> vsock port 5002 -> Host MITM proxy
-> SNI parse -> network metadata capture
-> TLS terminate (rustls, per-domain cert minted from Capsem CA)
-> HTTP request parse (hyper)
-> SecurityEvent -> SecurityRuleSet + plugin rail
-> Forward to real upstream over TLS
-> Record telemetry to session DB
-> Stream response back to guest
| File | What |
|------|------|
| crates/capsem-core/src/net/mitm_proxy.rs | Async MITM proxy (rustls + hyper): TLS termination, HTTP inspection, upstream bridging |
| crates/capsem-core/src/net/cert_authority.rs | CA loader + on-demand domain cert minting with RwLock cache |
| crates/capsem-core/src/security_engine/ | Rule/plugin/decision rail over SecurityEvent |
| crates/capsem-core/src/net/sni.rs | SNI parser for TLS ClientHello |
| crates/capsem-agent/src/net_proxy.rs | Guest-side TCP-to-vsock relay |
The proxy MUST handle response decompression as a general capability. This is not optional, not per-feature.
Accept-Encoding in outgoing requests to only allow encodings we can decompress (gzip at minimum)Why this matters: Failing to handle gzip on Anthropic SSE responses caused all model/token/cost metadata to be NULL. The SSE parser received compressed garbage. This went undetected because Google's API happened to not compress SSE in testing. The fix was general-purpose decompression, not an Anthropic-specific hack.
The ai_traffic parsers (openai.rs, google.rs, request_parser.rs) deserialize LLM request/response bodies that can be megabytes. Never use serde_json::Value for struct fields that hold large unconstrained JSON (tool call args, function responses, model outputs). Use Box<serde_json::value::RawValue> for fields that are only stringified, and remove unused fields entirely. See /dev-rust-patterns for the full pattern and examples.
AI provider APIs (Anthropic, OpenAI, Google) use Server-Sent Events for streaming responses. The proxy parses SSE to extract model names, token counts, and cost data for telemetry.
SSE parsing happens AFTER decompression. The body must be plaintext UTF-8 by the time the SSE parser sees it.
Only emit model_calls telemetry for actual LLM API paths (e.g., /v1/messages, /v1/chat/completions), not every request to an AI provider domain. Health checks, auth endpoints, and static assets should not create model_call rows.
facts into a SecurityEvent.
SecurityRuleSet; profile defaultsare normal late-priority rules.
SecurityEvent object:preprocess, rule evaluation, postprocess, then logging before ledger
handoff.
materialization writes the sanitized/enriched event to session.db, logs,
routes, and UI stats.
security/keys/capsem-ca.key + security/keys/capsem-ca.crt(ECDSA P-256), compiled in via include_str! from net/cert_authority.rs
RwLock<HashMap>update-ca-certificates + certifi patch + env varsRead these for the exact SSE format, request/response shapes, and telemetry extraction points:
references/anthropic-wire.md -- Anthropic Messages API (event-typed SSE, gzip gotcha)references/openai-wire.md -- OpenAI Chat Completions + Responses API (data-only SSE, [DONE] sentinel)references/google-wire.md -- Google Gemini (complete JSON per event, no tool call IDs, camelCase)cargo test -p capsem-core net (policy evaluation, SNI parsing, cert minting)just exec "capsem-doctor -k network" (TLS trust chain, port blocking, domain filtering)just exec "curl -s https://api.anthropic.com/" then python3 scripts/check_session.py (check net_events)Take google/dev-mitm-proxy from the repository into ~/.claude/skills for personal
use, or into .claude/skills inside a project.
The agent identifies a skill by the name field in its header. Two skills with the
same name cannot sit side by side — one of them will be ignored.