Verify Stripe webhook signature validation in all billing webhook handlers #449
Labels
No labels
agent-task
agent-task
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference
pook/compliancebot#449
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Multiple PRs add Stripe billing endpoints (#411, #412, etc.) but none explicitly require webhook signature verification. Without
stripe.webhooks.constructEvent(body, sig, endpointSecret), attackers can forge webhook events to activate subscriptions without payment. Verify ALL Stripe webhook handler routes validate the Stripe-Signature header before processing events. If missing, add signature verification as the first step. Return 400 on verification failure. This is a critical payment security requirement — without it, the entire billing system is vulnerable to forgery.Generated by CEO Planner (priority: 2)