Rapid Secret Retrieval Attempts from AWS SecretsManager

This rule attempts to identify rapid secret retrieval attempts from AWS SecretsManager. Adversaries may attempt to retrieve secrets from the Secrets Manager programmatically using the GetSecretValue or BatchGetSecretValue API actions.

Elastic rule (View on GitHub)

  1[metadata]
  2creation_date = "2024/04/11"
  3integration = ["aws"]
  4maturity = "production"
  5updated_date = "2024/07/23"
  6
  7[rule]
  8author = ["Elastic"]
  9description = """
 10This rule attempts to identify rapid secret retrieval attempts from AWS SecretsManager. Adversaries may attempt to
 11retrieve secrets from the Secrets Manager programmatically using the `GetSecretValue` or `BatchGetSecretValue` API
 12actions.
 13"""
 14false_positives = [
 15    """
 16    Verify whether the user identity, user agent, and/or hostname should be using GetSecretString or BatchGetSecretValue
 17    APIs for the specified SecretId. If known behavior is causing false positives, it can be exempted from the rule.
 18    """,
 19]
 20from = "now-5m"
 21index = ["filebeat-*", "logs-aws.cloudtrail*"]
 22language = "kuery"
 23license = "Elastic License v2"
 24name = "Rapid Secret Retrieval Attempts from AWS SecretsManager"
 25note = """## Triage and analysis
 26
 27### Investigating Rapid Secret Retrieval Attempts from AWS SecretsManager
 28
 29AWS Secrets Manager is a service that enables the replacement of hardcoded credentials in code, including passwords, with an API call to Secrets Manager to retrieve the secret programmatically.
 30
 31This rule looks for the rapid retrieval of credentials using `GetSecretValue` or `BatchGetSecretValue` actions in Secrets Manager programmatically. This is a [Threshold](https://www.elastic.co/guide/en/security/master/rules-ui-create.html#create-threshold-rule) rule indicating 20 or more successful attempts to retrieve a secret value from Secrets Manager by the same user identity within a short timespan. 
 32
 33#### Possible investigation steps
 34
 35- Identify the account and its role in the environment, and inspect the related policy.
 36- Identify the applications that should use this account.
 37- Investigate other alerts associated with the user account during the past 48 hours.
 38- Investigate abnormal values in the `user_agent.original` field by comparing them with the intended and authorized usage and historical data. Suspicious user agent values include non-SDK, AWS CLI, custom user agents, etc.
 39- Assess whether this behavior is prevalent in the environment by looking for similar occurrences involving other users.
 40- Contact the account owner and confirm whether they are aware of this activity.
 41- Considering the source IP address and geolocation of the user who issued the command:
 42    - Do they look normal for the calling user?
 43    - If the source is an EC2 IP address, is it associated with an EC2 instance in one of your accounts or is the source IP from an EC2 instance that's not under your control?
 44    - If it is an authorized EC2 instance, is the activity associated with normal behavior for the instance role or roles? Are there any other alerts or signs of suspicious activity involving this instance?
 45- Review IAM permission policies for the user identity and specific secrets accessed.
 46- Examine the request parameters. These might indicate the source of the program or the nature of its tasks.
 47- 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.
 48
 49### False positive analysis
 50
 51- 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.
 52
 53### Response and remediation
 54
 55- Initiate the incident response process based on the outcome of the triage.
 56- Disable or limit the account during the investigation and response.
 57- Identify the possible impact of the incident and prioritize accordingly; the following actions can help you gain context:
 58    - Identify the account role in the cloud environment.
 59    - Assess the criticality of affected services and servers.
 60    - Work with your IT team to identify and minimize the impact on users.
 61    - Identify if the attacker is moving laterally and compromising other accounts, servers, or services.
 62    - Identify any regulatory or legal ramifications related to this activity.
 63- Investigate credential exposure on systems compromised or used by the attacker to ensure all compromised accounts are identified. Rotate secrets 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.
 64- Check if unauthorized new users were created, remove unauthorized new accounts, and request password resets for other IAM users.
 65- Consider enabling multi-factor authentication for users.
 66- Review the permissions assigned to the implicated user to ensure that the least privilege principle is being followed.
 67- Implement security best practices [outlined](https://aws.amazon.com/premiumsupport/knowledge-center/security-best-practices/) by AWS.
 68- Take the actions needed to return affected systems, data, or services to their normal operational levels.
 69- Identify the initial vector abused by the attacker and take action to prevent reinfection via the same vector.
 70- 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).
 71"""
 72references = [
 73    "https://docs.aws.amazon.com/secretsmanager/latest/apireference/API_GetSecretValue.html",
 74    "https://detectioninthe.cloud/ttps/credential_access/access_secret_in_secrets_manager/",
 75    "https://cloud.hacktricks.xyz/pentesting-cloud/aws-security/aws-services/aws-secrets-manager-enum",
 76    "https://docs.aws.amazon.com/secretsmanager/latest/apireference/API_BatchGetSecretValue.html",
 77]
 78risk_score = 47
 79rule_id = "185c782e-f86a-11ee-9d9f-f661ea17fbce"
 80severity = "medium"
 81tags = [
 82    "Domain: Cloud",
 83    "Data Source: AWS",
 84    "Data Source: Amazon Web Services",
 85    "Data Source: AWS Secrets Manager",
 86    "Tactic: Credential Access",
 87    "Resources: Investigation Guide",
 88]
 89timestamp_override = "event.ingested"
 90type = "threshold"
 91
 92query = '''
 93event.dataset:aws.cloudtrail and event.provider:secretsmanager.amazonaws.com and
 94    event.action: (GetSecretValue or BatchGetSecretValue) and event.outcome:success and
 95    not user_agent.name: ("Chrome" or "Firefox" or "Safari" or "Edge" or "Brave" or "Opera")
 96'''
 97
 98
 99[[rule.threat]]
100framework = "MITRE ATT&CK"
101[[rule.threat.technique]]
102id = "T1555"
103name = "Credentials from Password Stores"
104reference = "https://attack.mitre.org/techniques/T1555/"
105[[rule.threat.technique.subtechnique]]
106id = "T1555.006"
107name = "Cloud Secrets Management Stores"
108reference = "https://attack.mitre.org/techniques/T1555/006/"
109
110
111
112[rule.threat.tactic]
113id = "TA0006"
114name = "Credential Access"
115reference = "https://attack.mitre.org/tactics/TA0006/"
116
117[rule.threshold]
118field = ["user.id"]
119value = 20

Triage and analysis

Investigating Rapid Secret Retrieval Attempts from AWS SecretsManager

AWS Secrets Manager is a service that enables the replacement of hardcoded credentials in code, including passwords, with an API call to Secrets Manager to retrieve the secret programmatically.

This rule looks for the rapid retrieval of credentials using GetSecretValue or BatchGetSecretValue actions in Secrets Manager programmatically. This is a Threshold rule indicating 20 or more successful attempts to retrieve a secret value from Secrets Manager by the same user identity within a short timespan.

Possible investigation steps

  • Identify the account and its role in the environment, and inspect the related policy.
  • Identify the applications that should use this account.
  • Investigate other alerts associated with the user account during the past 48 hours.
  • Investigate abnormal values in the user_agent.original field by comparing them with the intended and authorized usage and historical data. Suspicious user agent values include non-SDK, AWS CLI, custom user agents, etc.
  • Assess whether this behavior is prevalent in the environment by looking for similar occurrences involving other users.
  • Contact the account owner and confirm whether they are aware of this activity.
  • Considering the source IP address and geolocation of the user who issued the command:
    • Do they look normal for the calling user?
    • If the source is an EC2 IP address, is it associated with an EC2 instance in one of your accounts or is the source IP from an EC2 instance that's not under your control?
    • If it is an authorized EC2 instance, is the activity associated with normal behavior for the instance role or roles? Are there any other alerts or signs of suspicious activity involving this instance?
  • Review IAM permission policies for the user identity and specific secrets accessed.
  • Examine the request parameters. These might indicate the source of the program or the nature of its tasks.
  • 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.

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. Rotate secrets 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.
  • Take the actions needed to return affected systems, data, or services to their normal operational levels.
  • Identify 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).

References

Related rules

to-top