What problem does it solve?
When a bug bounty target's request carries a sign, sig, HMAC, nonce, or anti-bot token that Burp Repeater cannot replay, this Skill guides you through recovering just enough of the client-side signer to reproduce the request outside the browser or app, so you can reach and fuzz the protected API behind it.
Core Features & Use Cases
- Packet-First Gate: Capture the real request and prove whether replay actually fails before spending time reversing, killing false assumptions early.
- Staged Reversal Spine: A locate → recover → runtime → validation → replay workflow that traces backward from the signature field (writer → builder → entry → source) using Chrome DevTools breakpoints and console hooks.
- Input Classification & Replay: Classify signer inputs (timestamp, nonce, deviceId, body, secret key) to decide whether you can re-sign offline, reuse the page's own signer, or bridge through a headless browser, then fuzz for IDOR, BOLA, and business-logic bugs.
- Use Case: A signed order API returns 401 on replay. You hook the page's sign function in DevTools, extract the hardcoded HMAC secret from the JS bundle, rebuild the signer in Python, and sweep order IDs to demonstrate an IDOR behind the signature.
Quick Start
Ask the AI to help you replay a signed request that Burp Repeater cannot replay, starting by capturing the real request and testing whether it replays unchanged.