Create Iam Group (aws)
| Platform | Author | Last Update | 
|---|---|---|
| aws | Nick Jones | 2024-12-02 | 
An adversary may attempt to create an IAM group within an account, to alter legitimate access or block administrative activity.
MITRE IDs
Required Permissions
- iam:CreateGroup
Required Parameters
| Name | Type | Description | Example Value | 
|---|---|---|---|
| group | str | IAM group to create | example_group | 
Attacker Action
aws iam create-group --group-name example_groupDetection Case
ELK query
When logs are ingested into ELK, the following Lucene query can be used to identify relevant events.
eventName:CreateGroup AND eventSource:*.iam.amazonaws.comSigma Definition
---title: Create IAM groupid: 4b33f970-ef9d-49e0-ae7d-040e60d96415status: experimentalauthor: Nick Jonesdate: 2024-12-02description: An adversary may attempt to create an IAM group within an account, to alter legitimate access or block administrative activity.logsource:  service: cloudtraildetection:  selection_source:    - eventSource: "*.iam.amazonaws.com"  events:    - eventName: "CreateGroup"  condition: selection_source and eventslevel: lowtags:  - attack.T1098
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.