<?xml version='1.0' encoding='utf-8'?>
<!DOCTYPE rfc [
  <!ENTITY nbsp    "&#160;">
  <!ENTITY zwsp   "&#8203;">
  <!ENTITY nbhy   "&#8209;">
  <!ENTITY wj     "&#8288;">
]>
<?xml-stylesheet type="text/xsl" href="rfc2629.xslt" ?>
<!-- generated by https://github.com/cabo/kramdown-rfc version 1.7.35 (Ruby 3.4.9) -->
<rfc xmlns:xi="http://www.w3.org/2001/XInclude" ipr="trust200902" docName="draft-ietf-httpapi-privacy-05" category="bcp" consensus="true" submissionType="IETF" tocInclude="true" sortRefs="true" symRefs="true" version="3">
  <!-- xml2rfc v2v3 conversion 3.32.0 -->
  <front>
    <title abbrev="privacy">Protecting Credentials with HTTP APIs</title>
    <seriesInfo name="Internet-Draft" value="draft-ietf-httpapi-privacy-05"/>
    <author fullname="Rich Salz">
      <organization>Akamai Technologies</organization>
      <address>
        <email>rsalz@akamai.com</email>
      </address>
    </author>
    <author fullname="Mike Bishop">
      <organization>Akamai Technologies</organization>
      <address>
        <email>mbishop@evequefou.be</email>
      </address>
    </author>
    <author fullname="Marius Kleidl">
      <organization>Transloadit</organization>
      <address>
        <email>marius@transloadit.com</email>
      </address>
    </author>
    <date year="2026" month="April" day="16"/>
    <area>Web and Internet Transport</area>
    <workgroup>Building Blocks for HTTP APIs</workgroup>
    <abstract>
      <?line 48?>

<t>Redirecting HTTP requests to HTTPS, a common pattern for human-facing web
resources, can be an anti-pattern for authenticated HTTP API traffic.
This document
discusses the pitfalls and makes deployment recommendations for authenticated
HTTP APIs. It does not specify a protocol.</t>
    </abstract>
    <note removeInRFC="true">
      <name>About This Document</name>
      <t>
        The latest revision of this draft can be found at <eref target="https://ietf-wg-httpapi.github.io/draft-ietf-httpapi-privacy/draft-ietf-httpapi-privacy.html"/>.
        Status information for this document may be found at <eref target="https://datatracker.ietf.org/doc/draft-ietf-httpapi-privacy/"/>.
      </t>
      <t>
        Discussion of this document takes place on the
        Building Blocks for HTTP APIs Working Group mailing list (<eref target="mailto:httpapi@ietf.org"/>),
        which is archived at <eref target="https://mailarchive.ietf.org/arch/browse/httpapi/"/>.
        Subscribe at <eref target="https://www.ietf.org/mailman/listinfo/httpapi/"/>.
      </t>
      <t>Source for this draft and an issue tracker can be found at
        <eref target="https://github.com/ietf-wg-httpapi/httpapi-privacy"/>.</t>
    </note>
  </front>
  <middle>
    <?line 56?>

<section anchor="introduction">
      <name>Introduction</name>
      <t>It is a common pattern for HTTP servers to prefer serving resources over HTTPS.
Because HTTPS uses TLS, clients receive authentication of the server and
confidentiality of the resource bodies supplied by the server.</t>
      <t>In order to implement this preference, HTTP servers often listen for unencrypted
requests and respond with a 3XX status code directing the client to the
equivalent resource over an encrypted connection. For unauthenticated web
browsing, this is a reasonable user experience bridge. Users often type bare
hostnames (not URIs) into a user agent; if the user agent defaults to an
unencrypted connection, the server can correct this default and require the use
of encryption. This pattern is so well established that many HTTP server and
intermediary implementations have a prominently displayed option to enable it
automatically.</t>
      <t>When client authentication is used, more care must be taken. The client's
initial request may include a Bearer token or other credential (such as
a Cookie); once the request
has been sent on the network, any passive attacker who can see the traffic can
acquire this credential and use it.</t>
      <t>If the server performs a redirect in this situation, it does not mitigate
exposure of the credential. Further, because the request will ultimately succeed
if the client follows the redirect, an application developer or user who
accidentally configures an unencrypted API endpoint will not necessarily notice
the misconfiguration.</t>
      <t>This document describes actions API servers and clients should take in order to
safeguard credentials. These recommendations are not directed at resources where
no authentication is used. However, <xref target="PERPASS"/> establishes broader
reasons to use HTTPS regardless of whether credentials are transmitted.</t>
      <t>It has been established guidance not to send credentials in the clear for
decades. Nonetheless, a spot-check in May 2024 (<xref target="BLOG"/>) found over two dozen
websites that were vulnerable to the issues listed here.</t>
      <section anchor="conventions-and-definitions">
        <name>Conventions and Definitions</name>
        <t>Although this document is not an IETF Standards Track publication, it
adopts the conventions for normative language to provide clarity of
instructions to the implementer.
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 <xref target="RFC2119"/> <xref target="RFC8174"/> when, and only when, they
appear in all capitals, as shown here.
<?line -9?>
        </t>
      </section>
    </section>
    <section anchor="server-recommendations">
      <name>Server Recommendations</name>
      <section anchor="pre-connection-redirects">
        <name>Pre-Connection Redirects</name>
        <t>Various mechanisms exist to inform clients that unencrypted requests to a server
are never appropriate:</t>
        <ul spacing="normal">
          <li>
            <t>HTTP Strict Transport Security (HSTS) <xref target="RFC6797"/> informs clients who make a
successful connection over HTTPS that secure connections are a requirement in
the future.</t>
          </li>
          <li>
            <t>HTTPS DNS records <xref target="RFC9460"/> inform clients at connection time to use only
secure connections to the indicated server.</t>
          </li>
        </ul>
        <t>Neither mechanism is foolproof. An attacker with control of the network or the
DNS server could block resolution of HTTPS records on a client connecting to a
new server, while HSTS requires a successful prior connection to the server and
relies on the client to implement persistent storage of the HSTS directive.</t>
        <t>Used together, however, both approaches make clients less likely to send any
requests over an insecure channel.
HTTP API servers with authenticated endpoints SHOULD
employ both mechanisms.</t>
      </section>
      <section anchor="connection-blocking">
        <name>Connection Blocking</name>
        <t>If an API request succeeds despite having an unencrypted endpoint configured,
the developer or user is less likely to notice the misconfiguration. Where
possible, it is advantageous for such a misconfiguration to fail immediately so
that the error can be noticed and corrected.</t>
        <t>HTTP API servers MAY induce such an early failure by not accepting unencrypted
connections, e.g. on port 80. This makes it impossible for a client to send a
credential over an insecure channel to the authentic server, as no such channel
can be opened.
HTTP API servers MAY alternatively restrict connections on port 80 to
network sources which are more trusted, such as a VPN or virtual network
interface.</t>
        <t>However, this mitigation is limited against active network attackers, who can
impersonate the HTTP API server and accept the client's insecure
connection attempt.</t>
      </section>
      <section anchor="credential-restriction">
        <name>Credential Restriction</name>
        <t>Whenever possible, credentials should include an indicator to clients that the
credential is restricted to secure contexts. For example, Cookie-based
authentication SHOULD include the Secure attribute described in <xref section="4.1.2.5" sectionFormat="of" target="RFC6265"/>. Bearer tokens MAY use the format described in <xref target="RFC8959"/>
to indicate the expected usage to the client.</t>
      </section>
      <section anchor="disclosure-response">
        <name>Disclosure Response</name>
        <t>Some deployments might not find it feasible to completely block unencrypted
connections, whether because the hostname is shared with unauthenticated
endpoints or for infrastructure reasons. Therefore, HTTP API servers need
a response for
when a credential has been received over an insecure channel.</t>
        <t>HTTP status code 403 (Forbidden) indicates that "the server understood the
request but refuses to fulfill it" <xref target="HTTP"/>. While this is generally
understood to mean that "the server considers [the credentials] insufficient to
grant access," it also states that "a request might be forbidden for reasons
unrelated to the credentials." HTTP API servers SHOULD return status
code 403 to all
requests received over an insecure channel, regardless of the validity of the
presented credentials.</t>
        <t>Because a difference in behavior would enable attackers to guess and check
possible credentials, an HTTP API server MUST NOT return a different client
response
between a valid or invalid credential presented over an insecure connection.
Differences in behavior MUST only be visible on subsequent use of the credential
over a secure channel.</t>
        <section anchor="credential-revocation">
          <name>Credential Revocation</name>
          <t>When a request is received over an unencrypted channel, the presented credential
is potentially compromised. HTTP API servers SHOULD revoke such
credentials immediately.
When the credential is next used over a secure channel, the server MAY return an
error that indicates why the credential was revoked.</t>
          <t>Credentials in a request can take on different forms. API keys and tokens are simple
modes for authentication, but can be abused by attackers to forge requests and hence
should be revoked if compromised. Requests can also be authenticated using derived values,
where they only include digital signatures or message authentication codes (MACs)
derived from credentials but not the credentials themselves. Since an attacker cannot
abuse the derived values to forge requests, the server MAY choose to not revoke the
credentials in this case.</t>
        </section>
      </section>
    </section>
    <section anchor="client-recommendations">
      <name>Client Recommendations</name>
      <t>The following recommendations increase the success rate of the server
recommendations above.</t>
      <section anchor="implement-relevant-protocols">
        <name>Implement Relevant Protocols</name>
        <t>Clients SHOULD support and query for HTTPS records <xref target="RFC9460"/> when
establishing a connection. This gives HTTP API servers an opportunity
to provide more
complete information about capabilities, some of which are security-relevant.</t>
        <t>Clients SHOULD respect HSTS header fields <xref target="RFC6797"/> received
from a server. This includes implementing persistent storage of HSTS indications
received from the server.</t>
        <t>Clients that do not follow either, or both, of these recommendations might not
understand the requirements of the server and could have their traffic denied
upon receipt, perhaps after having exposed authentication material in
cleartext on the Internet.</t>
      </section>
      <section anchor="respect-credential-restrictions">
        <name>Respect Credential Restrictions</name>
        <t><xref target="RFC6265"/> prohibits sending a Cookie with the Secure attribute over an
insecure channel.</t>
        <t>Clients MUST NOT send any header field that contains a secret token over an
insecure channel. Such header fields include Authorization and
Proxy-Authorization and are described in Sections 11.6.2 and
11.7.2 of <xref target="RFC9110"/>, respectively.</t>
      </section>
      <section anchor="disallow-insecure-by-default">
        <name>Disallow Insecure by Default</name>
        <t>When authentication is used, clients SHOULD require an explicit indication from
the user or caller that an insecure context is expected which is distinct from
the provided URI. Depending on the interface, this might be a UI preference or
an API flag.</t>
        <t>Absent such an indication, clients of HTTP APIs MUST implement and use HTTPS
exclusively.</t>
      </section>
    </section>
    <section anchor="security-considerations">
      <name>Security Considerations</name>
      <t>This entire document is about security of HTTP API interactions.</t>
      <t>The behavior recommended in <xref target="credential-revocation"/> creates the potential for
a denial of service attack where an attacker guesses many possible credentials
over an unencrypted connection in hopes of discovering and revoking a valid one.
HTTP API servers implementing this mitigation MUST also guard against such attacks, such
as by limiting the number of requests before closing the connection and
rate-limiting the establishment of insecure connections.</t>
    </section>
    <section anchor="iana-considerations">
      <name>IANA Considerations</name>
      <t>This document has no IANA actions.</t>
    </section>
  </middle>
  <back>
    <references anchor="sec-combined-references">
      <name>References</name>
      <references anchor="sec-normative-references">
        <name>Normative References</name>
        <reference anchor="RFC6265">
          <front>
            <title>HTTP State Management Mechanism</title>
            <author fullname="A. Barth" initials="A." surname="Barth"/>
            <date month="April" year="2011"/>
            <abstract>
              <t>This document defines the HTTP Cookie and Set-Cookie header fields. These header fields can be used by HTTP servers to store state (called cookies) at HTTP user agents, letting the servers maintain a stateful session over the mostly stateless HTTP protocol. Although cookies have many historical infelicities that degrade their security and privacy, the Cookie and Set-Cookie header fields are widely used on the Internet. This document obsoletes RFC 2965. [STANDARDS-TRACK]</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="6265"/>
          <seriesInfo name="DOI" value="10.17487/RFC6265"/>
        </reference>
        <reference anchor="PERPASS">
          <front>
            <title>Pervasive Monitoring Is an Attack</title>
            <author fullname="S. Farrell" initials="S." surname="Farrell"/>
            <author fullname="H. Tschofenig" initials="H." surname="Tschofenig"/>
            <date month="May" year="2014"/>
            <abstract>
              <t>Pervasive monitoring is a technical attack that should be mitigated in the design of IETF protocols, where possible.</t>
            </abstract>
          </front>
          <seriesInfo name="BCP" value="188"/>
          <seriesInfo name="RFC" value="7258"/>
          <seriesInfo name="DOI" value="10.17487/RFC7258"/>
        </reference>
        <reference anchor="RFC2119">
          <front>
            <title>Key words for use in RFCs to Indicate Requirement Levels</title>
            <author fullname="S. Bradner" initials="S." surname="Bradner"/>
            <date month="March" year="1997"/>
            <abstract>
              <t>In many standards track documents several words are used to signify the requirements in the specification. These words are often capitalized. This document defines these words as they should be interpreted in IETF documents. This document specifies an Internet Best Current Practices for the Internet Community, and requests discussion and suggestions for improvements.</t>
            </abstract>
          </front>
          <seriesInfo name="BCP" value="14"/>
          <seriesInfo name="RFC" value="2119"/>
          <seriesInfo name="DOI" value="10.17487/RFC2119"/>
        </reference>
        <reference anchor="RFC8174">
          <front>
            <title>Ambiguity of Uppercase vs Lowercase in RFC 2119 Key Words</title>
            <author fullname="B. Leiba" initials="B." surname="Leiba"/>
            <date month="May" year="2017"/>
            <abstract>
              <t>RFC 2119 specifies common key words that may be used in protocol specifications. This document aims to reduce the ambiguity by clarifying that only UPPERCASE usage of the key words have the defined special meanings.</t>
            </abstract>
          </front>
          <seriesInfo name="BCP" value="14"/>
          <seriesInfo name="RFC" value="8174"/>
          <seriesInfo name="DOI" value="10.17487/RFC8174"/>
        </reference>
        <reference anchor="RFC6797">
          <front>
            <title>HTTP Strict Transport Security (HSTS)</title>
            <author fullname="J. Hodges" initials="J." surname="Hodges"/>
            <author fullname="C. Jackson" initials="C." surname="Jackson"/>
            <author fullname="A. Barth" initials="A." surname="Barth"/>
            <date month="November" year="2012"/>
            <abstract>
              <t>This specification defines a mechanism enabling web sites to declare themselves accessible only via secure connections and/or for users to be able to direct their user agent(s) to interact with given sites only over secure connections. This overall policy is referred to as HTTP Strict Transport Security (HSTS). The policy is declared by web sites via the Strict-Transport-Security HTTP response header field and/or by other means, such as user agent configuration, for example. [STANDARDS-TRACK]</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="6797"/>
          <seriesInfo name="DOI" value="10.17487/RFC6797"/>
        </reference>
        <reference anchor="RFC9460">
          <front>
            <title>Service Binding and Parameter Specification via the DNS (SVCB and HTTPS Resource Records)</title>
            <author fullname="B. Schwartz" initials="B." surname="Schwartz"/>
            <author fullname="M. Bishop" initials="M." surname="Bishop"/>
            <author fullname="E. Nygren" initials="E." surname="Nygren"/>
            <date month="November" year="2023"/>
            <abstract>
              <t>This document specifies the "SVCB" ("Service Binding") and "HTTPS" DNS resource record (RR) types to facilitate the lookup of information needed to make connections to network services, such as for HTTP origins. SVCB records allow a service to be provided from multiple alternative endpoints, each with associated parameters (such as transport protocol configuration), and are extensible to support future uses (such as keys for encrypting the TLS ClientHello). They also enable aliasing of apex domains, which is not possible with CNAME. The HTTPS RR is a variation of SVCB for use with HTTP (see RFC 9110, "HTTP Semantics"). By providing more information to the client before it attempts to establish a connection, these records offer potential benefits to both performance and privacy.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="9460"/>
          <seriesInfo name="DOI" value="10.17487/RFC9460"/>
        </reference>
        <reference anchor="HTTP">
          <front>
            <title>HTTP Semantics</title>
            <author fullname="R. Fielding" initials="R." role="editor" surname="Fielding"/>
            <author fullname="M. Nottingham" initials="M." role="editor" surname="Nottingham"/>
            <author fullname="J. Reschke" initials="J." role="editor" surname="Reschke"/>
            <date month="June" year="2022"/>
            <abstract>
              <t>The Hypertext Transfer Protocol (HTTP) is a stateless application-level protocol for distributed, collaborative, hypertext information systems. This document describes the overall architecture of HTTP, establishes common terminology, and defines aspects of the protocol that are shared by all versions. In this definition are core protocol elements, extensibility mechanisms, and the "http" and "https" Uniform Resource Identifier (URI) schemes.</t>
              <t>This document updates RFC 3864 and obsoletes RFCs 2818, 7231, 7232, 7233, 7235, 7538, 7615, 7694, and portions of 7230.</t>
            </abstract>
          </front>
          <seriesInfo name="STD" value="97"/>
          <seriesInfo name="RFC" value="9110"/>
          <seriesInfo name="DOI" value="10.17487/RFC9110"/>
        </reference>
        <reference anchor="RFC9110">
          <front>
            <title>HTTP Semantics</title>
            <author fullname="R. Fielding" initials="R." role="editor" surname="Fielding"/>
            <author fullname="M. Nottingham" initials="M." role="editor" surname="Nottingham"/>
            <author fullname="J. Reschke" initials="J." role="editor" surname="Reschke"/>
            <date month="June" year="2022"/>
            <abstract>
              <t>The Hypertext Transfer Protocol (HTTP) is a stateless application-level protocol for distributed, collaborative, hypertext information systems. This document describes the overall architecture of HTTP, establishes common terminology, and defines aspects of the protocol that are shared by all versions. In this definition are core protocol elements, extensibility mechanisms, and the "http" and "https" Uniform Resource Identifier (URI) schemes.</t>
              <t>This document updates RFC 3864 and obsoletes RFCs 2818, 7231, 7232, 7233, 7235, 7538, 7615, 7694, and portions of 7230.</t>
            </abstract>
          </front>
          <seriesInfo name="STD" value="97"/>
          <seriesInfo name="RFC" value="9110"/>
          <seriesInfo name="DOI" value="10.17487/RFC9110"/>
        </reference>
      </references>
      <references anchor="sec-informative-references">
        <name>Informative References</name>
        <reference anchor="BLOG" target="https://jviide.iki.fi/http-redirects">
          <front>
            <title>Your API Shouldn't Redirect HTTP to HTTPS</title>
            <author initials="J." surname="Viide">
              <organization/>
            </author>
            <date year="2024" month="May"/>
          </front>
        </reference>
        <reference anchor="RFC8959">
          <front>
            <title>The "secret-token" URI Scheme</title>
            <author fullname="M. Nottingham" initials="M." surname="Nottingham"/>
            <date month="January" year="2021"/>
            <abstract>
              <t>This document registers the "secret-token" URI scheme to aid in the identification of authentication tokens.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="8959"/>
          <seriesInfo name="DOI" value="10.17487/RFC8959"/>
        </reference>
      </references>
    </references>
    <?line 258?>

<section numbered="false" anchor="acknowledgments">
      <name>Acknowledgments</name>
      <t>We are grateful to Joachim Viide for his <xref target="BLOG"/> blog posting that brought up the issue.</t>
    </section>
  </back>
  <!-- ##markdown-source:
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
S3o9f3325k33QsQn5q/ff3jzsn/Vrzx///btq3cvw2J8Kkcficnbsz9PpmzA
yfvL64v3787eTLqU1BmOUWUpd3M9AZ/gEPAiRWFJa16cX/7rnyePCePA9qOT
k+fAdnjz7cmzx3gDxNbhNFsj3sNbmGQnkGUIZtgFWQTpFXQRGMSzHL+3dXT9
b7+vUKnk7Pn3vxeEAzkPifVqHK6MkEunZ+ddPe6YOL78Be6xoC5rNCnoKjwS
sv4EhDF14qagSx6MzWEWG1JsFfON4OygueZuAAK0adw3i1mox/PGmWLQGUPq
omWE3Hs9v57fj0Z6+uz5MxgpSOA7EagGEWGWCk0BJ2/v0SoNuMaAkAaBPe2v
B0+ExKAS1wjRUFMXDfgt2qYl487iFi/fzTn/ESCDZM8fP33YSdYJhoMGMqC+
6JStyLsk7KEYKQTqMvK6jr++04azWecUCteFtRUMaheZPKsHZZlYKLYFsa9S
PYyFnCoTsU5SIrEvzv85zRE4Z1dtouApqwZd8ZlK5TDJTIwWjha1vo3bTeEQ
gwRFnkv2pII+8Az8b93INnaf7TtdEZu39bAGj5g7qqxnYg53NtZRioma8smR
cW8pH4Lgor7ZpQ4kYJWKTW6JrBMiVUG1hVGUvMdVpEIvj0BM6R8cqKf9iaMj
hUU/wi+1RoPVdX6p3IauYMTXU6X3MqQkodfU7QWZ+sDLUjJPpuJxD8zO1Amn
0zGJyUTmQvTZI0FoIrDkoT2i0ZGMjouUUyYVh/TFHNghcBB5lIPIj1znwcO8
QY1iokZNSLlFqwwHUU6h6hDI6MF62n6hTAUnMyMPbMwKDlk6UDtnXWrAgyBl
oDKhd+B6fmB8pHCKpxZSh4NR55XD1nQW+S3fhbIH420Y0cMubxCcU6mzZUaY
5CT17cPYfIRunXRdJ9VDgz7AbYCPGNDgL8EnBUMHly6uFJXnoEN8VkRbwGc1
KX9Ud1VRa8TVGEojGEO2HWadXiUifilT9OyNxmXcoVimTy2RjWm0JsX2L5fv
CDJb48DRq5RqQnO1UAXFYMfwuHJG1h45YGXwnly5VMQHmLFu+4yV0pqfpn5D
wNJ4j762CVDcU5xBEfw5yB9f+87YA7fS9oi9JkZa76CraCkei1AnxwWsB/eQ
C0YO3XVkdcrglucNo2pJ2XeAA+M7n3CWGlSFRn9qfGj39SdFmW8a27dZrpDT
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

-->

</rfc>
