Response playbooks, investigation guides, and Atomic Red Team tests are Pro-only. Upgrade to unlock the full detection package for THREAT-CloudBackup-SnapshotPurge.

Upgrade to Pro
THREAT-CloudBackup-SnapshotPurge CrowdStrike LogScale · LogScale

Detect Cloud Backup Vault and Snapshot Deletion Prior to Ransomware Detonation in CrowdStrike LogScale

As organizations move backup targets from on-premises VSS/wbadmin to cloud-native services (AWS Backup, EBS/RDS snapshots, Azure Recovery Services vaults, Azure managed-disk snapshots), ransomware affiliates have adapted their recovery-inhibition step to match: rather than running vssadmin on an endpoint, the attacker who has obtained cloud administrative credentials calls the backup/snapshot service's own deletion APIs directly. Observed patterns include bulk deletion of AWS Backup recovery points and backup vaults (DeleteRecoveryPoint, DeleteBackupVault, DeleteBackupPlan, DeleteBackupSelection), direct deletion of EC2/RDS snapshots (DeleteSnapshot, DeleteDBSnapshot, DeleteDBClusterSnapshot), and — on Azure — first disabling the Recovery Services vault's soft-delete protection before deleting protected items or the vault itself (soft-delete exists specifically to survive this attack, so its removal is itself a strong signal), plus deletion of standalone managed-disk snapshots. This is functionally identical in intent to T1490's on-host VSS/BCD deletion but lives entirely in cloud control-plane audit logs (AWS CloudTrail, Azure Activity Log) rather than endpoint telemetry, and the key discriminator from legitimate lifecycle-policy cleanup is who/what made the call: automated retention-policy expiration is initiated by the backup service itself (e.g. CloudTrail invokedBy backup.amazonaws.com), while an interactive IAM user or role deleting many recovery points/vaults in a short window is anomalous and, combined with a soft-delete-disable step on Azure, should be treated as an active pre-encryption indicator.

MITRE ATT&CK

Tactic
Impact

LogScale Detection Query

CrowdStrike LogScale (LogScale)
cql
#event_simpleName=/(CloudTrail|AzureActivityLog)/
eventName=/^(DeleteRecoveryPoint|DeleteBackupVault|DeleteBackupPlan|DeleteBackupSelection|DeleteSnapshot|DeleteDBSnapshot|DeleteDBClusterSnapshot)$/
OR operationName=/(?i)(RECOVERYSERVICES.*BACKUPCONFIG|RECOVERYSERVICES.*PROTECTEDITEMS.*DELETE|RECOVERYSERVICES\/VAULTS\/DELETE|COMPUTE\/SNAPSHOTS\/DELETE)/
| test(!(invokedBy="backup.amazonaws.com"))
| Identity := coalesce(field=[userIdentityArn, caller])
| AccountOrSub := coalesce(field=[recipientAccountId, subscriptionId])
| groupBy([Identity, AccountOrSub], function=[count(as=DeleteCount), collect(eventName, limit=20), collect(operationName, limit=20)])
| test(DeleteCount >= 3)
| sort(DeleteCount, order=desc)
critical severity high confidence

CrowdStrike LogScale query over ingested AWS CloudTrail and Azure Activity Log repositories. Flags identities making 3 or more backup vault/recovery point/snapshot deletion or soft-delete-disable calls, excluding AWS Backup service-initiated lifecycle expiration. Groups by calling identity and account/subscription for triage.

Data Sources

AWS CloudTrail (ingested into CrowdStrike LogScale via S3/Kinesis)Azure Activity Log (ingested into CrowdStrike LogScale via Event Hub)CrowdStrike LogScale

Required Tables

AWS CloudTrail repoAzure Activity Log repo

False Positives & Tuning

  • Backup lifecycle/retention expiration
  • Planned environment decommissioning with bulk deletion
  • Cost-optimization snapshot pruning by authorized engineers
  • Vault migration projects disabling soft-delete temporarily
  • Backup/DR testing in non-production accounts or subscriptions

Other platforms for THREAT-CloudBackup-SnapshotPurge


Testing Methodology

Validate this detection against 2 adversary techniques from Atomic Red Team. Each test below lists the behaviour to exercise and the telemetry you should expect to see. Executable commands and cleanup steps are available with Pro.

  1. Test 1Simulate AWS Backup Recovery Point Deletion Burst

    Expected signal: AWS CloudTrail management events: eventName=DeleteRecoveryPoint, eventSource=backup.amazonaws.com, three or more events from the same userIdentity.arn within a few minutes, with userIdentity.type NOT equal to AWSService.

  2. Test 2Simulate Azure Recovery Services Soft-Delete Disable Then Protected Item Removal

    Expected signal: Azure Activity Log entries: operationName=MICROSOFT.RECOVERYSERVICES/VAULTS/BACKUPCONFIG/WRITE (soft-delete disabled) followed within minutes by operationName=MICROSOFT.RECOVERYSERVICES/VAULTS/BACKUPFABRICS/BACKUPPROTECTIONCONTAINERS/PROTECTEDITEMS/DELETE, both with resultType=Success from the same caller.

Unlock playbooks & atomic tests with Pro

Get the full detection package for THREAT-CloudBackup-SnapshotPurge — response playbook and atomic red team tests, plus investigation guidance and hunting queries.

df00tech Pro — £29/user/month

Response PlaybookInvestigation GuideHunting QueriesAtomic Red Team TestsTuning Guidance

Related Detections

Tactic Hub