feat(skills): add client-reverse skill (request-signing / anti-bot token reversal)#63
Open
letztek wants to merge 1 commit into
Open
feat(skills): add client-reverse skill (request-signing / anti-bot token reversal)#63letztek wants to merge 1 commit into
letztek wants to merge 1 commit into
Conversation
…ken reversal) Ports VulnClaw's client-reverse skill into a bug-bounty-framed skill: packet-first replay gate, locate->recover->runtime->validation->replay staging, sign-input isolation, fetch/XHR hooking, JS deobfuscation, and reaching protected APIs to hunt IDOR/auth/business-logic. Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
908c417 to
d0eb4bb
Compare
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
What
Adds a new focused skill
skills/client-reverse/SKILL.md(plus one reference docreferences/browser-js-signing.md) covering client-side request-signing and anti-bot token reversal for bug bounty — the case where asign/sig/X-Signature/nonce/X-Sensor-Data/encrypted-body field stops you from replaying a request in Burp/mitmproxy.Core methodology is packet-first staging: capture the real request → prove replay works unchanged → only reverse the signer if replay actually fails. Walks the
locate → recover → runtime → validation → replayspine, teaching:writer ← builder ← entry ← source){}pretty-print + global search)Uses standard CLI tooling only (Chrome DevTools, Burp, mitmproxy, Python
requests, Selenium/Playwright, andapktool/jadx/objection/fridaCLI for the mobile variant) — no new MCP dependency.Why
Nothing in the current skill set covers reaching an API that's gated by a client-computed signature, despite this being a common wall on high-value targets. The bounty framing is explicit throughout — the signing weakness alone is N/A; the payoff is the IDOR / Broken Auth / Mass Assignment / Business Logic bug you reach through it, cross-referenced to
web2-vuln-classesandweb2-recon. Includes a "what's submittable vs N/A" verdict table to keep hunters from reporting "I reversed your algorithm" as a finding.References
Grounded against current web research, with only verifiable disclosures cited:
No dollar figures or CVEs were invented — only verifiable disclosures are cited, and patterns without a confirmed payout are labeled as patterns.
Merge order
Net-new skill directory; does not modify
web2-vuln-classesor any existing file. Adds a row to the CLAUDE.md skills table. No conflicts expected.