AWS STS GetSessionToken Usage
editAWS STS GetSessionToken Usage
editIdentifies the use of GetSessionToken API calls by IAM users or Root Account. While this is a common and legitimate operation used to obtain temporary credentials, it also provides adversaries with a method to generate short-lived tokens for stealthy activity. Attackers who compromise IAM user access keys may call GetSessionToken to create temporary credentials, which they can then use to move laterally, escalate privileges, or persist after key rotation. This rule is intended as a BBR to establish patterns of typical STS usage and support correlation with higher-fidelity detections.
Rule type: query
Rule indices:
- filebeat-*
- logs-aws.cloudtrail-*
Severity: low
Risk score: 21
Runs every: 5m
Searches indices from: now-6m (Date Math format, see also Additional look-back time)
Maximum alerts per execution: 100
References:
Tags:
- Domain: Cloud
- Data Source: AWS
- Data Source: Amazon Web Services
- Data Source: AWS STS
- Use Case: Identity and Access Audit
- Tactic: Privilege Escalation
- Tactic: Lateral Movement
- Resources: Investigation Guide
- Rule Type: BBR
Version: 210
Rule authors:
- Austin Songer
- Elastic
Rule license: Elastic License v2
Investigation guide
editTriage and analysis
Disclaimer: This investigation guide was created using generative AI technology and has been reviewed to improve its accuracy and relevance. While every effort has been made to ensure its quality, we recommend validating the content and adapting it to suit your specific environment and operational needs.
Investigating AWS STS GetSessionToken Usage
AWS Security Token Service (STS) provides temporary credentials for AWS resources, crucial for managing access without long-term credentials. Adversaries may exploit GetSessionToken to create temporary credentials, enabling lateral movement and privilege escalation. The detection rule identifies successful GetSessionToken requests, flagging potential misuse for further investigation.
Possible investigation steps
- Establish normal baseline behavior
-
Use this rule’s data to determine which IAM users or automation scripts routinely perform
GetSessionToken. - Monitor frequency, regions, and user agents (CLI, SDK, console) for each identity over time.
- Identify anomalies
-
Look for first-time or rare
GetSessionTokenusage by an IAM user. - Detect tokens issued without MFA when MFA is normally required.
- Identify new or unexpected source IPs, geographies, or user agents (e.g., API calls from unfamiliar networks).
- Check for multiple temporary tokens minted in rapid succession by the same user or access key.
- Correlate with downstream activity
- Search for immediate follow-on events within 15 minutes of token creation:
-
AssumeRoleinto higher-privileged roles or cross-account roles. -
Privileged API calls (e.g.,
iam:*,s3:PutBucketPolicy,ec2:CreateSnapshot). -
New region access, resource enumeration, or credential operations (
GetCallerIdentity,ListUsers, etc.). -
Use this correlation to elevate contextual
GetSessionTokenbehavior into actionable detections.
Usage Notes
- This rule’s telemetry can support hunting queries such as:
-
GetSessionTokenwithoutTokenCode(no MFA) -
New IP +
GetSessionToken+AssumeRole - Rapid token issuance followed by API activity from a new ASN
Use these patterns in combination with related BBRs or detection rules for AssumeRole abuse, cross-account access,
or credential pivoting for more reliable threat detection.
Rule query
editevent.dataset: aws.cloudtrail and event.provider: sts.amazonaws.com and event.action: GetSessionToken and event.outcome: success
Framework: MITRE ATT&CKTM
-
Tactic:
- Name: Privilege Escalation
- ID: TA0004
- Reference URL: https://attack.mitre.org/tactics/TA0004/
-
Technique:
- Name: Abuse Elevation Control Mechanism
- ID: T1548
- Reference URL: https://attack.mitre.org/techniques/T1548/
-
Tactic:
- Name: Lateral Movement
- ID: TA0008
- Reference URL: https://attack.mitre.org/tactics/TA0008/
-
Technique:
- Name: Use Alternate Authentication Material
- ID: T1550
- Reference URL: https://attack.mitre.org/techniques/T1550/
-
Sub-technique:
- Name: Application Access Token
- ID: T1550.001
- Reference URL: https://attack.mitre.org/techniques/T1550/001/