AWS STS GetCallerIdentity API Called for the First Time
An adversary with access to a set of compromised credentials may attempt to verify that the credentials are valid and
determine what account they are using. This rule looks for the first time an identity has called the
STS GetCallerIdentity
API operation in the last 15 days, which may be an indicator of compromised credentials.
A legitimate user would not need to call this operation as they should know the account they are using.
Elastic rule (View on GitHub)
1[metadata]
2creation_date = "2024/05/24"
3integration = ["aws"]
4maturity = "production"
5updated_date = "2024/09/30"
6
7[rule]
8author = ["Elastic"]
9description = """
10An adversary with access to a set of compromised credentials may attempt to verify that the credentials are valid and
11determine what account they are using. This rule looks for the first time an identity has called the
12STS `GetCallerIdentity` API operation in the last 15 days, which may be an indicator of compromised credentials.
13A legitimate user would not need to call this operation as they should know the account they are using.
14"""
15false_positives = [
16 """
17 Verify whether the user identity should be using the STS `GetCallerIdentity` API operation.
18 If known behavior is causing false positives, it can be exempted from the rule.
19 """,
20]
21from = "now-60m"
22index = ["filebeat-*", "logs-aws.cloudtrail-*"]
23interval = "10m"
24language = "kuery"
25license = "Elastic License v2"
26name = "AWS STS GetCallerIdentity API Called for the First Time"
27note = """## Triage and analysis
28
29### Investigating AWS GetCallerIdentity API Called for the First Time
30
31AWS Security Token Service (AWS STS) is a service that enables you to request temporary, limited-privilege credentials for users.
32The `GetCallerIdentity` function returns details about the IAM user or role owning the credentials used to call the operation.
33No permissions are required to run this operation and the same information is returned even when access is denied.
34This rule looks for use of the `GetCallerIdentity` operation. This is a [New Terms](https://www.elastic.co/guide/en/security/master/rules-ui-create.html#create-new-terms-rule) rule indicating this is the first time a specific user identity has called this operation within the last 15 days.
35
36#### Possible investigation steps
37
38- Identify the account and its role in the environment, a role belonging to a service like Lambda or an EC2 instance would be highly suspicious.
39- Identify the applications or users that should use this account.
40- Investigate other alerts associated with the account during the past 48 hours.
41- 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.
42- Assess whether this behavior is prevalent in the environment by looking for similar occurrences involving other users.
43- Contact the account owner and confirm whether they are aware of this activity.
44- Considering the source IP address and geolocation of the user who issued the command:
45 - Do they look normal for the calling user?
46 - 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?
47 - 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?
48- Review IAM permission policies for the user identity.
49- 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.
50
51### False positive analysis
52
53- 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.
54- Automation workflows that rely on the results from this API request may also generate false-positives. We recommend adding exceptions related to the `user.name` or `aws.cloudtrail.user_identity.arn` values to ignore these.
55
56### Response and remediation
57
58- Initiate the incident response process based on the outcome of the triage.
59- Disable or limit the account during the investigation and response.
60- Identify the possible impact of the incident and prioritize accordingly; the following actions can help you gain context:
61 - Identify the account role in the cloud environment.
62 - Assess the criticality of affected services and servers.
63 - Work with your IT team to identify and minimize the impact on users.
64 - Identify if the attacker is moving laterally and compromising other accounts, servers, or services.
65 - Identify any regulatory or legal ramifications related to this activity.
66- 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.
67- Check if unauthorized new users were created, remove unauthorized new accounts, and request password resets for other IAM users.
68- Consider enabling multi-factor authentication for users.
69- Review the permissions assigned to the implicated user to ensure that the least privilege principle is being followed.
70- Implement security best practices [outlined](https://aws.amazon.com/premiumsupport/knowledge-center/security-best-practices/) by AWS.
71- Take the actions needed to return affected systems, data, or services to their normal operational levels.
72- Identify the initial vector abused by the attacker and take action to prevent reinfection via the same vector.
73- 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).
74"""
75references = [
76 "https://docs.aws.amazon.com/STS/latest/APIReference/API_GetCallerIdentity.html",
77 "https://www.secureworks.com/research/detecting-the-use-of-stolen-aws-lambda-credentials",
78 "https://detectioninthe.cloud/ttps/discovery/get_caller_identity/",
79]
80risk_score = 47
81rule_id = "30fbf4db-c502-4e68-a239-2e99af0f70da"
82severity = "medium"
83tags = [
84 "Domain: Cloud",
85 "Data Source: AWS",
86 "Data Source: Amazon Web Services",
87 "Data Source: AWS STS",
88 "Use Case: Identity and Access Audit",
89 "Tactic: Discovery",
90 "Resources: Investigation Guide",
91]
92timestamp_override = "event.ingested"
93type = "new_terms"
94
95query = '''
96event.dataset: "aws.cloudtrail" and event.provider: "sts.amazonaws.com" and event.action: "GetCallerIdentity"
97and not aws.cloudtrail.user_identity.type: "AssumedRole"
98'''
99
100
101[[rule.threat]]
102framework = "MITRE ATT&CK"
103[[rule.threat.technique]]
104id = "T1087"
105name = "Account Discovery"
106reference = "https://attack.mitre.org/techniques/T1087/"
107[[rule.threat.technique.subtechnique]]
108id = "T1087.004"
109name = "Cloud Account"
110reference = "https://attack.mitre.org/techniques/T1087/004/"
111
112[rule.threat.tactic]
113id = "TA0007"
114name = "Discovery"
115reference = "https://attack.mitre.org/tactics/TA0007/"
116
117[rule.new_terms]
118field = "new_terms_fields"
119value = ["aws.cloudtrail.user_identity.arn"]
120[[rule.new_terms.history_window_start]]
121field = "history_window_start"
122value = "now-10d"
Triage and analysis
Investigating AWS GetCallerIdentity API Called for the First Time
AWS Security Token Service (AWS STS) is a service that enables you to request temporary, limited-privilege credentials for users.
The GetCallerIdentity
function returns details about the IAM user or role owning the credentials used to call the operation.
No permissions are required to run this operation and the same information is returned even when access is denied.
This rule looks for use of the GetCallerIdentity
operation. This is a New Terms rule indicating this is the first time a specific user identity has called this operation within the last 15 days.
Possible investigation steps
- Identify the account and its role in the environment, a role belonging to a service like Lambda or an EC2 instance would be highly suspicious.
- Identify the applications or users that should use this account.
- Investigate other alerts associated with the 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.
- 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.
- Automation workflows that rely on the results from this API request may also generate false-positives. We recommend adding exceptions related to the
user.name
oraws.cloudtrail.user_identity.arn
values to ignore these.
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
- AWS IAM Assume Role Policy Update
- AWS STS Temporary Credentials via AssumeRole
- AWS IAM CompromisedKeyQuarantine Policy Attached to User
- AWS EC2 Instance Console Login via Assumed Role
- AWS EC2 Admin Credential Fetch via Assumed Role