Techniques
Sample rules
AWS CloudWatch Log Stream Deletion
- source: elastic
- technicques:
- T1485
- T1562
Description
Detects the deletion of an Amazon CloudWatch log stream using the “DeleteLogStream” API. Deleting a log stream permanently removes its associated log events and may disrupt security visibility, break audit trails, or suppress forensic evidence. Adversaries may delete log streams to conceal malicious actions, impair monitoring pipelines, or remove artifacts generated during post-exploitation activity.
Detection logic
event.dataset: "aws.cloudtrail"
and event.provider: "logs.amazonaws.com"
and event.action: "DeleteLogStream"
and event.outcome: "success"
and source.ip: *
and not user_agent.original : "AWS Internal"