Add An Iam User (aws)
Platform | Author | Last Update |
---|---|---|
aws | Nick Jones | 2024-12-02 |
An attacker may attempt to create an IAM user, in order to provide another means of authenticating to the AWS account
MITRE IDs
Required Permissions
- iam:CreateUser
Required Parameters
Name | Type | Description | Example Value |
---|---|---|---|
user | str | IAM user to create | example-user |
Attacker Action
aws iam create-user --user-name example-user
Detection Case
ELK query
When logs are ingested into ELK, the following Lucene query can be used to identify relevant events.
eventName:CreateUser AND eventSource:iam.amazonaws.com
Sigma Definition
---title: Add an IAM Userid: 6f660a21-0fcd-4b51-9894-4d2d8213f45bstatus: experimentalauthor: Nick Jonesdate: 2024-12-02description: An attacker may attempt to create an IAM user, in order to provide another means of authenticating to the AWS accountlogsource: service: cloudtraildetection: selection_source: - eventSource: "iam.amazonaws.com" events: - eventName: "CreateUser" condition: selection_source and eventslevel: lowtags: - attack.T1136.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.