Techniques
Sample rules
AWS EFS File System Deleted
- source: elastic
- technicques:
- T1485
Description
Identifies the deletion of an Amazon EFS file system using the “DeleteFileSystem” API operation. Deleting an EFS file system permanently removes all stored data and cannot be reversed. This action is rare in most environments and typically limited to controlled teardown workflows. Adversaries with sufficient permissions may delete a file system to destroy evidence, disrupt workloads, or impede recovery efforts.
Detection logic
event.dataset: "aws.cloudtrail"
and event.provider: "elasticfilesystem.amazonaws.com"
and event.action: "DeleteFileSystem"
and event.outcome: "success"