Request-url-http-3a-2f-2f169.254.169.254-2flatest-2fmeta — Data-2fiam-2fsecurity Credentials-2f
The requested URL is a critical endpoint within the used by EC2 instances to retrieve temporary security credentials. The presence of this specific string—often seen in logs or security alerts—frequently indicates an attempt to exploit a Server-Side Request Forgery (SSRF) vulnerability. What is this Endpoint?
The URL http://169.254.169.254/latest/meta-data/iam/security-credentials/ is a link-local address accessible only from within an EC2 instance.
: The attacker aims to steal the temporary credentials, which can then be used from outside the AWS environment to gain unauthorized access to your cloud resources, such as S3 buckets or other EC2 instances. IMDS Versioning : The requested URL is a critical endpoint within
Because this endpoint returns sensitive credentials without requiring an initial password, it is a primary target for attackers.
: In an SSRF attack, an attacker "tricks" a vulnerable web application into making a request to this internal URL on their behalf. The URL http://169
: If an IAM Role is attached to the instance, this endpoint lists the name of that role.
: By appending the role name to the URL (e.g., .../security-credentials/MyRoleName ), a user can retrieve an Access Key , Secret Key , and Session Token to perform actions authorized by that role. Security Implications & SSRF : In an SSRF attack, an attacker "tricks"
: Vulnerable to simple SSRF because it uses standard HTTP GET requests.