AWS IAM User Addition to Group

Identifies the addition of a user to a specified group in AWS Identity and Access Management (IAM).

Elastic rule (View on GitHub)

  1[metadata]
  2creation_date = "2020/06/04"
  3integration = ["aws"]
  4maturity = "production"
  5min_stack_comments = "AWS integration breaking changes, bumping version to ^2.0.0"
  6min_stack_version = "8.9.0"
  7updated_date = "2024/04/14"
  8
  9[rule]
 10author = ["Elastic"]
 11description = "Identifies the addition of a user to a specified group in AWS Identity and Access Management (IAM)."
 12false_positives = [
 13    """
 14    Adding users to a specified group may be done by a system or network administrator. Verify whether the user
 15    identity, user agent, and/or hostname should be making changes in your environment. User additions from unfamiliar
 16    users or hosts should be investigated. If known behavior is causing false positives, it can be exempted from the
 17    rule.
 18    """,
 19]
 20from = "now-60m"
 21index = ["filebeat-*", "logs-aws.cloudtrail-*"]
 22interval = "10m"
 23language = "kuery"
 24license = "Elastic License v2"
 25name = "AWS IAM User Addition to Group"
 26note = """## Triage and analysis
 27
 28### Investigating AWS IAM User Addition to Group
 29
 30AWS Identity and Access Management (IAM) provides fine-grained access control across all of AWS. With IAM, you can specify who can access which services and resources, and under which conditions. With IAM policies, you manage permissions to your workforce and systems to ensure least-privilege permissions.
 31
 32This rule looks for the addition of users to a specified user group.
 33
 34#### Possible investigation steps
 35
 36- Identify the user account that performed the action and whether it should perform this kind of action.
 37- Investigate other alerts associated with the user account during the past 48 hours.
 38- Contact the account and resource owners and confirm whether they are aware of this activity.
 39- Check if this operation was approved and performed according to the organization's change management policy.
 40- If you suspect the account has been compromised, scope potentially compromised assets by tracking servers, services, and data accessed by the account in the last 24 hours.
 41
 42### False positive analysis
 43
 44- False positives may occur due to the intended usage of the service. Tuning is needed in order to have higher confidence. Consider adding exceptions — preferably with a combination of user agent and IP address conditions — to reduce noise from onboarding processes and administrator activities.
 45
 46### Response and remediation
 47
 48- Initiate the incident response process based on the outcome of the triage.
 49- Disable or limit the account during the investigation and response.
 50- Identify the possible impact of the incident and prioritize accordingly; the following actions can help you gain context:
 51    - Identify the account role in the cloud environment.
 52    - Assess the criticality of affected services and servers.
 53    - Work with your IT team to identify and minimize the impact on users.
 54    - Identify if the attacker is moving laterally and compromising other accounts, servers, or services.
 55    - Identify any regulatory or legal ramifications related to this activity.
 56- Investigate credential exposure on systems compromised or used by the attacker to ensure all compromised accounts are identified. Reset passwords or delete API keys as needed to revoke the attacker's access to the environment. Work with your IT teams to minimize the impact on business operations during these actions.
 57- Check if unauthorized new users were created, remove unauthorized new accounts, and request password resets for other IAM users.
 58- Consider enabling multi-factor authentication for users.
 59- Review the permissions assigned to the implicated user to ensure that the least privilege principle is being followed.
 60- Implement security best practices [outlined](https://aws.amazon.com/premiumsupport/knowledge-center/security-best-practices/) by AWS.
 61- Determine the initial vector abused by the attacker and take action to prevent reinfection via the same vector.
 62- Using the incident response data, update logging and audit policies to improve the mean time to detect (MTTD) and the mean time to respond (MTTR).
 63
 64## Setup
 65
 66The AWS Fleet integration, Filebeat module, or similarly structured data is required to be compatible with this rule."""
 67references = ["https://docs.aws.amazon.com/IAM/latest/APIReference/API_AddUserToGroup.html"]
 68risk_score = 21
 69rule_id = "333de828-8190-4cf5-8d7c-7575846f6fe0"
 70severity = "low"
 71tags = [
 72    "Domain: Cloud",
 73    "Data Source: AWS",
 74    "Data Source: Amazon Web Services",
 75    "Use Case: Identity and Access Audit",
 76    "Tactic: Credential Access",
 77    "Tactic: Persistence",
 78    "Resources: Investigation Guide",
 79]
 80timestamp_override = "event.ingested"
 81type = "query"
 82
 83query = '''
 84event.dataset:aws.cloudtrail and event.provider:iam.amazonaws.com and event.action:AddUserToGroup and event.outcome:success
 85'''
 86
 87
 88[[rule.threat]]
 89framework = "MITRE ATT&CK"
 90
 91[rule.threat.tactic]
 92id = "TA0006"
 93name = "Credential Access"
 94reference = "https://attack.mitre.org/tactics/TA0006/"
 95[[rule.threat]]
 96framework = "MITRE ATT&CK"
 97[[rule.threat.technique]]
 98id = "T1098"
 99name = "Account Manipulation"
100reference = "https://attack.mitre.org/techniques/T1098/"
101
102
103[rule.threat.tactic]
104id = "TA0003"
105name = "Persistence"
106reference = "https://attack.mitre.org/tactics/TA0003/"

Triage and analysis

Investigating AWS IAM User Addition to Group

AWS Identity and Access Management (IAM) provides fine-grained access control across all of AWS. With IAM, you can specify who can access which services and resources, and under which conditions. With IAM policies, you manage permissions to your workforce and systems to ensure least-privilege permissions.

This rule looks for the addition of users to a specified user group.

Possible investigation steps

  • Identify the user account that performed the action and whether it should perform this kind of action.
  • Investigate other alerts associated with the user account during the past 48 hours.
  • Contact the account and resource owners and confirm whether they are aware of this activity.
  • Check if this operation was approved and performed according to the organization's change management policy.
  • If you suspect the account has been compromised, scope potentially compromised assets by tracking servers, services, and data accessed by the account in the last 24 hours.

False positive analysis

  • False positives may occur due to the intended usage of the service. Tuning is needed in order to have higher confidence. Consider adding exceptions — preferably with a combination of user agent and IP address conditions — to reduce noise from onboarding processes and administrator activities.

Response and remediation

  • Initiate the incident response process based on the outcome of the triage.
  • Disable or limit the account during the investigation and response.
  • Identify the possible impact of the incident and prioritize accordingly; the following actions can help you gain context:
    • Identify the account role in the cloud environment.
    • Assess the criticality of affected services and servers.
    • Work with your IT team to identify and minimize the impact on users.
    • Identify if the attacker is moving laterally and compromising other accounts, servers, or services.
    • Identify any regulatory or legal ramifications related to this activity.
  • Investigate credential exposure on systems compromised or used by the attacker to ensure all compromised accounts are identified. Reset passwords or delete API keys as needed to revoke the attacker's access to the environment. Work with your IT teams to minimize the impact on business operations during these actions.
  • Check if unauthorized new users were created, remove unauthorized new accounts, and request password resets for other IAM users.
  • Consider enabling multi-factor authentication for users.
  • Review the permissions assigned to the implicated user to ensure that the least privilege principle is being followed.
  • Implement security best practices outlined by AWS.
  • Determine the initial vector abused by the attacker and take action to prevent reinfection via the same vector.
  • Using the incident response data, update logging and audit policies to improve the mean time to detect (MTTD) and the mean time to respond (MTTR).

Setup

The AWS Fleet integration, Filebeat module, or similarly structured data is required to be compatible with this rule.

References

Related rules

to-top