Skip to main content

stripe-integration

Facilitates seamless Stripe payment integration for secure, PCI-compliant transactions, including subscriptions and webhooks.

Install this skill

or
26/100

Security score

The stripe-integration skill was audited on Mar 3, 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 52

Webhook reference - potential data exfiltration

SourceSKILL.md
52### 2. Webhooks
medium line 218

Webhook reference - potential data exfiltration

SourceSKILL.md
218## Webhook Handling
medium line 220

Webhook reference - potential data exfiltration

SourceSKILL.md
220### Secure Webhook Endpoint
low line 229

Webhook reference - potential data exfiltration

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

Webhook reference - potential data exfiltration

SourceSKILL.md
230def webhook():
low line 235

Webhook reference - potential data exfiltration

SourceSKILL.md
235event = stripe.Webhook.construct_event(
medium line 284

Webhook reference - potential data exfiltration

SourceSKILL.md
284### Webhook Best Practices
low line 289

Webhook reference - potential data exfiltration

SourceSKILL.md
289def verify_webhook_signature(payload, signature, secret):
low line 290

Webhook reference - potential data exfiltration

SourceSKILL.md
290"""Manually verify webhook signature."""
low line 299

Webhook reference - potential data exfiltration

SourceSKILL.md
299def handle_webhook_idempotently(event_id, handler):
low line 300

Webhook reference - potential data exfiltration

SourceSKILL.md
300"""Ensure webhook is processed exactly once."""
low line 311

Webhook reference - potential data exfiltration

SourceSKILL.md
311# Stripe will retry failed webhooks
medium line 429

Webhook reference - potential data exfiltration

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

Webhook reference - potential data exfiltration

SourceSKILL.md
434- **assets/webhook-handler.py**: Complete webhook processor
medium line 439

Webhook reference - potential data exfiltration

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

Webhook reference - potential data exfiltration

SourceSKILL.md
4402. **Idempotency**: Handle webhook events idempotently
medium line 450

Webhook reference - potential data exfiltration

SourceSKILL.md
450- **Not Verifying Webhooks**: Always verify webhook signatures
medium line 451

Webhook reference - potential data exfiltration

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

External URL reference

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

External URL reference

SourceSKILL.md
99cancel_url='https://yourdomain.com/cancel',
low line 120

External URL reference

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

External URL reference

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

External URL reference

SourceSKILL.md
128cancel_url='https://yourdomain.com/cancel',
low line 213

External URL reference

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