top of page

API Hacking: Webhooks and Callback Trust Issues

1 hour ago
1 min read

Webhooks are APIs that call you back. Teams forget that inbound webhook handlers are public attack surface with business side effects.


On authorized tests, map every callback URL, signing scheme, and retry behavior before you poke anything destructive.

API Hacking: Webhooks and Callback Trust Issues


What to verify


  • Signature validation that actually covers the body

  • Replay windows and idempotency keys

  • Callbacks that fetch attacker-controlled URLs (SSRF-shaped risk)

  • Error messages that leak secrets or internal hosts



Remediation mindset


Prefer allow-listed destinations, rotating secrets, and clear replay protection. Document impact as unauthorized state changes, not just “interesting traffic.”




Worth reading next


  • Web Hacking for Pentesters: Server-Side Request Forgery (SSRF)

  • API Hacking: Rate Limiting and Resource Consumption

Comments


© 2022 by SapiensHack.com (Security)

bottom of page