Trust setup over USB
Plug a phone in, hit Start, and Pane installs its root CA, configures the device’s Wi-Fi proxy, and pins everything down for the session. No manual fiddling with profiles or root certs.
Trust setup over USB
Plug a phone in, hit Start, and Pane installs its root CA, configures the device’s Wi-Fi proxy, and pins everything down for the session. No manual fiddling with profiles or root certs.
MITM HTTPS, decoded
Per-host leaf certificates minted from a local root CA. Every request your app makes shows up as a parsed capture — headers, body, timing — with no extra config on the phone side.
Stub or patch responses
Replace a whole response with a canned one, or forward to the real
server and patch a single field (user.uid, a token, a timestamp).
Patch mode keeps server-generated state fresh.
Filtering that scales
A small DSL on the search bar: host:api.example.com, status:5..,
!error:tls_handshake, plus barewords. Saved filters live in the
sidebar.
# Filter the capture listhost:rc1.test.dev-og.com status:200..299!error:pinning method:POST# Stub a response — replace the whole bodyMatch: POST /api/auth, params login=rootMode: StubStatus: 200Body: {"token": "test-stub-token", "user": {"fio": "Тестовый"}}# Patch a response — keep the real token, swap one fieldMatch: POST /api/auth, params login=rootMode: PatchPatches: set user.fio = "Тестовый" set user.uid = 777