Update Login Profile For Existing User (aws)
Platform | Author | Last Update |
---|---|---|
aws | Nick Jones | 2024-12-02 |
An adversary may attempt to maintain access by updating an existing user’s login profile, allowing them to authenticate to the AWS console with a password of their choice.
MITRE IDs
Required Permissions
- iam:UpdateLoginProfile
Required Parameters
Name | Type | Description | Example Value |
---|---|---|---|
user | str | IAM user to update the login profile for | root |
password | str | Password to configure for login profile | @#$%^&*()TestPass1234567890 |
Attacker Action
aws iam update-login-profile -user-name user -password password -no-password-reset-required
Detection Case
ELK query
When logs are ingested into ELK, the following Lucene query can be used to identify relevant events.
eventName:UpdateLoginProfile AND eventSource:iam.amazonaws.com
Sigma Definition
---title: Update login profile for existing userid: 1fd04a6c-cf1f-4169-a9aa-1fd495f99930status: experimentalauthor: Nick Jonesdate: 2024-12-02description: An adversary may attempt to maintain access by updating an existing user's login profile, allowing them to authenticate to the AWS console with a password of their choice.logsource: service: cloudtraildetection: selection_source: - eventSource: "iam.amazonaws.com" events: - eventName: "UpdateLoginProfile" 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.