⚠ Authorized testing only. Disclosed public bug-bounty data for defensive/educational research. Use payloads only against systems you are permitted to test.
LogoThe Hacktivity Field GuideReal-world web hacking, catalogued
🔎
Field Guide/Webhooks & Integrations

Webhooks & Integrations

> Webhooks and "call this URL for me" integrations hand you a server-side HTTP client: you supply a > destination, the server connects to it. That makes them a first-class SSRF surface, a secret > leak surface (the server sends signing secrets/tokens to the URL), and sometimes an injection > surface (your payload lands in another tenant's pipeline).

§Where to look

webhooks, OAuth redirect_uri and notification_url, RSS/feed importers, "test webhook" buttons.

§What to test

webhook senders follow redirects — host an allowlisted URL that 302s to the metadata service. See 0 and 1.

headers. A leaked signing secret lets you forge webhook events. (See 0.)

allowlist (same bypass matrix).

it's stored XSS/HTML injection (see 0).

§Remediation

redirects to new hosts; sign requests but never leak the secret to attacker-controlled URLs.

§References