Skip to main content

aws-serverless-eda

Provides expert guidance for building serverless applications and event-driven architectures on AWS using best practices.

Install this skill

or
76/100

Security score

The aws-serverless-eda skill was audited on Mar 1, 2026 and we found 16 security issues across 3 threat categories. Review the findings below before installing.

Categories Tested

Security Issues

medium line 568

Webhook reference - potential data exfiltration

SourceSKILL.md
568### Pattern 5: Webhook Processing
medium line 570

Webhook reference - potential data exfiltration

SourceSKILL.md
570Handle external webhooks:
low line 573

Webhook reference - potential data exfiltration

SourceSKILL.md
573// API Gateway endpoint for webhooks
low line 574

Webhook reference - potential data exfiltration

SourceSKILL.md
574const webhookApi = new apigateway.RestApi(this, 'WebhookApi', {
low line 575

Webhook reference - potential data exfiltration

SourceSKILL.md
575restApiName: 'webhooks',
low line 578

Webhook reference - potential data exfiltration

SourceSKILL.md
578const webhook = webhookApi.root.addResource('webhook');
low line 579

Webhook reference - potential data exfiltration

SourceSKILL.md
579webhook.addMethod('POST', new apigateway.LambdaIntegration(webhookFunction, {
low line 584

Webhook reference - potential data exfiltration

SourceSKILL.md
584// Lambda handler validates and queues webhook
low line 586

Webhook reference - potential data exfiltration

SourceSKILL.md
586// Validate webhook signature
low line 135

Access to .env file

SourceSKILL.md
135Bucket: process.env.BUCKET_NAME,
low line 236

Access to .env file

SourceSKILL.md
236TableName: process.env.TABLE_NAME,
low line 250

Access to .env file

SourceSKILL.md
250TableName: process.env.TABLE_NAME,
low line 444

Access to .env file

SourceSKILL.md
444TableName: process.env.EVENT_STORE,
low line 455

Access to .env file

SourceSKILL.md
455TableName: process.env.EVENT_STORE,
low line 594

Access to .env file

SourceSKILL.md
594QueueUrl: process.env.QUEUE_URL,
low line 745

External URL reference

SourceSKILL.md
745- **AWS Serverless Workshops**: https://serverlessland.com/learn?type=Workshops
Scanned on Mar 1, 2026
View Security Dashboard