AWS Root Login Without MFA

Identifies attempts to login to AWS as the root user without using multi-factor authentication (MFA). Amazon AWS best practices indicate that the root user should be protected by MFA.

Elastic rule (View on GitHub)

  1[metadata]
  2creation_date = "2020/07/06"
  3integration = ["aws"]
  4maturity = "production"
  5updated_date = "2024/05/21"
  6
  7[rule]
  8author = ["Elastic"]
  9description = """
 10Identifies attempts to login to AWS as the root user without using multi-factor authentication (MFA). Amazon AWS best
 11practices indicate that the root user should be protected by MFA.
 12"""
 13false_positives = [
 14    """
 15    Some organizations allow login with the root user without MFA, however, this is not considered best practice by AWS
 16    and increases the risk of compromised credentials.
 17    """,
 18]
 19from = "now-60m"
 20index = ["filebeat-*", "logs-aws.cloudtrail-*"]
 21interval = "10m"
 22language = "kuery"
 23license = "Elastic License v2"
 24name = "AWS Root Login Without MFA"
 25note = """## Triage and analysis
 26
 27### Investigating AWS Root Login Without MFA
 28
 29Multi-factor authentication (MFA) in AWS is a simple best practice that adds an extra layer of protection on top of your user name and password. With MFA enabled, when a user signs in to an AWS Management Console, they will be prompted for their user name and password, as well as for an authentication code from their AWS MFA device. Taken together, these multiple factors provide increased security for your AWS account settings and resources.
 30
 31For more information about using MFA in AWS, access the [official documentation](https://docs.aws.amazon.com/IAM/latest/UserGuide/id_credentials_mfa.html).
 32
 33The AWS root account is the one identity that has complete access to all AWS services and resources in the account, which is created when the AWS account is created. AWS strongly recommends that you do not use the root user for your everyday tasks, even the administrative ones. Instead, adhere to the best practice of using the root user only to create your first IAM user. Then securely lock away the root user credentials and use them to perform only a few account and service management tasks. Amazon provides a [list of the tasks that require root user](https://docs.aws.amazon.com/general/latest/gr/root-vs-iam.html#aws_tasks-that-require-root).
 34
 35This rule looks for attempts to log in to AWS as the root user without using multi-factor authentication (MFA), meaning the account is not secured properly.
 36
 37#### Possible investigation steps
 38
 39- Investigate other alerts associated with the user account during the past 48 hours.
 40- Examine whether this activity is common in the environment by looking for past occurrences on your logs.
 41- Consider the source IP address and geolocation for the calling user who issued the command. Do they look normal for the calling user?
 42- Examine the commands, API calls, and data management actions performed by the account in the last 24 hours.
 43- Contact the account owner and confirm whether they are aware of this activity.
 44- If you suspect the account has been compromised, scope potentially compromised assets by tracking access to servers,
 45services, and data accessed by the account in the last 24 hours.
 46
 47### False positive analysis
 48
 49- While this activity is not inherently malicious, the root account must use MFA. The security team should address any potential benign true positive (B-TP), as this configuration can risk the entire cloud environment.
 50
 51### Response and remediation
 52
 53- Initiate the incident response process based on the outcome of the triage.
 54- Identify the possible impact of the incident and prioritize accordingly; the following actions can help you gain context:
 55    - Identify the account role in the cloud environment.
 56    - Identify the services or servers involved criticality.
 57    - Work with your IT team to identify and minimize the impact on users.
 58    - Identify if the attacker is moving laterally and compromising other accounts, servers, or services.
 59    - Identify if there are any regulatory or legal ramifications related to this activity.
 60- Configure multi-factor authentication for the user.
 61- Follow security best practices [outlined](https://aws.amazon.com/premiumsupport/knowledge-center/security-best-practices/) by AWS.
 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/UserGuide/id_root-user.html"]
 68risk_score = 73
 69rule_id = "bc0c6f0d-dab0-47a3-b135-0925f0a333bc"
 70severity = "high"
 71tags = [
 72    "Domain: Cloud",
 73    "Data Source: AWS",
 74    "Data Source: Amazon Web Services",
 75    "Data Source: AWS Route53",
 76    "Use Case: Identity and Access Audit",
 77    "Resources: Investigation Guide",
 78    "Tactic: Privilege Escalation",
 79]
 80timestamp_override = "event.ingested"
 81type = "query"
 82
 83query = '''
 84event.dataset:aws.cloudtrail and event.provider:signin.amazonaws.com and event.action:ConsoleLogin and
 85  aws.cloudtrail.user_identity.type:Root and
 86  aws.cloudtrail.console_login.additional_eventdata.mfa_used:false and
 87  event.outcome:success
 88'''
 89
 90
 91[[rule.threat]]
 92framework = "MITRE ATT&CK"
 93[[rule.threat.technique]]
 94id = "T1078"
 95name = "Valid Accounts"
 96reference = "https://attack.mitre.org/techniques/T1078/"
 97
 98
 99[rule.threat.tactic]
100id = "TA0004"
101name = "Privilege Escalation"
102reference = "https://attack.mitre.org/tactics/TA0004/"

Triage and analysis

Investigating AWS Root Login Without MFA

Multi-factor authentication (MFA) in AWS is a simple best practice that adds an extra layer of protection on top of your user name and password. With MFA enabled, when a user signs in to an AWS Management Console, they will be prompted for their user name and password, as well as for an authentication code from their AWS MFA device. Taken together, these multiple factors provide increased security for your AWS account settings and resources.

For more information about using MFA in AWS, access the official documentation.

The AWS root account is the one identity that has complete access to all AWS services and resources in the account, which is created when the AWS account is created. AWS strongly recommends that you do not use the root user for your everyday tasks, even the administrative ones. Instead, adhere to the best practice of using the root user only to create your first IAM user. Then securely lock away the root user credentials and use them to perform only a few account and service management tasks. Amazon provides a list of the tasks that require root user.

This rule looks for attempts to log in to AWS as the root user without using multi-factor authentication (MFA), meaning the account is not secured properly.

Possible investigation steps

  • Investigate other alerts associated with the user account during the past 48 hours.
  • Examine whether this activity is common in the environment by looking for past occurrences on your logs.
  • Consider the source IP address and geolocation for the calling user who issued the command. Do they look normal for the calling user?
  • Examine the commands, API calls, and data management actions performed by the account in the last 24 hours.
  • Contact the account owner and confirm whether they are aware of this activity.
  • If you suspect the account has been compromised, scope potentially compromised assets by tracking access to servers, services, and data accessed by the account in the last 24 hours.

False positive analysis

  • While this activity is not inherently malicious, the root account must use MFA. The security team should address any potential benign true positive (B-TP), as this configuration can risk the entire cloud environment.

Response and remediation

  • Initiate the incident response process based on the outcome of the triage.
  • 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.
    • Identify the services or servers involved criticality.
    • 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 if there are any regulatory or legal ramifications related to this activity.
  • Configure multi-factor authentication for the user.
  • Follow security best practices outlined by AWS.
  • 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