Wirebrowser is a CDP-based runtime instrumentation platform for the browser. Think Frida, but for JavaScript running in Chrome — without monkeypatching.

Joined November 2025
9 Photos and videos
Stop stepping manually. Skip execution until a condition flips and jump exactly where it happens: 🔥 loggedIn became true → line X (no monkeypatching, just CDP)
1
1
159
Most JavaScript functions aren’t accessible from window. You can still hook them, follow their return, and flip application state at runtime.
2
2
221
Main limitation: no real async invocation identity in CDP. Correlation across async boundaries is heuristic (stack similarity timing).
118
You can hook JavaScript functions at runtime (even inside closures) without monkeypatching. Wirebrowser v0.6.1 Frida-style instrumentation for the browser: onEnter / onLeave handlers, return control.
6
341
Some data used to generate network requests only exists in runtime memory. Wirebrowser → Heap Snapshot → search
1
202
Trace → Hook → Control Wirebrowser v0.5.0 - Live Hooks: • Identify the function via Origin Trace • Hook it live • Override return values • Inject arbitrary code Runtime instrumentation powered by CDP.
3
234
Wirebrowser 0.4.0 is out. Request workflow improvements, Origin Trace fixes, and better stability. macOS builds are now signed & notarised. Landing page is live → wirebrowser.dev

2
244
From network interception to API collection. Even heavy debuggers need to relax 😉 Wirebrowser isn’t just advanced tooling — it’s a complete workflow for everyday debugging tasks.
1
278
Wirebrowser 0.3.0 dev builds ✅ Cross-platform Electron builds Custom Chrome management Unsigned binaries for now. Signed release coming next.
3
203
Network → Memory → DevTools Rewrite a response → see the UI change → grab the JS object born from that response directly in the live heap → inspect/patch it from DevTools. No instrumentation. Just CDP.
2
244
DevTools lets you inspect and edit objects — but only if you already know where they are.🔍 Wirebrowser’s Live Object Search scans the JS heap in realtime, finds the exact runtime object, and lets you (monkey)patch it. 🐒⚙️ BDHS Live Search = origin runtime control.🧩
4
717
New in Wirebrowser: Breakpoint-Driven Heap Search (BDHS) — step-out debugging temporal heap snapshots to identify the user-land function where a JavaScript value is created, even across async boundaries. Writeup: fcavallarin.github.io/wirebr…
2
23
104
28,697
👀 Just launched Wirebrowser — a desktop app for intercepting & rewriting HTTP traffic *inside the browser* via the Chrome DevTools Protocol Also supports: 🧠 Inspect JS heap runtime objects 📂 API collections (Postman-style) github.com/fcavallarin/wireb… #CyberSecurity #DevTools
3
291