AWS RDS DB Instance or Cluster Deletion Protection Disabled
Description
Identifies the modification of an AWS RDS DB instance or cluster to disable the deletionProtection feature. Deletion protection prevents accidental or unauthorized deletion of RDS resources. Adversaries with sufficient permissions may disable this protection as a precursor to destructive actions, including the deletion of databases containing sensitive or business-critical data. This rule alerts when deletionProtection is explicitly set to false on an RDS DB instance or cluster.
Query · eql
any where data_stream.dataset == "aws.cloudtrail"
and event.provider == "rds.amazonaws.com"
and event.action in ("ModifyDBInstance", "ModifyDBCluster")
and event.outcome == "success"
and stringContains(aws.cloudtrail.request_parameters, "deletionProtection=false")
and not user_agent.original like~ ("*Terraform*", "*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_idevent.actionevent.outcomecloud.account.idcloud.regionaws.cloudtrail.request_parametersaws.cloudtrail.response_elements
Known false positives
- The deletionProtection feature must be disabled as a prerequisite for deletion of a DB instance or cluster. Ensure that the instance should not be modified in this way before taking action.
Analyst notes
Investigating AWS RDS DB Instance or Cluster Deletion Protection Disabled
Deletion protection is designed to safeguard RDS DB instances and clusters from accidental or unauthorized deletion. An adversary with privileged access in a compromised environment, can disable this safeguard before issuing a DeleteDBInstance or DeleteDBCluster action. This rule detects successful attempts to modify deletionProtection and set it to false on any RDS instance or cluster.
Possible investigation steps
- Identify the Actor
- Review
aws.cloudtrail.user_identity.arn,aws.cloudtrail.user_identity.type, andaccess_key_idto determine which IAM principal made the change. -
Validate whether this principal normally performs RDS lifecycle operations.
-
Review Event Details
- Inspect
aws.cloudtrail.request_parametersto confirm the targeted DB instance or cluster identifier. -
Confirm that the request explicitly contains
deletionProtection=false. -
Contextualize the Change
- Determine if recent activities justify the removal of deletion protection (migration, decommissioning, or maintenance).
-
Compare the timestamp to normal operational hours or deployment windows.
-
Correlate with Additional Activity
- Look for subsequent or preceding RDS actions such as:
DeleteDBInstanceDeleteDBCluster- Security group modifications
- Changes to parameter groups or backup retention policies.
-
Sudden removal of backups or snapshots may indicate imminent destructive activity.
-
Verify Environmental Risk
- Assess the sensitivity of data stored in the affected DB instance or cluster.
-
Determine if the instance is production, customer-facing, or mission-critical.
-
Interview Relevant Personnel
- Confirm with service owners or DB administrators whether the modification was intended and approved.
False positive analysis
- Expected Decommissioning
-
Instances undergoing teardown or migration legitimately require deletion protection to be disabled first.
-
Inconsistent Historical Behavior
- Compare the action to historical modification patterns for the user or role. If the action aligns with past legitimate changes, it may not be suspicious.
Response and remediation
- Immediate Remediation
- If unauthorized, re-enable deletion protection (
deletionProtection=true) on the affected DB instance or cluster. -
Review security groups, backup retention, and snapshot policies for additional unauthorized changes.
-
Access Review
- Investigate credential exposure for the IAM principal that performed the action.
-
Rotate access keys or temporarily revoke permissions if compromise is suspected.
-
Containment
-
If destructive intent is suspected, apply guardrails (e.g., IAM condition keys, SCPs) to prevent DB deletion.
-
Audit and Harden
- Ensure RDS instances adhere to least-privilege principles.
-
Restrict who can modify
ModifyDBInstanceorModifyDBClusterdestructive settings, such as deletion protection, backup retention, and public accessibility. -
Incident Response Activation
- Treat unauthorized removal of deletion protection as a high-risk precursor to data destruction.
- Trigger IR processes for containment, root cause analysis, and post-incident hardening.
Additional information
- AWS IR Playbooks
- AWS Customer Playbook Framework
- Security Best Practices: AWS Knowledge Center – Security Best Practices.