Skip to main content

celery

Celery enables asynchronous execution of background jobs and workflows in Python, integrating with Django, Flask, and FastAPI.

Install this skill

or
72/100

Security score

The celery skill was audited on Feb 28, 2026 and we found 20 security issues across 2 threat categories. Review the findings below before installing.

Categories Tested

Security Issues

medium line 39

Webhook reference - potential data exfiltration

SourceSKILL.md
39- **Real-time Processing**: Handle webhooks, notifications, data pipelines
medium line 1632

Webhook reference - potential data exfiltration

SourceSKILL.md
1632### Webhook Processing
low line 1635

Webhook reference - potential data exfiltration

SourceSKILL.md
1635def process_webhook(self, webhook_data):
low line 1637

Webhook reference - potential data exfiltration

SourceSKILL.md
1637if not verify_signature(webhook_data):
low line 1641

Webhook reference - potential data exfiltration

SourceSKILL.md
1641event_type = webhook_data['type']
low line 1644

Webhook reference - potential data exfiltration

SourceSKILL.md
1644update_order_status(webhook_data['order_id'], 'paid')
low line 1645

Webhook reference - potential data exfiltration

SourceSKILL.md
1645send_confirmation_email.delay(webhook_data['customer_email'])
low line 1648

Webhook reference - potential data exfiltration

SourceSKILL.md
1648notify_admin.delay('Payment Failed', webhook_data)
low line 1652

Webhook reference - potential data exfiltration

SourceSKILL.md
1652# FastAPI webhook endpoint
low line 1653

Webhook reference - potential data exfiltration

SourceSKILL.md
1653@app.post("/webhooks/stripe")
low line 1654

Webhook reference - potential data exfiltration

SourceSKILL.md
1654async def stripe_webhook(request: Request):
low line 1656

Webhook reference - potential data exfiltration

SourceSKILL.md
1656process_webhook.delay(data)
low line 234

External URL reference

SourceSKILL.md
234'url': 'https://sqs.us-east-1.amazonaws.com/123456789/myapp-default',
low line 616

External URL reference

SourceSKILL.md
616args=json.dumps(['https://example.com/feed']),
low line 913

External URL reference

SourceSKILL.md
913# http://localhost:5555
low line 1201

External URL reference

SourceSKILL.md
1201result = fetch_and_process.delay('http://example.com')
low line 1203

External URL reference

SourceSKILL.md
1203mock_get.assert_called_once_with('http://example.com')
low line 1380

External URL reference

SourceSKILL.md
1380dsn="https://your-sentry-dsn",
low line 1623

External URL reference

SourceSKILL.md
1623fetch_data.s('https://api.example.com/data'),
low line 2091

External URL reference

SourceSKILL.md
2091- Community: https://groups.google.com/forum/#!forum/celery-users
Scanned on Feb 28, 2026
View Security Dashboard
Installation guide →