Techniques
Sample rules
AWS CloudWatch Alarm Deletion
- source: elastic
- technicques:
- T1562
Description
Detects the deletion of one or more Amazon CloudWatch alarms using the “DeleteAlarms” API. CloudWatch alarms are critical for monitoring metrics and triggering alerts when thresholds are exceeded. An adversary may delete alarms to impair visibility, silence alerts, and evade detection following malicious activity. This behavior may occur during post-exploitation or cleanup phases to remove traces of compromise or disable automated responses.
Detection logic
event.dataset: "aws.cloudtrail"
and event.provider: "monitoring.amazonaws.com"
and event.action: "DeleteAlarms"
and event.outcome: "success"
and source.ip: *
and not user_agent.original : "AWS Internal"