Auditing Webhook Authenticity And Callback Trust

Audit both directions of webhook trust: an inbound handler that acts on a payload without proving it authentic, and an outbound fetch of a caller-supplied URL that reaches internal targets. Covers inbound handlers with no signature check, a signature compared in non-constant time, a signature computed over a re-serialized body instead of the exact raw bytes, a verification result that is computed but never enforced, and no timestamp or replay defense; and outbound callback or fetch URLs validated by substring or blocklist, or by a single pre-connect lookup that a redirect or a rebind defeats. Use when reviewing code that receives a signed webhook and performs a state change, or that fetches a URL the caller controls. The inbound request or the caller-supplied URL is the source, the state-changing handler or the server-side fetch is the sink, and a missing or bypassable trust check between them is the bug.

UnboundCompute 4fb70b1 9.7 KB Updated

File contents

UnboundCompute/security-agent-skills/tree/main/skills/auditing-webhook-authenticity-and-callback-trust commit 4fb70b12c5

Frequently asked questions

npx skillmds@latest add unboundcompute/auditing-webhook-authenticity-and-callback-trust