Cloudtrail Disable Global Event Logging (aws)
| Platform | Author | Last Update | 
|---|---|---|
| aws | Nick Jones | 2024-12-02 | 
An adversary may attempt to disable global event logging in order to modify configuration of global services such as IAM
MITRE IDs
Required Permissions
- cloudtrail:UpdateTrail
Required Parameters
| Name | Type | Description | Example Value | 
|---|---|---|---|
| trailname | str | Name of the cloudtrail to be targeted | example-cloudtrail | 
Attacker Action
aws cloudtrail update-trail --name example-cloudtrail --no-include-global-service-eventsDetection Case
ELK query
When logs are ingested into ELK, the following Lucene query can be used to identify relevant events.
eventName:UpdateTrail AND eventSource:*.cloudtrail.amazonaws.comSigma Definition
---title: Cloudtrail disable global event loggingid: e7b423d5-abd1-4685-988a-cf718c4d2f98status: experimentalauthor: Nick Jonesdate: 2024-12-02description: An adversary may attempt to disable global event logging in order to modify configuration of global services such as IAMlogsource:  service: cloudtraildetection:  selection_source:    - eventSource: "*.cloudtrail.amazonaws.com"  events:    - eventName: "UpdateTrail"  condition: selection_source and eventslevel: lowtags:  - attack.T1562
falsepositives:  - Developers making legitimate changes to the environment. Verify whether the user identity, user agent, and/or hostname should be making changes in your environment.