2022-01-16 12:25:28 +00:00
id : metadata-service-aws
2022-04-22 10:38:41 +00:00
2022-01-16 12:25:28 +00:00
# This attack abuses a misconfigured proxy that allows access to the metadata
# IP or a name which resolves to the IP. A standard proxy request is made to
2022-02-15 06:09:56 +00:00
# the proxy using the full metadata URL, which the proxy will fulfill to its
# own metadata service.
2022-01-16 12:25:28 +00:00
#
# The proxy may also be vulnerable to host/port enumeration on localhost or
# inside the private network.
2022-04-22 10:38:41 +00:00
2022-01-16 12:25:28 +00:00
info :
name : Amazon AWS Metadata Service Check
author : sullo
severity : critical
2022-04-25 14:35:07 +00:00
description : The AWS host is configured as a proxy which allows access to the metadata service. This could allow significant access to the host/infrastructure.
2022-01-16 12:25:28 +00:00
reference :
- https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/ec2-instance-metadata.html
- https://blog.projectdiscovery.io/abusing-reverse-proxies-metadata/
- https://www.mcafee.com/blogs/enterprise/cloud-security/how-an-attacker-could-use-instance-metadata-to-breach-your-app-in-aws/
classification :
cvss-metrics : CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:C/C:H/I:L/A:N
cvss-score : 9.3
cwe-id : CWE-441
2022-04-22 10:38:41 +00:00
remediation : Disable the proxy or restrict configuration to only allow access to approved hosts/ports. Upgrade to IMDSv2 if possible.
tags : exposure,proxy,aws,amazon,misconfig,metadata
2022-01-16 12:25:28 +00:00
requests :
- raw :
- |+
GET http://{{hostval}}/latest/meta-data/ HTTP/1.1
Host : {{hostval}}
payloads :
hostval :
- aws.interact.sh
- 169.254 .169 .254
unsafe : true
matchers :
- type : word
part : body
words :
- "public-ipv4"
- "privateIp"
condition : or
2022-04-25 14:35:07 +00:00
# Enhanced by mp on 2022/04/22