Internet-Draft | DNS Aliases Proxy-Status | November 2022 |
Pauly | Expires 3 June 2023 | [Page] |
This document defines an HTTP Proxy-Status Parameter that contains a list of aliases received over DNS when establishing a connection to the next hop.¶
This note is to be removed before publishing as an RFC.¶
Source for this draft and an issue tracker can be found at https://github.com/tfpauly/privacy-proxy.¶
This Internet-Draft is submitted in full conformance with the provisions of BCP 78 and BCP 79.¶
Internet-Drafts are working documents of the Internet Engineering Task Force (IETF). Note that other groups may also distribute working documents as Internet-Drafts. The list of current Internet-Drafts is at https://datatracker.ietf.org/drafts/current/.¶
Internet-Drafts are draft documents valid for a maximum of six months and may be updated, replaced, or obsoleted by other documents at any time. It is inappropriate to use Internet-Drafts as reference material or to cite them other than as "work in progress."¶
This Internet-Draft will expire on 3 June 2023.¶
Copyright (c) 2022 IETF Trust and the persons identified as the document authors. All rights reserved.¶
This document is subject to BCP 78 and the IETF Trust's Legal Provisions Relating to IETF Documents (https://trustee.ietf.org/license-info) in effect on the date of publication of this document. Please review these documents carefully, as they describe your rights and restrictions with respect to this document. Code Components extracted from this document must include Revised BSD License text as described in Section 4.e of the Trust Legal Provisions and are provided without warranty as described in the Revised BSD License.¶
The Proxy-Status HTTP response field [PROXY-STATUS] allows proxies to convey information about how a proxied request was handled in HTTP responses sent to clients. It defines a set of parameters that provide information, such as the name of the next hop.¶
[PROXY-STATUS] defines a next-hop
parameter, which can contain a hostname,
IP address, or alias of the next hop. This parameter can contain only one such item,
so it cannot be used to communicate a chain of aliases encountered during DNS resolution
when connecting to the next hop.¶
Knowing the full chain of aliases that were used during DNS resolution is particularly useful for clients of forward proxies, in which the client is requesting to connect to a specific target hostname using the CONNECT method [HTTP] or UDP proxying [CONNECT-UDP]. DNS aliases can be used to "cloak" hosts that perform tracking or malicious activity behind more innocuous hostnames, and clients such as web browsers use the chain of DNS aliases to influence behavior like cookie usage policies [COOKIES] or blocking of malicious hosts.¶
This document allows clients to receive the chain of DNS aliases for the next hop
by including the list of names in a new next-hop-aliases
Proxy-Status parameter.¶
The key words "MUST", "MUST NOT", "REQUIRED", "SHALL", "SHALL NOT", "SHOULD", "SHOULD NOT", "RECOMMENDED", "NOT RECOMMENDED", "MAY", and "OPTIONAL" in this document are to be interpreted as described in BCP 14 [RFC2119] [RFC8174] when, and only when, they appear in all capitals, as shown here.¶
The next-hop-aliases
parameter's value is a String that contains one or more DNS names in
a comma-separated list. The items in the list include all names received in CNAME
records [DNS] or AliasMode SVCB or HTTPS records [SVCB]
during the course of resolving the next hop's hostname using DNS. Since DNS names can include
comma (,
) characters in them, any commas that appear in a DNS names MUST be represented
using a percent-encoded %2C
value instead.¶
For example:¶
Proxy-Status: proxy.example.net; next-hop=2001:db8::1 next-hop-aliases="tracker.example.com.,service1.example-cdn.com."¶
indicates that proxy.example.net, which used the IP address "2001:db8::1" as the next hop
for this request, encountered the CNAMEs "tracker.example.com." and "service1.example-cdn.com"
in the DNS resolution chain. Note that while this example includes both the next-hop
and
next-hop-aliases
parameters, next-hop-aliases
can be included without including next-hop
.¶
The next-hop-aliases
parameter only applies when DNS was used to resolve the next hop's name, and
does not apply in all situations. Clients can use the information in this parameter to determine
how to use the connection established through the proxy, but need to gracefully handle situations
in which this parameter is not present.¶
The next-hop-aliases
parameter does not include any DNSSEC information or imply that DNSSEC was used.
The information included in the parameter can only be trusted to be valid insofar as the client
trusts its proxy to provide accurate information. This information is intended to be used as
a hint, and SHOULD NOT be used for making security decisions about the identity resource access
through the proxy.¶
This document registers the "next-hop-aliases" parameter in the "HTTP Proxy-Status Parameters" registry <https://www.iana.org/assignments/http-proxy-status>.¶