Skip to main content

stripe-integration

Facilitates seamless Stripe payment integration for secure, PCI-compliant transactions, subscriptions, and customer management.

Install this skill

or
26/100

Security score

The stripe-integration skill was audited on Mar 4, 2026 and we found 26 security issues across 2 threat categories. Review the findings below before installing.

Categories Tested

Security Issues

medium line 3

Webhook reference - potential data exfiltration

SourceSKILL.md
3description: Implement Stripe payment processing for robust, PCI-compliant payment flows including checkout, subscriptions, and webhooks. Use when integrating Stripe payments, building subscription sy
medium line 8

Webhook reference - potential data exfiltration

SourceSKILL.md
8Master Stripe payment processing integration for robust, PCI-compliant payment flows including checkout, subscriptions, webhooks, and refunds.
medium line 40

Webhook reference - potential data exfiltration

SourceSKILL.md
40### 2. Webhooks
medium line 206

Webhook reference - potential data exfiltration

SourceSKILL.md
206## Webhook Handling
medium line 208

Webhook reference - potential data exfiltration

SourceSKILL.md
208### Secure Webhook Endpoint
low line 217

Webhook reference - potential data exfiltration

SourceSKILL.md
217@app.route('/webhook', methods=['POST'])
low line 218

Webhook reference - potential data exfiltration

SourceSKILL.md
218def webhook():
low line 223

Webhook reference - potential data exfiltration

SourceSKILL.md
223event = stripe.Webhook.construct_event(
medium line 272

Webhook reference - potential data exfiltration

SourceSKILL.md
272### Webhook Best Practices
low line 277

Webhook reference - potential data exfiltration

SourceSKILL.md
277def verify_webhook_signature(payload, signature, secret):
low line 278

Webhook reference - potential data exfiltration

SourceSKILL.md
278"""Manually verify webhook signature."""
low line 287

Webhook reference - potential data exfiltration

SourceSKILL.md
287def handle_webhook_idempotently(event_id, handler):
low line 288

Webhook reference - potential data exfiltration

SourceSKILL.md
288"""Ensure webhook is processed exactly once."""
low line 299

Webhook reference - potential data exfiltration

SourceSKILL.md
299# Stripe will retry failed webhooks
medium line 417

Webhook reference - potential data exfiltration

SourceSKILL.md
417- **references/webhook-handling.md**: Webhook security and processing
medium line 422

Webhook reference - potential data exfiltration

SourceSKILL.md
422- **assets/webhook-handler.py**: Complete webhook processor
medium line 427

Webhook reference - potential data exfiltration

SourceSKILL.md
4271. **Always Use Webhooks**: Don't rely solely on client-side confirmation
medium line 428

Webhook reference - potential data exfiltration

SourceSKILL.md
4282. **Idempotency**: Handle webhook events idempotently
medium line 438

Webhook reference - potential data exfiltration

SourceSKILL.md
438- **Not Verifying Webhooks**: Always verify webhook signatures
medium line 439

Webhook reference - potential data exfiltration

SourceSKILL.md
439- **Missing Webhook Events**: Handle all relevant webhook events
low line 86

External URL reference

SourceSKILL.md
86success_url='https://yourdomain.com/success?session_id={CHECKOUT_SESSION_ID}',
low line 87

External URL reference

SourceSKILL.md
87cancel_url='https://yourdomain.com/cancel',
low line 108

External URL reference

SourceSKILL.md
108'images': ['https://example.com/product.jpg'],
low line 115

External URL reference

SourceSKILL.md
115success_url='https://yourdomain.com/success?session_id={CHECKOUT_SESSION_ID}',
low line 116

External URL reference

SourceSKILL.md
116cancel_url='https://yourdomain.com/cancel',
low line 201

External URL reference

SourceSKILL.md
201return_url='https://yourdomain.com/account',
Scanned on Mar 4, 2026
View Security Dashboard