Skip to main content

webhooks

Facilitates HTTP callbacks for events, enabling seamless integrations and real-time notifications between systems.

Install this skill

or
54/100

Security score

The webhooks skill was audited on Feb 24, 2026 and we found 14 security issues across 3 threat categories. Review the findings below before installing.

Categories Tested

Security Issues

medium line 40

Template literal with variable interpolation in command context

SourceSKILL.md
40res.status(400).send(`Webhook Error: ${err.message}`);
medium line 2

Webhook reference - potential data exfiltration

SourceSKILL.md
2name: webhooks
medium line 3

Webhook reference - potential data exfiltration

SourceSKILL.md
3description: Webhooks HTTP callbacks for events. Use for integrations.
medium line 6

Webhook reference - potential data exfiltration

SourceSKILL.md
6# Webhooks
medium line 8

Webhook reference - potential data exfiltration

SourceSKILL.md
8Webhooks are "user-defined HTTP callbacks". They are triggered by some event in a source system (e.g., Stripe, GitHub) and sent to a destination system (Your API) to notify it.
low line 19

Webhook reference - potential data exfiltration

SourceSKILL.md
19// Your Webhook Handler (Receiver)
low line 21

Webhook reference - potential data exfiltration

SourceSKILL.md
21"/webhooks/stripe",
low line 28

Webhook reference - potential data exfiltration

SourceSKILL.md
28const event = stripe.webhooks.constructEvent(
low line 40

Webhook reference - potential data exfiltration

SourceSKILL.md
40res.status(400).send(`Webhook Error: ${err.message}`);
medium line 50

Webhook reference - potential data exfiltration

SourceSKILL.md
50Since Webhook endpoints are public, anyone can POST to them. You must verify the **Signature** (HMAC) usually sent in a header to prove the sender's identity.
medium line 78

Webhook reference - potential data exfiltration

SourceSKILL.md
78- [Stripe Webhooks Guide](https://stripe.com/docs/webhooks)
medium line 79

Webhook reference - potential data exfiltration

SourceSKILL.md
79- [Standard Webhooks](https://www.standardwebhooks.com/)
low line 78

External URL reference

SourceSKILL.md
78- [Stripe Webhooks Guide](https://stripe.com/docs/webhooks)
low line 79

External URL reference

SourceSKILL.md
79- [Standard Webhooks](https://www.standardwebhooks.com/)
Scanned on Feb 24, 2026
View Security Dashboard