AWS Lambda Function Deletion
Description
Identifies the deletion of an AWS Lambda function. Deleting a function removes its code, configuration, versions, and aliases. Adversaries may delete functions to disrupt business operations and automated workflows, to destroy attacker-deployed backdoors and remove evidence after achieving their objective, or to inhibit incident response. Because function deletion is destructive and often irreversible without redeployment, deletions performed by unexpected principals or outside change windows should be reviewed.
Query · kuery
data_stream.dataset: "aws.cloudtrail"
and event.provider: "lambda.amazonaws.com"
and event.action: (DeleteFunction or DeleteFunction20*)
and event.outcome: "success"
and not user_agent.original: (*Terraform* or *Pulumi*)
Investigation fields
Pivot points the source recommends for triage.
@timestampuser.nameuser_agent.originalsource.ipaws.cloudtrail.user_identity.arnaws.cloudtrail.user_identity.typeaws.cloudtrail.user_identity.access_key_idaws.cloudtrail.user_identity.session_context.session_issuer.arnaws.cloudtrail.request_parametersaws.cloudtrail.response_elementsevent.actionevent.outcomecloud.account.idcloud.region
Known false positives
- Lambda functions are routinely deleted during application decommissioning, environment teardown, and infrastructure-as-code apply/destroy cycles. Verify whether the principal in `aws.cloudtrail.user_identity.arn` and the deleted function are expected for the workload, and whether the change aligns with an approved maintenance or deployment window. Known deployment roles and automation can be excluded after validation.
Analyst notes
Investigating AWS Lambda Function Deletion
Deleting an AWS Lambda function removes its code, configuration, published versions, and aliases. This can be a destructive action that disrupts serverless workloads and automation, or a cleanup step an adversary uses to remove a backdoor function and erase evidence after their objective is met.
This rule detects successful DeleteFunction calls. Investigate whether the principal and the deleted function are expected, and whether the deletion correlates with other suspicious activity.
Possible investigation steps
- Identify the actor in
aws.cloudtrail.user_identity.arnandaws.cloudtrail.user_identity.type, and reviewsource.ipanduser_agent.originalto determine how the deletion was performed (console, CLI, SDK, automation). - Inspect
aws.cloudtrail.request_parametersfor thefunctionNameand map it to its application, owner, and environment (prod, staging, dev). - Determine whether the deletion aligns with an approved change, decommissioning, or infrastructure-as-code destroy operation by comparing
@timestampagainst deployment and change-management records. - Correlate with recent activity by the same principal or access key, such as
CreateFunction,UpdateFunctionCode,AddPermission,CreateEventSourceMapping, log-group deletions, or other destructive or evasive actions. - Verify whether multiple functions were deleted in a short window, which may indicate broad disruption rather than a single planned change.
False positive analysis
- Function deletions are common during decommissioning and infrastructure-as-code apply/destroy cycles. Deletions by approved deployment roles, CI/CD pipelines, or platform automation are expected. Tune on
aws.cloudtrail.user_identity.arn,user_agent.original, or known automation roles after validation.
Response and remediation
- If the deletion is unauthorized, restore the function from source control or an infrastructure-as-code definition and confirm its code, configuration, and execution role match a known-good state.
- Review CloudTrail for related destructive or evasive actions by the same actor and assess operational impact.
- Rotate or restrict credentials for the principal if compromise is suspected, and constrain
lambda:DeleteFunctionto a small set of trusted roles.