Techniques
Sample rules
AWS EC2 Route Table Created
- source: elastic
- technicques:
Description
Identifies when an EC2 Route Table has been created. Route tables can be used by attackers to disrupt network traffic, reroute communications, or maintain persistence in a compromised environment. This is a New Terms rule that detects the first instance of this behavior by a user or role.
Detection logic
event.dataset: "aws.cloudtrail"
and event.provider: "ec2.amazonaws.com"
and event.action:(
"CreateRoute" or
"CreateRouteTable"
)
and event.outcome: "success"