Enumerate Iam Groups (aws)
Platform | Author | Last Update |
---|---|---|
aws | Nick Jones | 2024-12-02 |
An adversary may attempt to enumerate the configured IAM groups within an account, to identify entities that they might wish to gain access to or backdoor.
MITRE IDs
Required Permissions
- iam:ListGroups
Required Parameters
None
Attacker Action
aws iam list-groups
Detection Case
ELK query
When logs are ingested into ELK, the following Lucene query can be used to identify relevant events.
eventName:ListGroups AND eventSource:*.iam.amazonaws.com
Sigma Definition
---title: Enumerate IAM groupsid: 88d0e794-1e66-4d93-bf3b-4628bd09aaa3status: experimentalauthor: Nick Jonesdate: 2024-12-02description: An adversary may attempt to enumerate the configured IAM groups within an account, to identify entities that they might wish to gain access to or backdoor.logsource: service: cloudtraildetection: selection_source: - eventSource: "*.iam.amazonaws.com" events: - eventName: "ListGroups" condition: selection_source and eventslevel: lowtags: - attack.T1069.003
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.