<?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.18 (Ruby 3.0.2) -->
<rfc xmlns:xi="http://www.w3.org/2001/XInclude" ipr="trust200902" docName="draft-rsalz-httpapi-privacy-00" category="bcp" consensus="true" submissionType="IETF" tocInclude="true" sortRefs="true" symRefs="true" version="3">
  <!-- xml2rfc v2v3 conversion 3.23.0 -->
  <front>
    <title abbrev="privacy">API Keys and Privacy</title>
    <seriesInfo name="Internet-Draft" value="draft-rsalz-httpapi-privacy-00"/>
    <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@akamai.com</email>
      </address>
    </author>
    <author fullname="Marius Kleidl">
      <organization>Transloadit</organization>
      <address>
        <email>marius@transloadit.com</email>
      </address>
    </author>
    <date year="2024" month="August" day="26"/>
    <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 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://richsalz.github.io/draft-rsalz-httpapi-privacy/draft-rsalz-httpapi-privacy.html"/>.
        Status information for this document may be found at <eref target="https://datatracker.ietf.org/doc/draft-rsalz-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/richsalz/draft-rsalz-httpapi-privacy"/>.</t>
    </note>
  </front>
  <middle>
    <?line 55?>

<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; 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.</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. 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>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.</t>
        <t>However, this mitigation is limited against active network attackers, who can
impersonate the 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="credential-revocation">
        <name>Credential Revocation</name>
        <t>Some deployments may not find it feasible to completely block unencrypted
connections, whether because the hostname is shared with unauthenticated
endpoints or for infrastructure reasons. Therefore, servers need a response for
when a valid credential has been received over an insecure channel.</t>
        <t>Because a difference in behavior would enable attackers to guess and check
possible credentials, a 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>
        <t>When a request is received over an unencrypted channel, the presented credential
is potentially compromised. Servers SHOULD revoke such credentials immediately.
When the credential is next used over a secure channel, a server MAY return an
error that indicates why the credential was revoked.</t>
      </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 and SHOULD respect HSTS headers <xref target="RFC6797"/> received
from a server. This includes implementing persistent storage of HSTS indications
received from the server.</t>
      </section>
      <section anchor="respect-credential-restrictions">
        <name>Respect Credential Restrictions</name>
        <t>Clients MUST NOT send a Cookie with the Secure attribute <xref target="RFC6265"/> over an
insecure channel. Clients MUST NOT send an Authorization header containing a
token whose value begins with "secret-token:" over an insecure channel.</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. Without such an
indication, attempts to send credentials should fail without producing any
network traffic.</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.
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="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>
      </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 208?>

<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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
AA==

-->

</rfc>
