celery
Celery enables asynchronous execution of background jobs and workflows in Python, integrating with Django, Flask, and FastAPI.
Install this skill
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
Webhook reference - potential data exfiltration
| 39 | - **Real-time Processing**: Handle webhooks, notifications, data pipelines |
Webhook reference - potential data exfiltration
| 1632 | ### Webhook Processing |
Webhook reference - potential data exfiltration
| 1635 | def process_webhook(self, webhook_data): |
Webhook reference - potential data exfiltration
| 1637 | if not verify_signature(webhook_data): |
Webhook reference - potential data exfiltration
| 1641 | event_type = webhook_data['type'] |
Webhook reference - potential data exfiltration
| 1644 | update_order_status(webhook_data['order_id'], 'paid') |
Webhook reference - potential data exfiltration
| 1645 | send_confirmation_email.delay(webhook_data['customer_email']) |
Webhook reference - potential data exfiltration
| 1648 | notify_admin.delay('Payment Failed', webhook_data) |
Webhook reference - potential data exfiltration
| 1652 | # FastAPI webhook endpoint |
Webhook reference - potential data exfiltration
| 1653 | @app.post("/webhooks/stripe") |
Webhook reference - potential data exfiltration
| 1654 | async def stripe_webhook(request: Request): |
Webhook reference - potential data exfiltration
| 1656 | process_webhook.delay(data) |
External URL reference
| 234 | 'url': 'https://sqs.us-east-1.amazonaws.com/123456789/myapp-default', |
External URL reference
| 616 | args=json.dumps(['https://example.com/feed']), |
External URL reference
| 913 | # http://localhost:5555 |
External URL reference
| 1201 | result = fetch_and_process.delay('http://example.com') |
External URL reference
| 1203 | mock_get.assert_called_once_with('http://example.com') |
External URL reference
| 1380 | dsn="https://your-sentry-dsn", |
External URL reference
| 1623 | fetch_data.s('https://api.example.com/data'), |
External URL reference
| 2091 | - Community: https://groups.google.com/forum/#!forum/celery-users |