FEATURE 06 ยท HTTPS INTERCEPT PROXY

A pocket-sized Charles Proxy.

Capture outbound REST calls, break on request bodies, modify network parameters, and replay requests locally through an ultra-premium debugger interface.

Offline-First HTTPS Debugging

Analyzing application network communication usually requires heavy developer suites. Noyare's embedded HTTPS Interceptor Proxy delivers a full-featured network debugging suite directly on your desktop.

POST /v1/chat/completions HTTP/1.1
Host: api.openai.com
Authorization: Bearer sk-proj-...
Content-Type: application/json
{
"model": "gpt-4o",
"messages": [{"role": "user", "content": "intercepted"}]
}

Modify header strings or request payloads, and replay mutated requests straight inside our local Repeater panel.

INTERACTIVE TEST CONSOLE

๐Ÿ›ก๏ธ How the HTTPS Intercept Proxy Works

Decrypting secure SSL/TLS traffic requires a trusted local proxy pipeline. Noyare achieves this with a native Rust socket-forwarding listener:

  • Local Cert Generation: Spawns a fully offline local private key using rcgen inside our Rust engine, creating a unique Certificate Authority root.
  • System Proxy Hooks: Toggles standard system environment proxy variables (like HTTP_PROXY and HTTPS_PROXY pointing to 127.0.0.1:9090) when capture is active.
  • MitM Decryption: Performs safe, sandboxed Man-in-the-Middle decryption in-memory. Your raw key files and decryptions never leave your solid-state disk.