<?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.5 (Ruby 3.2.2) -->
<rfc xmlns:xi="http://www.w3.org/2001/XInclude" ipr="trust200902" docName="draft-ietf-oauth-browser-based-apps-17" category="bcp" consensus="true" tocInclude="true" sortRefs="true" symRefs="true" version="3">
  <!-- xml2rfc v2v3 conversion 3.19.4 -->
  <front>
    <title>OAuth 2.0 for Browser-Based Apps</title>
    <seriesInfo name="Internet-Draft" value="draft-ietf-oauth-browser-based-apps-17"/>
    <author initials="A." surname="Parecki" fullname="Aaron Parecki">
      <organization>Okta</organization>
      <address>
        <email>aaron@parecki.com</email>
        <uri>https://aaronparecki.com</uri>
      </address>
    </author>
    <author initials="D." surname="Waite" fullname="David Waite">
      <organization>Ping Identity</organization>
      <address>
        <email>david@alkaline-solutions.com</email>
      </address>
    </author>
    <author initials="P." surname="De Ryck" fullname="Philippe De Ryck">
      <organization>Pragmatic Web Security</organization>
      <address>
        <email>philippe@pragmaticwebsecurity.com</email>
      </address>
    </author>
    <date year="2024" month="February" day="28"/>
    <area>Security</area>
    <workgroup>Web Authorization Protocol</workgroup>
    <keyword>Internet-Draft</keyword>
    <abstract>
      <?line 161?>

<t>This specification details the threats, attack consequences, security considerations and best practices that must be
taken into account when developing browser-based applications that use OAuth 2.0.</t>
    </abstract>
    <note removeInRFC="true">
      <name>Discussion Venues</name>
      <t>Discussion of this document takes place on the
    Web Authorization Protocol Working Group mailing list (oauth@ietf.org),
    which is archived at <eref target="https://mailarchive.ietf.org/arch/browse/oauth/"/>.</t>
      <t>Source for this draft and an issue tracker can be found at
    <eref target="https://github.com/oauth-wg/oauth-browser-based-apps"/>.</t>
    </note>
  </front>
  <middle>
    <?line 166?>

<section anchor="introduction">
      <name>Introduction</name>
      <t>This specification describes different architectural patterns for implementing OAuth 2.0 in applications executing in a browser. The specification outlines the security challenges for browser-based applications and analyzes how different patterns address these challenges.</t>
      <t>For native application developers using OAuth 2.0 and OpenID Connect, an IETF BCP
(best current practice) was published that guides integration of these technologies.
This document is formally known as <xref target="RFC8252"/> or BCP 212, but nicknamed "AppAuth" after
the OpenID Foundation-sponsored set of libraries that assist developers in adopting
these practices. <xref target="RFC8252"/> makes specific recommendations for how to securely implement OAuth in native
applications, including incorporating additional OAuth extensions where needed.</t>
      <t>OAuth 2.0 for Browser-Based Apps addresses the similarities between implementing
OAuth for native apps and browser-based apps, but also highlights how the security properties of browser-based applications are vastly different than those of native applications. This document is primarily focused on OAuth,
except where OpenID Connect provides additional considerations.</t>
      <t>Many of these recommendations are derived from the OAuth 2.0 Security Best Current Practice
<xref target="oauth-security-topics"/> and browser-based apps are expected to follow those recommendations
as well. This document expands on and further restricts various recommendations given in <xref target="oauth-security-topics"/>.</t>
    </section>
    <section anchor="notational-conventions">
      <name>Notational Conventions</name>
      <t>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 <xref target="RFC2119"/>.</t>
    </section>
    <section anchor="terminology">
      <name>Terminology</name>
      <t>In addition to the terms defined in referenced specifications, this document uses
the following terms:</t>
      <dl>
        <dt>"OAuth":</dt>
        <dd>
          <t>In this document, "OAuth" refers to OAuth 2.0, <xref target="RFC6749"/> and <xref target="RFC6750"/>.</t>
        </dd>
        <dt>"Browser-based application":</dt>
        <dd>
          <t>An application that is dynamically downloaded and executed in a web browser,
usually written in JavaScript. Also sometimes referred to as a "single-page application", or "SPA".</t>
        </dd>
      </dl>
      <t>While this document often refers to "JavaScript applications", this is not intended to be exclusive to the JavaScript language. The recommendations and considerations herein also apply to other languages that execute code in the browser, such as <eref target="https://webassembly.org/">Web Assembly</eref>.</t>
    </section>
    <section anchor="history-of-oauth-20-in-browser-based-applications">
      <name>History of OAuth 2.0 in Browser-Based Applications</name>
      <t>At the time that OAuth 2.0 <xref target="RFC6749"/> and <xref target="RFC6750"/> were created, browser-based JavaScript applications needed a solution that strictly complied with the same-origin policy. Common deployments of OAuth 2.0 involved an application running on a different domain than the authorization server, so it was historically not possible to use the Authorization Code flow which would require a cross-origin POST request. This was one of the motivations for the definition of the Implicit flow, which returns the access token in the front channel via the fragment part of the URL, bypassing the need for a cross-origin POST request.</t>
      <t>However, there are several drawbacks to the Implicit flow, generally involving vulnerabilities associated with the exposure of the access token in the URL. See <xref target="implicit_flow"/> for an analysis of these attacks and the drawbacks of using the Implicit flow in browsers. Additional attacks and security considerations can be found in <xref target="oauth-security-topics"/>.</t>
      <t>In recent years, widespread adoption of Cross-Origin Resource Sharing (CORS), which enables exceptions to the same-origin policy, allows browser-based apps to use the OAuth 2.0 Authorization Code flow and make a POST request to exchange the authorization code for an access token at the token endpoint. In this flow, tokens are no longer exposed in the less-secure front channel, which makes the use of refresh tokens possible for browser-based applications. Furthermore, adding PKCE to the flow prevents authorization code injection, as well as ensures that even if an authorization code is intercepted, it is unusable by an attacker.</t>
      <t>For this reason, and from other lessons learned, the current best practice for browser-based applications is to use the OAuth 2.0 Authorization Code flow with PKCE. There are various architectural patterns for deploying browser-based apps, both with and without a corresponding server-side component, each with their own trade-offs and considerations, discussed further in this document. Additional considerations apply for first-party common-domain apps.</t>
    </section>
    <section anchor="threats">
      <name>The Threat of Malicious JavaScript</name>
      <t>Malicious JavaScript poses a significant risk to browser-based applications. Attack vectors, such as cross-site scripting (XSS) or the compromise of remote code files, give an attacker the capability to run arbitrary code in the application's execution context. This malicious code is not isolated from the main application's code in any way. Consequentially, the malicious code can not only take control of the running execution context, but can also perform actions within the application's origin. Concretely, this means that the malicious code can steal data from the current page, interact with other same-origin browsing contexts, send requests to a backend from within the application's origin, steal data from origin-based storage mechanisms (e.g., localStorage, IndexedDB), etc.</t>
      <t>When analyzing the security of browser-based applications in light of the presence of malicious JS, it is crucial to realize that the <strong>malicious JavaScript code has the same privileges as the legitimate application code</strong>. When the application code can access variables or call functions, the malicious JS code can do exactly the same. Furthermore, the malicious JS code can tamper with the regular execution flow of the application, as well as with any application-level defenses, since they are typically controlled from within the application. For example, the attacker can remove or override event listeners, modify the behavior of built-in functions (prototype pollution), and stop pages in frames from loading.</t>
      <t>This section explores the threats malicious JS code poses to browser-based applications that assume the role of an OAuth client. The first part discusses a few scenarios that attackers can use once they found a way to run malicious JavaScript code. These scenarios paint a clear picture of the true power of the attacker, which goes way beyond simple token exfiltration. The second part of this section analyzes the impact of these attack scenarios on the OAuth client.</t>
      <t>The remainder of this specification will refer back to these attack scenarios and consequences to analyze the security properties of the different architectural patterns.</t>
      <section anchor="payloads">
        <name>Malicious JavaScript Payloads</name>
        <t>This section presents several malicious scenarios that an attacker can execute once they have found a vulnerability that allows the execution of malicious JavaScript code. The attack scenarios range from extremely trivial (<xref target="payload-single-theft"/>) to highly sophisticated (<xref target="payload-new-flow"/>). Note that this enumeration is non-exhaustive and presented in no particular order.</t>
        <section anchor="payload-single-theft">
          <name>Single-Execution Token Theft</name>
          <t>This scenario covers a simple token exfiltration attack, where the attacker obtains and exfiltrates the client's current tokens. This scenario consists of the following steps:</t>
          <ul spacing="normal">
            <li>
              <t>Execute malicious JS code</t>
            </li>
            <li>
              <t>Obtain tokens from the application's preferred storage mechanism (See <xref target="token-storage"/>)</t>
            </li>
            <li>
              <t>Send the tokens to a server controlled by the attacker</t>
            </li>
            <li>
              <t>Store/abuse the stolen tokens</t>
            </li>
          </ul>
          <t>The recommended defensive strategy to protect access tokens is to reduce the scope and lifetime of the token. For refresh tokens, the use of refresh token rotation offers a detection and correction mechanism. Sender-constrained tokens (<xref target="sender-constrained-tokens"/>) offer an additional layer of protection against stolen access tokens.</t>
          <t>Note that this attack scenario is trivial and often used to illustrate the dangers of malicious JavaScript. Unfortunately, it significantly underestimates the capabilities of a sophisticated and motivated attacker.</t>
        </section>
        <section anchor="payload-persistent-theft">
          <name>Persistent Token Theft</name>
          <t>This attack scenario is a more advanced variation on the Single-Execution Token Theft scenario (<xref target="payload-single-theft"/>). Instead of immediately stealing tokens upon the execution of the payload, the attacker sets up the necessary handlers to steal the application's tokens on a continuous basis. This scenario consists of the following steps:</t>
          <ul spacing="normal">
            <li>
              <t>Execute malicious JS code</t>
            </li>
            <li>
              <t>Setup a continuous token theft mechanism (e.g., on a 10-second time interval)
        - Obtain tokens from the application's preferred storage mechanism (See <xref target="token-storage"/>)
        - Send the tokens to a server controlled by the attacker
        - Store the tokens</t>
            </li>
            <li>
              <t>Wait until the opportune moment to abuse the latest version of the stolen tokens</t>
            </li>
          </ul>
          <t>The crucial difference in this scenario is that the attacker always has access to the latest tokens used by the application. This slight variation in the payload already suffices to counter typical defenses against token theft, such as short lifetimes or refresh token rotation.</t>
          <t>For access tokens, the attacker now obtains the latest access token for as long as the user's browser is online. Refresh token rotation is not sufficient to prevent abuse of a refresh token. An attacker can easily wait until the user closes the application or their browser goes offline before using the latest refresh token, thereby ensuring that the latest refresh token is not reused.</t>
        </section>
        <section anchor="payload-new-flow">
          <name>Acquisition and Extraction of New Tokens</name>
          <t>In this advanced attack scenario, the attacker completely disregards any tokens that the application has already obtained. Instead, the attacker takes advantage of the ability to run malicious code that is associated with the application's origin. With that ability, the attacker can inject a hidden iframe and launch a silent Authorization Code flow. This silent flow will reuse the user's existing session with the authorization server and result in the issuing of a new, independent set of tokens. This scenario consists of the following steps:</t>
          <ul spacing="normal">
            <li>
              <t>Execute malicious JS code</t>
            </li>
            <li>
              <t>Setup a handler to obtain the authorization code from the iframe (e.g., by monitoring the frame's URL or via Web Messaging)</t>
            </li>
            <li>
              <t>Insert a hidden iframe into the page and initialize it with an authorization request. The authorization request in the iframe will occur within the user's session and, if the session is still active, result in the issuing of an authorization code.</t>
            </li>
            <li>
              <t>Extract the authorization code from the iframe using the previously installed handler</t>
            </li>
            <li>
              <t>Send the authorization code to a server controlled by the attacker</t>
            </li>
            <li>
              <t>Exchange the authorization code for a new set of tokens</t>
            </li>
            <li>
              <t>Abuse the stolen tokens</t>
            </li>
          </ul>
          <t>The most important takeaway from this scenario is that it runs a new OAuth flow instead of focusing on stealing existing tokens. In essence, even if the application finds a token storage mechanism with perfect security, the attacker will still be able to request a new set of tokens. Note that because the attacker controls the application in the browser, the attacker's Authorization Code flow is indistinguishable from a legitimate Authorization Code flow.</t>
          <t>This attack scenario is possible because the security of public browser-based OAuth 2.0 clients relies entirely on the redirect URI and application's origin. When the attacker executes malicious JavaScript code in the application's origin, they gain the capability to inspect same-origin frames. As a result, the attacker's code running in the main execution context can inspect the redirect URI loaded in the same-origin frame to extract the authorization code.</t>
          <t>There are no practical security mechanisms for frontend applications that counter this attack scenario. Short access token lifetimes and refresh token rotation are ineffective, since the attacker has a fresh, independent set of tokens. Advanced security mechanism, such as DPoP (<xref target="DPoP"/>) are equally ineffective, since the attacker can use their own key pair to setup and use DPoP for the newly obtained tokens. Requiring user interaction with every Authorization Code flow would effectively stop the automatic silent issuance of new tokens, but this would significantly impact widely-established patterns, such as bootstrapping an application on its first page load, or single sign-on across multiple related applications, and is not a practical measure.</t>
        </section>
        <section anchor="payload-proxy">
          <name>Proxying Requests via the User's Browser</name>
          <t>This attack scenario involves the attacker sending requests to the resource server directly from within the OAuth client application running in the user's browser. In this scenario, there is no need for the attacker to abuse the application to obtain tokens, since the browser will include its own cookies or tokens along in the request. The requests to the resource server sent by the attacker are indistinguishable from requests sent by the legitimate application, since the attacker is running code in the same context as the legitimate application. This scenario consists of the following steps:</t>
          <ul spacing="normal">
            <li>
              <t>Execute malicious JS code</t>
            </li>
            <li>
              <t>Send a request to a resource server and process the response</t>
            </li>
          </ul>
          <t>To authorize the requests to the resource server, the attacker simply mimics the behavior of the client application. For example, when a client application programmatically attaches an access token to outgoing requests, the attacker does the same. Should the client application rely on an external component to augment the request with the proper access token, then this external component will also augment the attacker's request.</t>
          <t>This attack pattern is well-known and also occurs with traditional applications using <tt>HttpOnly</tt> session cookies. It is commonly accepted that this scenario cannot be stopped or prevented by application-level security measures. For example, the DPoP specification (<xref target="DPoP"/>) explicitly considers this attack scenario to be out of scope.</t>
        </section>
      </section>
      <section anchor="attack-consequences">
        <name>Attack Consequences</name>
        <t>Successful execution of a malicious payload can result in the theft of access tokens and refresh tokens, or in the ability to hijack the client application running in the user's browser. Each of these consequences is relevant for browser-based OAuth clients. They are discussed below in decreasing order of severity.</t>
        <section anchor="consequence-rt">
          <name>Exploiting Stolen Refresh Tokens</name>
          <t>When the attacker obtains a valid refresh token from a browser-based OAuth client, they can abuse the refresh token by running a Refresh Token flow with the authorization server. The response of the Refresh Token flow contains an access token, which gives the attacker the ability to access protected resources (See <xref target="consequence-at"/>). In essence, abusing a stolen refresh token enables long-term impersonation of the user to resource servers.</t>
          <t>The attack is only stopped when the authorization server refuses a refresh token because it has expired or rotated, or when the refresh token is revoked. In a typical browser-based OAuth client, it is not uncommon for a refresh token to remain valid for multiple hours, or even days.</t>
        </section>
        <section anchor="consequence-at">
          <name>Exploiting Stolen Access Tokens</name>
          <t>If the attacker obtains a valid access token, they gain the ability to impersonate the user in a request to a resource server. Concretely, possession of an access token allows the attacker to send arbitrary requests to any resource server that considers the access token to be valid. In essence, abusing a stolen access token enables short-term impersonation of the user to resource servers.</t>
          <t>The attack ends when the access token expires or when a token is revoked with the authorization server. In a typical browser-based OAuth client, access token lifetimes can be quite short, ranging from minutes to hours.</t>
          <t>Note that the possession of the access token allows its unrestricted use by the attacker. The attacker can send arbitrary requests to resource servers, using any HTTP method, destination URL, header values, or body.</t>
          <t>The application can use DPoP to ensure its access tokens are bound to non-exportable keys held by the browser. In that case, it becomes significantly harder for the attacker to abuse stolen access tokens. More specifically, with DPoP, the attacker can only abuse stolen application tokens by carrying out an online attack, where the proofs are calculated in the user's browser. This attack is described in detail in section 11.4 of the <xref target="DPoP"/> specification. Additionally, when the attacker obtains a fresh set of tokens, as described in <xref target="payload-new-flow"/>, they can set up DPoP for these tokens using an attacker-controlled key pair. In that case, the attacker is again free to abuse this newly obtained access token without restrictions.</t>
        </section>
        <section anchor="consequence-hijack">
          <name>Client Hijacking</name>
          <t>When stealing tokens is not possible or desirable, the attacker can also choose to hijack the OAuth client application running in the user's browser. This effectively allows the attacker to perform any operations that the legitimate client application can perform. Examples include inspecting data on the page, modifying the page, and sending requests to backend systems.</t>
          <t>Note that client hijacking is less powerful than directly abusing stolen tokens. In a client hijacking scenario, the attacker cannot directly control the tokens and is restricted by the security policies enforced on the client application. For example, a resource server running on <tt>admin.example.org</tt> can be configured with a Cross-Origin Resource Sharing (CORS) policy that rejects requests coming from a client running on <tt>web.example.org</tt>. Even if the access token used by the client would be accepted by the resource server, the CORS configuration does not allow such a request.</t>
        </section>
      </section>
    </section>
    <section anchor="application-architecture-patterns">
      <name>Application Architecture Patterns</name>
      <t>There are three main architectural patterns available when building browser-based JavaScript applications that rely on OAuth 2.0 for accessing protected resources.</t>
      <ul spacing="normal">
        <li>
          <t>A JavaScript application that relies on a backend component for handling OAuth responsibilities and proxies all requests through the backend component (Backend-For-Frontend or BFF)</t>
        </li>
        <li>
          <t>A JavaScript application that relies on a backend component for handling OAuth responsibilities, but calls resource servers directly using the access token (Token-Mediating Backend)</t>
        </li>
        <li>
          <t>A JavaScript application acting as the client, handling all OAuth responsibilities in the browser (Browser-based OAuth 2.0 Client)</t>
        </li>
      </ul>
      <t>Each of these architecture patterns offer a different trade-off between security and simplicity. The patterns in this section are presented in decreasing order of security.</t>
      <section anchor="pattern-bff">
        <name>Backend For Frontend (BFF)</name>
        <t>This section describes the architecture of a JavaScript application that relies on a backend component to handle all OAuth responsibilities and API interactions. The BFF has three core responsibilities:</t>
        <ol spacing="normal" type="1"><li>
            <t>The BFF interacts with the authorization server as a confidential OAuth client</t>
          </li>
          <li>
            <t>The BFF manages OAuth access and refresh tokens, making them inaccessible by the JavaScript application</t>
          </li>
          <li>
            <t>The BFF proxies all requests to a resource server, augmenting them with the correct access token before forwarding them to the resource server</t>
          </li>
        </ol>
        <t>If an attacker is able to execute malicious code within the JavaScript application, the application architecture is able to withstand most of the payload scenarios discussed before. Since tokens are only available to the BFF, there are no tokens available to extract from JavaScript (Payload <xref target="payload-single-theft"/> and <xref target="payload-persistent-theft"/>). The BFF is a confidential client, which prevents the attacker from running a new flow within the browser (Payload <xref target="payload-new-flow"/>). Since the malicious JavaScript code still runs within the application's origin, the attacker is able to send requests to the BFF from within the user's browser (Payload <xref target="payload-proxy"/>).</t>
        <section anchor="application-architecture">
          <name>Application Architecture</name>
          <artwork><![CDATA[
                            +-------------+  +--------------+ +--------------+
                            |             |  |              | |              |
                            |Authorization|  |    Token     | |   Resource   |
                            |  Endpoint   |  |   Endpoint   | |    Server    |
                            |             |  |              | |              |
                            +-------------+  +--------------+ +--------------+

                                ^                        ^              ^
                                |                     (F)|           (K)|
                                |                        v              v

                                |         +-----------------------------------+
                                |         |                                   |
                                |         |    Backend for Frontend  (BFF)    |
                             (D)|         |                                   |
                                |         +-----------------------------------+
                                |
                                |           ^     ^     ^     +       ^  +
                                |      (B,I)|  (C)|  (E)|  (G)|    (J)|  |(L)
                                v           v     v     +     v       +  v

+-----------------+         +-------------------------------------------------+
|                 |  (A,H)  |                                                 |
| Static Web Host | +-----> |                    Browser                      |
|                 |         |                                                 |
+-----------------+         +-------------------------------------------------+
]]></artwork>
          <t>In this architecture, the JavaScript code is first loaded from a static web host into the browser (A), and the application then runs in the browser. The application checks with the BFF if there is an active session (B). If an active session is found, the application resumes its authenticated state and skips forward to step J.</t>
          <t>When no active session is found, the JavaScript application calls out to the BFF (C) to initiate the Authorization Code flow with the PKCE
extension (described in <xref target="pattern-bff-flow"/>), to which the BFF responds by redirecting the browser to the authorization endpoint (D). When the user is redirected back, the browser delivers the authorization code to the BFF (E), where the BFF can then exchange it for tokens at the token endpoint (F) using its client credentials and PKCE code verifier.</t>
          <t>The BFF associates the obtained tokens with the user's session (See <xref target="pattern-bff-sessions"/>) and includes the relevant information in a cookie that is included in the response to the browser (G). This response to the browser will also trigger the reloading of the JavaScript application (H). When this application reloads, it will check with the BFF for an existing session (I), allowing the JavaScript application to resume its authenticated state.</t>
          <t>When the JavaScript application in the browser wants to make a request to the resource server, it sends a request to the corresponding endpoint on the BFF (J). This request will include the cookie set in step G, allowing the BFF to obtain the proper tokens for this user's session. The BFF removes the cookie from the request, attaches the user's access token to the request, and forwards it to the actual resource server (K). The BFF then forwards the response back to the browser-based application (L).</t>
        </section>
        <section anchor="implementation-details">
          <name>Implementation Details</name>
          <section anchor="refresh-tokens">
            <name>Refresh Tokens</name>
            <t>It is recommended to use both access tokens and refresh tokens, as it enables access tokens to be short-lived and minimally scoped (e.g., using <xref target="RFC8707"/>). When using refresh tokens, the BFF obtains the refresh token in step F and associates it with the user's session.</t>
            <t>If the BFF notices that the user's access token has expired and the BFF has a refresh token, it can run a Refresh Token flow to obtain a fresh access token. These steps are not shown in the diagram, but would occur between step J and K. Note that this BFF client is a confidential client, so it will use its client authentication in the Refresh Token request.</t>
            <t>When the refresh token expires, there is no way to recover without running an entirely new Authorization Code flow. Therefore, it is recommended to configure the lifetime of the cookie-based session managed by the BFF to be equal to the maximum lifetime of the refresh token. Additionally, when the BFF learns that a refresh token for an active session is no longer valid, it is recommended to invalidate the session.</t>
          </section>
          <section anchor="pattern-bff-sessions">
            <name>Cookie-based Session Management</name>
            <t>The BFF relies on traditional browser cookies to keep track of the user's session, which is used to access the user's tokens. Cookie-based sessions, both server-side and client-side, have some downsides.</t>
            <t>Server-side sessions only expose a session identifier and keep all data on the server. Doing so ensures a great level of control over active sessions, along with the possibility to revoke any session at will. The downside of this approach is the impact on scalability, requiring solutions such as "sticky sessions", or "session replication". Given these downsides, using server-side sessions with a BFF is only recommended in small-scale scenarios.</t>
            <t>Client-side sessions push all data to the browser in a signed, and optionally encrypted, object. This pattern absolves the server of keeping track of any session data, but severely limits control over active sessions and makes it difficult to handle session revocation. However, when client-side sessions are used in the context of a BFF, these properties change significantly. Since the cookie-based session is only used to obtain a user's tokens, all control and revocation properties follow from the use of access tokens and refresh tokens. It suffices to revoke the user's access token and/or refresh token to prevent ongoing access to protected resources, without the need to explicitly invalidate the cookie-based session.</t>
            <t>Best practices to secure the session cookie are discussed in <xref target="pattern-bff-cookie-security"/>.</t>
          </section>
          <section anchor="pattern-bff-oidc">
            <name>Combining OAuth and OpenID Connect</name>
            <t>The OAuth flow used by this application architecture can be combined with OpenID Connect by including the necessary OpenID Connect scopes in the authorization request (C). In that case, the BFF will receive an ID Token in step F. The BFF can associate the information from the ID Token with the user's session and provide it to the JavaScript application in step B or I.</t>
            <t>When needed, the BFF can use the access token associated with the user's session to make requests to the UserInfo endpoint.</t>
          </section>
          <section anchor="practical-deployment-scenarios">
            <name>Practical Deployment Scenarios</name>
            <t>Serving the static JavaScript code is a separate responsibility from handling OAuth tokens and proxying requests. In the diagram presented above, the BFF and static web host are shown as two separate entities. In real-world deployment scenarios, these components can be deployed as a single service (i.e., the BFF serving the static JS code), as two separate services (i.e., a CDN and a BFF), or as two components in a single service (i.e., static hosting and serverless functions on a cloud platform).</t>
            <t>Note that it is possible to further customize this architecture to tailor to specific scenarios. For example, an application relying on both internal and external resource servers can choose to host the internal resource server alongside the BFF. In that scenario, requests to the internal resource server are handled directly at the BFF, without the need to proxy requests over the network. Authorization from the point of view of the resource server does not change, as the user's session is internally translated to the access token and its claims.</t>
          </section>
        </section>
        <section anchor="security-considerations">
          <name>Security Considerations</name>
          <section anchor="pattern-bff-flow">
            <name>The Authorization Code Flow</name>
            <t>The main benefit of using a BFF is the BFF's ability to act as a confidential client. Therefore, the BFF MUST act as a confidential client. Furthermore, the BFF SHOULD use the OAuth 2.0 Authorization Code grant with PKCE to initiate a request for an access token. Detailed recommendations for confidential clients can be found in <xref target="oauth-security-topics"/> Section 2.1.1.</t>
          </section>
          <section anchor="pattern-bff-cookie-security">
            <name>Cookie Security</name>
            <t>The BFF uses cookies to create a user session, which is directly associated with the user's tokens, either through server-side or client-side session state. Given the sensitive nature of these cookies, they must be properly protected.</t>
            <t>The following cookie security guidelines are relevant for this particular BFF architecture:</t>
            <ul spacing="normal">
              <li>
                <t>The BFF MUST enable the <em>Secure</em> flag for its cookies</t>
              </li>
              <li>
                <t>The BFF MUST enable the <em>HttpOnly</em> flag for its cookies</t>
              </li>
              <li>
                <t>The BFF SHOULD enable the <em>SameSite=Strict</em> flag for its cookies</t>
              </li>
              <li>
                <t>The BFF SHOULD set its cookie path to <em>/</em></t>
              </li>
              <li>
                <t>The BFF SHOULD NOT set the <em>Domain</em> attribute for cookies</t>
              </li>
              <li>
                <t>The BFF SHOULD start the name of its cookies with the <em>__Host-</em> prefix (<xref target="CookiePrefixes"/>)</t>
              </li>
            </ul>
            <t>Additionally, when using client-side sessions that contain access tokens, (as opposed to server-side sessions where the tokens only live on the server), the BFF SHOULD encrypt its cookie contents using an Authenticated Encryption with Authenticated Data (<xref target="RFC5116"/>). This ensures that tokens stored in cookies are never written to the user's hard drive in plaintext format. This security measure helps to ensure protection of the access token against malware that actively scans the user's hard drive to extract sensitive browser artifacts, such as cookies and locally stored data (see <xref target="token-storage"/>).</t>
            <t>For further guidance on cookie security best practices, we refer to the OWASP Cheat Sheet series (<eref target="https://cheatsheetseries.owasp.org">https://cheatsheetseries.owasp.org</eref>).</t>
          </section>
          <section anchor="pattern-bff-csrf">
            <name>Cross-Site Request Forgery Protections</name>
            <t>The interactions between the JavaScript application and the BFF rely on cookies for authentication and authorization. Similar to other cookie-based interactions, the BFF is required to account for Cross-Site Request Forgery (CSRF) attacks.</t>
            <t>The BFF MUST implement a proper CSRF defense. The exact mechanism or combination of mechanisms depends on the exact domain where the BFF is deployed, as discussed below.</t>
            <section anchor="samesite-cookie-attribute">
              <name>SameSite Cookie Attribute</name>
              <t>Configuring the cookies with the <em>SameSite=Strict</em> attribute (See <xref target="pattern-bff-cookie-security"/>) ensures that the BFF's cookies are only included on same-site requests, and not on potentially malicious cross-site requests.</t>
              <t>This defense is adequate if the BFF is never considered to be same-site with any other applications. However, it falls short when the BFF is hosted alongside other applications within the same site, defined as the eTLD+1 (See this definition of <xref target="Site"/> for more details).</t>
              <t>For example, subdomains, such as  <tt>https://a.example.com</tt> and <tt>https://b.example.com</tt>, are considered same-site, since they share the same site <tt>example.com</tt>. They are considered cross-origin, since origins consist of the tuple <em>&lt;scheme, hostname, port&gt;</em>. As a result, a subdomain takeover attack against <tt>b.example.com</tt> can enable CSRF attacks against the BFF of <tt>a.example.com</tt>. Technically, this attack should be identified as a "Same-Site But Cross-Origin Request Forgery" attack.</t>
            </section>
            <section anchor="cors">
              <name>Cross-Origin Resource Sharing (CORS)</name>
              <t>The BFF can rely on CORS as a CSRF defense mechanism. CORS is a security mechanism implemented by browsers that restricts cross-origin JavaScript-based requests, unless the server explicitly approves such a request by setting the proper CORS headers.</t>
              <t>Browsers typically restrict cross-origin HTTP requests initiated from scripts. CORS can remove this restriction if the target server approves the request, which is checked through an initial "preflight" request. Unless the preflight response explicitly approves the request, the browser will refuse to send the full request.</t>
              <t>Because of this property, the BFF can rely on CORS as a CSRF defense. When the attacker tries to launch a cross-origin request to the BFF from the user's browser, the BFF will not approve the request in the preflight response, causing the browser to block the actual request. Note that the attacker can always launch the request from their own machine, but then the request will not carry the user's cookies, so the attack will fail.</t>
              <t>When relying on CORS as a CSRF defense, it is important to realize that certain requests are possible without a preflight. For such requests, named "CORS-safelisted Requests", the browser will simply send the request and prevent access to the response if the server did not send the proper CORS headers. This behavior is enforced for requests that can be triggered via other means than JavaScript, such as a GET request or a form-based POST request.</t>
              <t>The consequence of this behavior is that certain endpoints of the resource server could become vulnerable to CSRF, even with CORS enabled as a defense. For example, if the resource server is an API that exposes an endpoint to a body-less POST request, there will be no preflight request and no CSRF defense.</t>
              <t>To avoid such bypasses against the CORS policy, the BFF SHOULD require that every request includes a custom request header. Cross-origin requests with a custom request header always require a preflight, which makes CORS an effective CSRF defense. Implementing this mechanism is as simple as requiring every request to have a static request header, such as <tt>X-CORS-Security: 1</tt>.</t>
              <t>It is also possible to deploy the JavaScript application on the same origin as the BFF. This ensures that legitimate interactions between the frontend and the BFF do not require any preflights, so there's no additional overhead.</t>
            </section>
            <section anchor="use-anti-forgerydouble-submit-cookies">
              <name>Use anti-forgery/double submit cookies</name>
              <t>Some technology stacks and frameworks have built-in CRSF protection using anti-forgery cookies. This mechanism relies on a session-specific secret that is stored in a cookie, which can only be read by the legitimate frontend running in the domain associated with the cookie. The frontend is expected to read the cookie and insert its value into the request, typically by adding a custom request header. The backend verifies the value in the cookie to the value provided by the frontend to identify legitimate requests. When implemented correctly for all state changing requests, this mechanism effectively mitigates CSRF.</t>
              <t>Note that this mechanism is not necessarily recommended over the CORS approach. However, if a framework offers built-in support for this mechanism, it can serve as a low-effort alternative to protect against CSRF.</t>
            </section>
          </section>
          <section anchor="advanced-security">
            <name>Advanced Security</name>
            <t>In the BFF pattern, all OAuth responsibilities have been moved to the BFF, a server-side component acting as a confidential client. Since server-side applications are more powerful than browser-based applications, it becomes easier to adopt advanced OAuth security practices. Examples include key-based client authentication and sender-constrained tokens.</t>
          </section>
        </section>
        <section anchor="threat-analysis">
          <name>Threat Analysis</name>
          <t>This section revisits the payloads and consequences from <xref target="threats"/>, and discusses potential additional defenses.</t>
          <section anchor="attack-payloads-and-consequences">
            <name>Attack Payloads and Consequences</name>
            <t>If the attacker has the ability to execute malicious JavaScript code in the application's execution context, the following payloads become relevant attack scenarios:</t>
            <ul spacing="normal">
              <li>
                <t>Proxying Requests via the User's Browser (See <xref target="payload-proxy"/>)</t>
              </li>
            </ul>
            <t>Note that this attack scenario results in the following consequences:</t>
            <ul spacing="normal">
              <li>
                <t>Client Hijacking (See <xref target="consequence-hijack"/>)</t>
              </li>
            </ul>
            <t>Unfortunately, client hijacking is an attack scenario that is inherent to the nature of browser-based applications. As a result, nothing will be able to prevent such attacks apart from stopping the execution of malicious JavaScript code in the first place. Techniques that can help to achieve this are following secure coding guidelines, code analysis, and deploying defense-in-depth mechanisms such as Content Security Policy (<xref target="CSP3"/>).</t>
            <t>Finally, the BFF is uniquely placed to observe all traffic between the JavaScript application and the resource servers. If a high-security application would prefer to implement anomaly detection or rate limiting, such a BFF would be the ideal place to do so. Such restrictions can further help to mitigate the consequences of client hijacking.</t>
          </section>
          <section anchor="mitigated-attack-scenarios">
            <name>Mitigated Attack Scenarios</name>
            <t>The other payloads, listed below, are effectively mitigated by the BFF application architecture:</t>
            <ul spacing="normal">
              <li>
                <t>Single-Execution Token Theft (See <xref target="payload-single-theft"/>)</t>
              </li>
              <li>
                <t>Persistent Token Theft (See <xref target="payload-persistent-theft"/>)</t>
              </li>
              <li>
                <t>Acquisition and Extraction of New Tokens (See <xref target="payload-new-flow"/>)</t>
              </li>
            </ul>
            <t>The BFF counters the first two payloads by not exposing any tokens to the browser-based application. Even when the attacker gains full control over the JavaScript application, there are simply no tokens to be stolen.</t>
            <t>The third scenario, where the attacker obtains a fresh set of tokens by running a silent flow, is mitigated by making the BFF a confidential client. Even when the attacker manages to obtain an authorization code, they are prevented from exchanging this code due to the lack of client credentials. Additionally, the use of PKCE prevents other attacks against the authorization code.</t>
            <t>Because of the nature of the BFF, the following two consequences of potential attacks become irrelevant:</t>
            <ul spacing="normal">
              <li>
                <t>Exploiting Stolen Refresh Tokens (See <xref target="consequence-rt"/>)</t>
              </li>
              <li>
                <t>Exploiting Stolen Access Tokens (See <xref target="consequence-at"/>)</t>
              </li>
            </ul>
          </section>
          <section anchor="summary">
            <name>Summary</name>
            <t>To summarize, the architecture of a BFF is significantly more complicated than a browser-only application. It requires deploying and operating a server-side BFF component. Additionally, this pattern requires all interactions between the JavaScript application and the resource servers to be proxied by the BFF. Depending on the deployment pattern, this proxy behavior can add a significant burden on the server-side components. See <xref target="practical-deployment-scenarios"/> for additional notes if the BFF is acting as the resource server.</t>
            <t>However, because of the nature of the BFF architecture pattern, it offers strong security guarantees. Using a BFF also ensures that the application's attack surface does not increase by using OAuth. The only viable attack pattern is hijacking the client application in the user's browser, a problem inherent to web applications.</t>
            <t>This architecture is strongly recommended for business applications, sensitive applications, and applications that handle personal data.</t>
          </section>
        </section>
      </section>
      <section anchor="pattern-tmb">
        <name>Token-Mediating Backend</name>
        <t>This section describes the architecture of a JavaScript application that relies on a backend component to handle OAuth responsibilities for obtaining tokens, after which the JavaScript application receives the access token to directly interact with resource servers.</t>
        <t>The token-mediating backend pattern is more lightweight than the BFF pattern (See <xref target="pattern-bff"/>), since it does not require the proxying of all requests to a resource server, which improves latency and significantly simplifies deployment. From a security perspective, the token-mediating backend is less secure than a BFF, but still offers significant advantages over an OAuth client application running directly in the browser.</t>
        <t>If an attacker is able to execute malicious code within the JavaScript application, the application architecture is able to prevent the attacker from abusing refresh tokens or obtaining a fresh set of tokens. However, since the access token is directly exposed to the JavaScript application, token theft scenarios fall within the capabilities of the attacker.</t>
        <section anchor="application-architecture-1">
          <name>Application Architecture</name>
          <artwork><![CDATA[
                            +-------------+  +--------------+ +--------------+
                            |             |  |              | |              |
                            |Authorization|  |    Token     | |   Resource   |
                            |  Endpoint   |  |   Endpoint   | |    Server    |
                            |             |  |              | |              |
                            +-------------+  +--------------+ +--------------+

                                ^                   ^                 ^
                                |                (F)|                 |
                                |                   v                 |
                                                                      |
                                |   +-----------------------+         |
                                |   |                       |         |
                                |   |Token-Mediating Backend|         | (J)
                             (D)|   |                       |         |
                                |   +-----------------------+         |
                                |                                     |
                                |       ^     ^     ^     +           |
                                |  (B,I)|  (C)|  (E)|  (G)|           |
                                v       v     v     +     v           v

+-----------------+         +-------------------------------------------------+
|                 |  (A,H)  |                                                 |
| Static Web Host | +-----> |                    Browser                      |
|                 |         |                                                 |
+-----------------+         +-------------------------------------------------+
]]></artwork>
          <t>In this architecture, the JavaScript code is first loaded from a static web host into the browser (A), and the application then runs in the browser. The application checks with the token-mediating backend if there is an active session (B). If an active session is found, the application receives the corresponding access token, resumes its authenticated state, and skips forward to step J.</t>
          <t>When no active session is found, the JavaScript application calls out to the token-mediating backend (C) to initiate the Authorization Code flow with the PKCE extension (described in <xref target="pattern-tmb-flow"/>), to which the token-mediating backend responds by redirecting the browser to the authorization endpoint (D). When the user is redirected back, the browser delivers the authorization code to the token-mediating backend (E), where the token-mediating backend can then exchange it for tokens at the token endpoint (F) using its client credentials and PKCE code verifier.</t>
          <t>The token-mediating backend associates the obtained tokens with the user's session (See <xref target="pattern-tmb-sessions"/>) and includes the relevant information in a cookie that is included in the response to the browser (G). This response to the browser will also trigger the reloading of the JavaScript application (H). When this application reloads, it will check with the token-mediating backend for an existing session (I), allowing the JavaScript application to resume its authenticated state and obtain the access token from the token-mediating backend.</t>
          <t>The JavaScript application in the browser can use the access token obtained in step I to directly make requests to the resource server (J).</t>
          <t>Editor's Note: A method of implementing this architecture is described by the <xref target="tmi-bff"/> draft, although it is currently an expired individual draft and has not been proposed for adoption to the OAuth Working Group.</t>
        </section>
        <section anchor="implementation-details-1">
          <name>Implementation Details</name>
          <section anchor="refresh-tokens-1">
            <name>Refresh Tokens</name>
            <t>It is recommended to use both access tokens and refresh tokens, as it enables access tokens to be short-lived and minimally scoped (e.g., using <xref target="RFC8707"/>). When using refresh tokens, the token-mediating backend obtains the refresh token in step F and associates it with the user's session.</t>
            <t>If the resource server rejects the access token, the JavaScript application can contact the token-mediating backend to request a fresh access token. The token-mediating backend relies on the cookies associated with this request to use the user's refresh token to run a Refresh Token flow. These steps are not shown in the diagram. Note that this Refresh Token flow involves a confidential client, thus requires client authentication.</t>
            <t>When the refresh token expires, there is no way to recover without running an entirely new Authorization Code flow. Therefore, it is recommended to configure the lifetime of the cookie-based session to be equal to the maximum lifetime of the refresh token if such information is known upfront. Additionally, when the token-mediating backend learns that a refresh token for an active session is no longer valid, it is recommended to invalidate the session.</t>
          </section>
          <section anchor="access-token-scopes">
            <name>Access Token Scopes</name>
            <t>Depending on the resource servers being accessed and the configuration of scopes at the authorization server, the JavaScript application may wish to request access tokens with different scope configurations. This behavior would allow the JavaScript application to follow the best practice of using minimally-scoped access tokens.</t>
            <t>The JavaScript application can inform the token-mediating backend of the desired scopes when it checks for the active session (Step A/I). It is up to the token-mediating backend to decide if previously obtained access tokens fall within the desired scope criteria.</t>
            <t>It should be noted that this access token caching mechanism at the token-mediating backend can cause scope elevation risks when applied indiscriminately. If the cached access token features a superset of the scopes requested by the frontend, the token-mediating backend SHOULD NOT return it to the frontend; instead it SHOULD use the refresh token to request an access token with the smaller set of scopes from the authorization server. Note that support of such an access token downscoping mechanism is at the discretion of the authorization server.</t>
            <t>The token-mediating backend can use a similar mechanism to downscoping when relying on <xref target="RFC8707"/> to obtain access token for a specific resource server.</t>
          </section>
          <section anchor="pattern-tmb-sessions">
            <name>Cookie-based Session Management</name>
            <t>Similar to the BFF, the token-mediating backend relies on traditional browser cookies to keep track of the user's session. The same implementation guidelines and security considerations as for a BFF apply, as discussed in <xref target="pattern-bff-sessions"/>.</t>
          </section>
          <section anchor="combining-oauth-and-openid-connect">
            <name>Combining OAuth and OpenID Connect</name>
            <t>Similar to a BFF, the token-mediating backend can choose to combine OAuth and OpenID Connect in a single flow. See <xref target="pattern-bff-oidc"/> for more details.</t>
          </section>
          <section anchor="practical-deployment-scenarios-1">
            <name>Practical Deployment Scenarios</name>
            <t>Serving the static JavaScript code is a separate responsibility from handling interactions with the authorization server. In the diagram presented above, the token-mediating backend and static web host are shown as two separate entities. In real-world deployment scenarios, these components can be deployed as a single service (i.e., the token-mediating backend serving the static JS code), as two separate services (i.e., a CDN and a token-mediating backend), or as two components in a single service (i.e., static hosting and serverless functions on a cloud platform). These deployment differences do not affect the relationships described in this pattern.</t>
          </section>
        </section>
        <section anchor="security-considerations-1">
          <name>Security Considerations</name>
          <section anchor="pattern-tmb-flow">
            <name>The Authorization Code Grant</name>
            <t>The main benefit of using a token-mediating backend is the backend's ability to act as a confidential client. Therefore, the token-mediating backend MUST act as a confidential client. Furthermore, the token-mediating backend SHOULD use the OAuth 2.0 Authorization Code grant with PKCE to initiate a request for an access token. Detailed recommendations for confidential clients can be found in <xref target="oauth-security-topics"/> Section 2.1.1.</t>
          </section>
          <section anchor="pattern-bmf-cookie-security">
            <name>Cookie Security</name>
            <t>The token-mediating backend uses cookies to create a user session, which is directly associated with the user's tokens, either through server-side or client-side session state. The same cookie security guidelines as for a BFF apply, as discussed in <xref target="pattern-bff-cookie-security"/>.</t>
          </section>
          <section anchor="pattern-bmf-csrf">
            <name>Cross-Site Request Forgery Protections</name>
            <t>The interactions between the JavaScript application and the token-mediating backend rely on cookies for authentication and authorization. Just like a BFF, the token-mediating backend is required to account for Cross-Site Request Forgery (CSRF) attacks.</t>
            <t><xref target="pattern-bff-csrf"/> outlines the nuances of various mitigation strategies against CSRF attacks. Specifically for a token-mediating backend, these CSRF defenses only apply to the endpoint or endpoints where the JavaScript application can obtain its access tokens.</t>
          </section>
          <section anchor="advanced-oauth-security">
            <name>Advanced OAuth Security</name>
            <t>The token-mediating backend is a confidential client running as a server-side component. The token-mediating backend can adopt security best practices for confidential clients, such as key-based client authentication.</t>
          </section>
        </section>
        <section anchor="threat-analysis-1">
          <name>Threat Analysis</name>
          <t>This section revisits the payloads and consequences from <xref target="threats"/>, and discusses potential additional defenses.</t>
          <section anchor="attack-payloads-and-consequences-1">
            <name>Attack Payloads and Consequences</name>
            <t>If the attacker has the ability to execute malicious JavaScript code in the application's execution context, the following payloads become relevant attack scenarios:</t>
            <ul spacing="normal">
              <li>
                <t>Single-Execution Token Theft (See <xref target="payload-single-theft"/>) for access tokens</t>
              </li>
              <li>
                <t>Persistent Token Theft (See <xref target="payload-persistent-theft"/>) for access tokens</t>
              </li>
              <li>
                <t>Proxying Requests via the User's Browser (See <xref target="payload-proxy"/>)</t>
              </li>
            </ul>
            <t>Note that this attack scenario results in the following consequences:</t>
            <ul spacing="normal">
              <li>
                <t>Exploiting Stolen Access Tokens (See <xref target="consequence-at"/>)</t>
              </li>
              <li>
                <t>Client Hijacking (See <xref target="consequence-hijack"/>)</t>
              </li>
            </ul>
            <t>Exposing the access token to the JavaScript application is the core idea behind the architecture pattern of the token-mediating backend. As a result, the access token becomes vulnerable to token theft by malicious JavaScript.</t>
          </section>
          <section anchor="mitigated-attack-scenarios-1">
            <name>Mitigated Attack Scenarios</name>
            <t>The other payloads, listed below, are effectively mitigated by the token-mediating backend:</t>
            <ul spacing="normal">
              <li>
                <t>Single-Execution Token Theft (See <xref target="payload-single-theft"/>) for refresh tokens</t>
              </li>
              <li>
                <t>Persistent Token Theft (See <xref target="payload-persistent-theft"/>) for refresh tokens</t>
              </li>
              <li>
                <t>Acquisition and Extraction of New Tokens (See <xref target="payload-new-flow"/>)</t>
              </li>
            </ul>
            <t>The token-mediating backend counters the first two payloads by not exposing the refresh token to the browser-based application. Even when the attacker gains full control over the JavaScript application, there are simply no refresh tokens to be stolen.</t>
            <t>The third scenario, where the attacker obtains a fresh set of tokens by running a silent flow, is mitigated by making the token-mediating backend a confidential client. Even when the attacker manages to obtain an authorization code, they are prevented from exchanging this code due to the lack of client credentials.  Additionally, the use of PKCE prevents other attacks against the authorization code.</t>
            <t>Because of the nature of the token-mediating backend, the following consequences of potential attacks become irrelevant:</t>
            <ul spacing="normal">
              <li>
                <t>Exploiting Stolen Refresh Tokens (See <xref target="consequence-rt"/>)</t>
              </li>
            </ul>
          </section>
          <section anchor="additional-defenses">
            <name>Additional Defenses</name>
            <t>While this architecture inherently exposes access tokens, there are some additional defenses that can help to increase the security posture of the application.</t>
            <section anchor="secure-token-storage">
              <name>Secure Token Storage</name>
              <t>Given the nature of the token-mediating backend pattern, there is no need for persistent token storage in the browser. When needed, the application can always use its cookie-based session to obtain an access token from the token-mediating backend. <xref target="token-storage"/> provides more details on the security properties of various storage mechanisms in the browser.</t>
              <t>Note that even when the access token is stored out of reach of malicious JavaScript code, the attacker still has the ability to request the access token from the token-mediating backend.</t>
            </section>
            <section anchor="using-sender-constrained-tokens">
              <name>Using Sender-Constrained Tokens</name>
              <t>Using sender-constrained access tokens is not trivial in this architecture. The token-mediating backend is responsible for exchanging an authorization code or refresh token for an access token, but the JavaScript application will use the access token. Using a mechanism such as <xref target="DPoP"/> would require proof generation for a request to the authorization server in the JavaScript application, but use of that proof by the token-mediating backend.</t>
            </section>
          </section>
          <section anchor="summary-1">
            <name>Summary</name>
            <t>To summarize, the architecture of a token-mediating backend is more complicated than a browser-only application, but less complicated than running a proxying BFF. Similar to complexity, the security properties offered by the token-mediating backend lie somewhere between using a BFF and running a browser-only application.</t>
            <t>A token-mediating backend addresses typical scenarios that grant the attacker long-term access on behalf of the user. However, due to the consequence of access token theft, the attacker still has the ability to gain direct access to resource servers.</t>
            <t>When considering a token-mediating backend architecture, it is strongly recommended to go the extra mile and adopt a full BFF as discussed in <xref target="pattern-bff"/>. Only when the use cases or system requirements would prevent the use of a proxying BFF should the token-mediating backend be considered as viable alternative.</t>
          </section>
        </section>
      </section>
      <section anchor="pattern-oauth-browser">
        <name>Browser-based OAuth 2.0 client</name>
        <t>This section describes the architecture of a JavaScript application that acts as the OAuth 2.0 client, handling all OAuth responsibilities in the browser. As a result, the browser-based application obtains tokens from the authorization server, without the involvement of a backend component.</t>
        <t>If an attacker is able to execute malicious JavaScript code, this application architecture is vulnerable to all payload scenarios discussed earlier (<xref target="payloads"/>). In essence, the attacker will be able to obtain access tokens and refresh tokens from the authorization server, potentially giving them long-term access to protected resources on behalf of the user.</t>
        <section anchor="application-architecture-2">
          <name>Application Architecture</name>
          <artwork><![CDATA[
                      +---------------+           +--------------+
                      |               |           |              |
                      | Authorization |           |   Resource   |
                      |    Server     |           |    Server    |
                      |               |           |              |
                      +---------------+           +--------------+

                             ^     ^                 ^     +
                             |     |                 |     |
                             |(B)  |(C)              |(D)  |(E)
                             |     |                 |     |
                             |     |                 |     |
                             +     v                 +     v

+-----------------+         +-------------------------------+
|                 |   (A)   |                               |
| Static Web Host | +-----> |           Browser             |
|                 |         |                               |
+-----------------+         +-------------------------------+
]]></artwork>
          <t>In this architecture, the JavaScript code is first loaded from a static web host into
the browser (A), and the application then runs in the browser. This application is considered a public
client, since there is no way to provision it with client credentials in this model.</t>
          <t>The application obtains an authorization code (B) by initiating the Authorization Code flow with the PKCE
extension (described in <xref target="pattern-oauth-browser-flow"/>). The application exchanges the authorization code for tokens via a JavaScript-based POST request to the token endpoint (C).</t>
          <t>The application is then responsible for storing
the access token and optional refresh token as securely as possible using appropriate browser APIs, described in <xref target="token-storage"/>.</t>
          <t>When the JavaScript application in the browser wants to make a request to the resource server,
it can interact with the resource server directly. The application includes the access token in the request (D)
and receives the resource server's response (E).</t>
        </section>
        <section anchor="security-considerations-2">
          <name>Security Considerations</name>
          <section anchor="pattern-oauth-browser-flow">
            <name>The Authorization Code Grant</name>
            <t>Browser-based applications that are public clients and use the Authorization Code grant type described in
Section 4.1 of OAuth 2.0 <xref target="RFC6749"/> MUST also follow these additional requirements
described in this section.</t>
            <t>In summary, browser-based applications using the Authorization Code flow:</t>
            <ul spacing="normal">
              <li>
                <t>MUST use PKCE (<xref target="RFC7636"/>) when obtaining an access token (<xref target="auth_code_request"/>)</t>
              </li>
              <li>
                <t>MUST Protect themselves against CSRF attacks (<xref target="pattern-oauth-browser-csrf"/>) by either:
                </t>
                <ul spacing="normal">
                  <li>
                    <t>ensuring the authorization server supports PKCE, or</t>
                  </li>
                  <li>
                    <t>by using the OAuth 2.0 <tt>state</tt> parameter or the OpenID Connect <tt>nonce</tt> parameter to carry one-time use CSRF tokens</t>
                  </li>
                </ul>
              </li>
              <li>
                <t>MUST Register one or more redirect URIs, and use only exact registered redirect URIs in authorization requests (<xref target="auth_code_redirect"/>)</t>
              </li>
            </ul>
            <t>In summary, OAuth 2.0 authorization servers supporting browser-based applications using the Authorization Code flow:</t>
            <ul spacing="normal">
              <li>
                <t>MUST require exact matching of registered redirect URIs (<xref target="auth_code_redirect"/>)</t>
              </li>
              <li>
                <t>MUST support the PKCE extension (<xref target="auth_code_request"/>)</t>
              </li>
              <li>
                <t>MUST NOT issue access tokens in the authorization response (<xref target="implicit_flow"/>)</t>
              </li>
              <li>
                <t>If issuing refresh tokens to browser-based applications (<xref target="pattern-oauth-browser-rt"/>), then:
                </t>
                <ul spacing="normal">
                  <li>
                    <t>MUST rotate refresh tokens on each use or use sender-constrained refresh tokens, and</t>
                  </li>
                  <li>
                    <t>MUST set a maximum lifetime on refresh tokens or expire if they are not used in some amount of time</t>
                  </li>
                  <li>
                    <t>when issuing a rotated refresh token, MUST NOT extend the lifetime of the new refresh token beyond the lifetime of the original refresh token if the refresh token has a preestablished expiration time</t>
                  </li>
                </ul>
              </li>
            </ul>
            <section anchor="auth_code_request">
              <name>Initiating the Authorization Request from a Browser-Based Application</name>
              <t>Browser-based applications that are public clients MUST implement the Proof Key for Code Exchange
(PKCE <xref target="RFC7636"/>) extension when obtaining an access token, and authorization servers MUST support and enforce
PKCE for such clients.</t>
              <t>The PKCE extension prevents an attack where the authorization code is intercepted
and exchanged for an access token by a malicious client, by providing the
authorization server with a way to verify the client instance that exchanges
the authorization code is the same one that initiated the flow.</t>
            </section>
          </section>
          <section anchor="client_registration">
            <name>Registration of Browser-Based Apps</name>
            <t>Browser-only OAuth clients are considered public clients as defined by Section 2.1
of OAuth 2.0 <xref target="RFC6749"/>, and MUST be registered with the authorization server as
such. Authorization servers MUST record the client type in the client registration
details in order to identify and process requests accordingly.</t>
            <t>Authorization servers MUST require that browser-based applications register
one or more redirect URIs (See <xref target="auth_code_redirect"/>).</t>
            <t>Note that both the BFF and token-mediating backend are confidential clients.</t>
          </section>
          <section anchor="client_authentication">
            <name>Client Authentication</name>
            <t>Since a browser-based application's source code is delivered to the end-user's
browser, it cannot contain provisioned secrets. As such, a browser-based app
with native OAuth support is considered a public client as defined by Section 2.1
of OAuth 2.0 <xref target="RFC6749"/>.</t>
            <t>Secrets that are statically included as part of an app distributed to
multiple users should not be treated as confidential secrets, as one
user may inspect their copy and learn the shared secret.  For this
reason, and those stated in Section 5.3.1 of <xref target="RFC6819"/>, it is NOT RECOMMENDED
for authorization servers to require client authentication of browser-based
applications using a shared secret, as this serves no value beyond
client identification which is already provided by the <tt>client_id</tt> parameter.</t>
            <t>Authorization servers that still require a statically included shared
secret for SPA clients MUST treat the client as a public
client, and not accept the secret as proof of the client's identity. Without
additional measures, such clients are subject to client impersonation
(see <xref target="client_impersonation"/> below).</t>
          </section>
          <section anchor="client_impersonation">
            <name>Client Impersonation</name>
            <t>As stated in Section 10.2 of OAuth 2.0 <xref target="RFC6749"/>, the authorization
server SHOULD NOT process authorization requests automatically
without user consent or interaction, except when the identity of the
client can be assured.</t>
            <t>If authorization servers restrict redirect URIs to a fixed set of absolute
HTTPS URIs, preventing the use of wildcard domains, wildcard paths, or wildcard query string components,
this exact match of registered absolute HTTPS URIs MAY be accepted by authorization servers as
proof of identity of the client for the purpose of deciding whether to automatically
process an authorization request when a previous request for the client_id
has already been approved.</t>
            <section anchor="auth_code_redirect">
              <name>Authorization Code Redirect</name>
              <t>Clients MUST register one or more redirect URIs with the authorization server, and use only exact registered redirect URIs in the authorization request.</t>
              <t>Authorization servers MUST require an exact match of a registered redirect URI
as described in <xref target="oauth-security-topics"/> Section 4.1.1. This helps to prevent attacks targeting the authorization code.</t>
            </section>
          </section>
          <section anchor="in_browser_communication_security">
            <name>Security of In-Browser Communication Flows</name>
            <t>In browser-based apps, it is common to execute the OAuth flow in a secondary window, such as a popup or iframe, instead of redirecting the primary window.
In these flows, the browser-based app holds control of the primary window, for instance, to avoid page refreshes or run silent frame-based flows.</t>
            <t>If the browser-based app and the authorization server are invoked in different frames, they have to use in-browser communication techniques like the postMessage API (a.k.a. <xref target="WebMessaging"/>) instead of top-level redirections.
To guarantee confidentiality and authenticity of messages, both the initiator origin and receiver origin of a postMessage MUST be verified using the mechanisms inherently provided by the postMessage API (Section 9.3.2 in <xref target="WebMessaging"/>).</t>
            <t>Section 4.18. of <xref target="oauth-security-topics"/> provides additional details about the security of in-browser communication flows and the countermeasures that browser-based apps and authorization servers MUST apply to defend against these attacks.</t>
          </section>
          <section anchor="pattern-oauth-browser-csrf">
            <name>Cross-Site Request Forgery Protections</name>
            <t>Browser-based applications MUST prevent CSRF attacks against their redirect URI. This can be
accomplished by any of the below:</t>
            <ul spacing="normal">
              <li>
                <t>using PKCE, and confirming that the authorization server supports PKCE</t>
              </li>
              <li>
                <t>using and verifying unique value for the OAuth 2.0 <tt>state</tt> parameter to carry a CSRF token</t>
              </li>
              <li>
                <t>if the application is using OpenID Connect, by using and verifying the OpenID Connect <tt>nonce</tt> parameter as described in <xref target="OpenID"/></t>
              </li>
            </ul>
            <t>See Section 2.1 of <xref target="oauth-security-topics"/> for additional details.</t>
          </section>
          <section anchor="pattern-oauth-browser-rt">
            <name>Refresh Tokens</name>
            <t>Refresh tokens provide a way for applications to obtain a new access token when the
initial access token expires. For browser-based clients, the refresh token is typically a bearer token, unless the application explicitly uses <xref target="DPoP"/>. As a result, the risk of a leaked refresh token
is greater than leaked access tokens, since an attacker may be able to
continue using the stolen refresh token to obtain new access tokens potentially without being
detectable by the authorization server.</t>
            <t>Authorization servers may choose whether or not to issue refresh tokens to browser-based
applications. However, in light of the impact of third-party cookie blocking mechanisms, the use of refresh tokens has become significantly more attractive. The <xref target="oauth-security-topics"/> describes some additional requirements around refresh tokens
on top of the recommendations of <xref target="RFC6749"/>. Applications and authorization servers
conforming to this BCP MUST also follow the recommendations in <xref target="oauth-security-topics"/>
around refresh tokens if refresh tokens are issued to browser-based applications.</t>
            <t>In particular, authorization servers:</t>
            <ul spacing="normal">
              <li>
                <t>MUST either rotate refresh tokens on each use OR use sender-constrained refresh tokens as described in <xref target="oauth-security-topics"/> Section 4.14.2</t>
              </li>
              <li>
                <t>MUST either set a maximum lifetime on refresh tokens OR expire if the refresh token has not been used within some amount of time</t>
              </li>
              <li>
                <t>upon issuing a rotated refresh token, MUST NOT extend the lifetime of the new refresh token beyond the lifetime of the initial refresh token if the refresh token has a preestablished expiration time</t>
              </li>
            </ul>
            <t>For example:</t>
            <ul spacing="normal">
              <li>
                <t>A user authorizes an application, issuing an access token that lasts 10 minutes, and a refresh token that lasts 8 hours</t>
              </li>
              <li>
                <t>After 10 minutes, the initial access token expires, so the application uses the refresh token to get a new access token</t>
              </li>
              <li>
                <t>The authorization server returns a new access token that lasts 10 minutes, and a new refresh token that lasts 7 hours and 50 minutes</t>
              </li>
              <li>
                <t>This continues until 8 hours pass from the initial authorization</t>
              </li>
              <li>
                <t>At this point, when the application attempts to use the refresh token after 8 hours, the request will fail and the application will have to re-initialize an Authorization Code flow that relies on the user's authentication or previously established session</t>
              </li>
            </ul>
            <t>Limiting the overall refresh token lifetime to the lifetime of the initial refresh token ensures a stolen refresh token cannot be used indefinitely.</t>
            <t>Authorization servers SHOULD link the lifetime of the refresh token to the user's authenticated session with the authorization server. Doing so ensures that when a user logs out, previously issued refresh tokens to browser-based applications become invalid, mimicking a single-logout scenario. Authorization servers MAY set different policies around refresh token issuance, lifetime and expiration for browser-based applications compared to other public clients.</t>
          </section>
          <section anchor="pattern-oauth-browser-cors">
            <name>Cross-Origin Requests</name>
            <t>In this scenario, the application sends JavaScript-based requests to the authorization server and the resource server. Given the nature of OAuth 2.0, these requests are typically cross-origin, subjecting them to browser-enforced restrictions on cross-origin communication. The authorization server and the resource server MUST send proper CORS headers (defined in <xref target="Fetch"/>) to ensure that the browser allows the JavaScript application to make the necessary cross-origin requests. Note that in the extraordinary scenario where the browser-based OAuth client runs in the same origin as the authorization server or resource server, a CORS policy is not needed to enable the necessary interaction.</t>
            <t>For the authorization server, a proper CORS configuration is relevant for the token endpoint, where the browser-based application exchanges the authorization code for tokens. Additionally, if the authorization server provides additional endpoints to the application, such as discovery metadata URLs, JSON Web Key Sets, dynamic client registration, revocation, introspection or user info endpoints, these endpoints may also be accessed by the browser-based application. Consequentially, the authorization server is responsible for enforcing a proper CORS configuration on these endpoints.</t>
            <t>This specification does not include guidelines for deciding the concrete CORS policy implementation, which can consist of a wildcard origin or a more restrictive configuration. Note that CORS has two modes of operation with different security properties. The first mode applies to CORS-safelisted requests, formerly known as simple requests, where the browser sends the request and uses the CORS response headers to decide if the response can be exposed to the client-side execution context. For non-CORS-safelisted requests, such as a request with a custom request header, the browser will first check the CORS policy using a preflight. The browser will only send the actual request when the server sends their approval in the preflight response.</t>
            <t>Note that due to the authorization server's specific configuration, it is possible that the CORS response to a preflight is different than the CORS response to the actual request. During the preflight, the authorization server can only verify the provided origin, but during an actual request, the authorization server has the full request data, such as the client ID. Consequentially, the authorization server can approve a known origin during the preflight, but reject the actual request after comparing the origin to this specific client's list of pre-registered origins.</t>
          </section>
        </section>
        <section anchor="threat-analysis-2">
          <name>Threat Analysis</name>
          <t>This section revisits the payloads and consequences from <xref target="threats"/>, and discusses potential additional defenses.</t>
          <section anchor="attack-payloads-and-consequences-2">
            <name>Attack Payloads and Consequences</name>
            <t>If the attacker has the ability to execute malicious JavaScript code in the application's execution context, the following payloads become relevant attack scenarios:</t>
            <ul spacing="normal">
              <li>
                <t>Single-Execution Token Theft (See <xref target="payload-single-theft"/>)</t>
              </li>
              <li>
                <t>Persistent Token Theft (See <xref target="payload-persistent-theft"/>)</t>
              </li>
              <li>
                <t>Acquisition and Extraction of New Tokens (See <xref target="payload-new-flow"/>)</t>
              </li>
              <li>
                <t>Proxying Requests via the User's Browser (See <xref target="payload-proxy"/>)</t>
              </li>
            </ul>
            <t>The most dangerous payload is the acquisition and extraction of new tokens. In this attack scenario, the attacker only interacts with the authorization server, which makes the actual implementation details of the OAuth functionality in the JavaScript client irrelevant. Even if the legitimate client application finds a perfectly secure token storage mechanism, the attacker will still be able to obtain tokens from the authorization server.</t>
            <t>Note that these attack scenarios result in the following consequences:</t>
            <ul spacing="normal">
              <li>
                <t>Exploiting Stolen Refresh Tokens (See <xref target="consequence-rt"/>)</t>
              </li>
              <li>
                <t>Exploiting Stolen Access Tokens (See <xref target="consequence-at"/>)</t>
              </li>
              <li>
                <t>Client Hijacking (See <xref target="consequence-hijack"/>)</t>
              </li>
            </ul>
          </section>
          <section anchor="additional-defenses-1">
            <name>Additional Defenses</name>
            <t>While this architecture is inherently vulnerable to malicious JavaScript code, there are some additional defenses that can help to increase the security posture of the application. Note that none of these defenses address or fix the underlying problem that allows the attacker to run a new flow to obtain tokens.</t>
            <section anchor="secure-token-storage-1">
              <name>Secure Token Storage</name>
              <t>When handling tokens directly, the application can choose different storage mechanisms to handle access tokens and refresh tokens. Universally accessible storage areas, such as <em>Local Storage</em>, are easier to access from malicious JavaScript than highly isolated storage areas, such as a <em>Web Worker</em>. <xref target="token-storage"/> discusses different storage mechanisms with their trade-off in more detail.</t>
              <t>A practical implementation pattern can use a Web Worker to isolate the refresh token, and provide the application with the access token making requests to resource servers.</t>
              <t>Note that even a perfect token storage mechanism does not prevent the attacker from running a new flow to obtain a fresh set of tokens (See <xref target="payload-new-flow"/>).</t>
            </section>
            <section anchor="using-sender-constrained-tokens-1">
              <name>Using Sender-Constrained Tokens</name>
              <t>Browser-based OAuth 2.0 clients can implement <xref target="DPoP"/> to transition from bearer access tokens and bearer refresh tokens to sender-constrained tokens. In such an implementation, the private key used to sign DPoP proofs is handled by the browser (a non-extractable <eref target="https://developer.mozilla.org/en-US/docs/Web/API/CryptoKeyPair">CryptoKeyPair</eref> is stored using IndexedDB). As a result, the use of DPoP effectively prevents scenarios where the attacker exfiltrates the application's tokens (See <xref target="payload-single-theft"/> and <xref target="payload-persistent-theft"/>).</t>
              <t>Note that the use of DPoP does not prevent the attacker from running a new flow to obtain a fresh set of tokens (See <xref target="payload-new-flow"/>). Even when DPoP is mandatory, the attacker can bind the fresh set of tokens to a key pair under their control, allowing them to calculate the necessary DPoP proofs to use the tokens.</t>
            </section>
            <section anchor="restricting-access-to-the-authorization-server">
              <name>Restricting Access to the Authorization Server</name>
              <t>The scenario where the attacker obtains a fresh set of tokens (See <xref target="payload-new-flow"/>) relies on the ability to directly interact with the authorization server from within the browser. In theory, a defense that prevents the attacker from silently interacting with the authorization server could solve the most dangerous payload. However, in practice, such defenses are ineffective or impractical.</t>
              <t>For completeness, this BCP lists a few options below. Note that none of these defenses are recommended, as they do not offer practically usable security benefits.</t>
              <t>The authorization server could block authorization requests that originate from within an iframe. While this would prevent the exact scenario from <xref target="payload-new-flow"/>, it would not work for slight variations of the attack scenario. For example, the attacker can launch the silent flow in a popup window, or a pop-under window. Additionally, browser-only OAuth 2.0 clients typically rely on a hidden iframe-based flow to bootstrap the user's authentication state, so this approach would significantly impact the user experience.</t>
              <t>The authorization server could opt to make user consent mandatory in every Authorization Code flow (as described in Section 10.2 OAuth 2.0 <xref target="RFC6749"/>), thus requiring user interaction before issuing an authorization code. This approach would make it harder for an attacker to run a silent flow to obtain a fresh set of tokens. However, it also significantly impacts the user experience by continuously requiring consent. As a result, this approach would result in "consent fatigue", which makes it likely that the user will blindly approve the consent, even when it is associated with a flow that was initialized by the attacker.</t>
            </section>
          </section>
          <section anchor="summary-2">
            <name>Summary</name>
            <t>To summarize, the architecture of a browser-based OAuth 2.0 client application is straightforward, but results in a significant increase in the attack surface of the application. The attacker is not only able to hijack the client, but also to extract a full-featured set of tokens from the browser-based application.</t>
            <t>This architecture is not recommended for business applications, sensitive applications, and applications that handle personal data.</t>
          </section>
        </section>
      </section>
    </section>
    <section anchor="discouraged-and-deprecated-architecture-patterns">
      <name>Discouraged and Deprecated Architecture Patterns</name>
      <t>Client applications and backend applications have evolved significantly over the last two decades, along with threats, attacker models, and our understanding of modern application security. As a result, previous recommendations are often no longer recommended and proposed solutions often fall short of meeting the expected security requirements.</t>
      <t>This section discusses a few alternative architecture patterns, which are not recommended for use in modern browser-based OAuth applications. This section discusses each of the patterns, along with a threat analysis that investigates the attack payloads and consequences when relevant.</t>
      <section anchor="single-domain-browser-based-apps-not-using-oauth">
        <name>Single-Domain Browser-Based Apps (not using OAuth)</name>
        <t>Too often, simple applications are made needlessly complex by using OAuth to replace the concept of session management. A typical example is the modern incarnation of a server-side MVC application, which now consists of a browser-based frontend backed by a server-side API.</t>
        <t>In such an application, the use of OpenID connect to offload user authentication to a dedicated provider can significantly simplify the application's architecture and development. However, the use of OAuth for governing access between the frontend and the backend is often not needed. Instead of using access tokens, the application can rely on traditional cookie-based session management to keep track of the user's authentication status. The security guidelines to protect the session cookie are discussed in <xref target="pattern-bff-cookie-security"/>.</t>
        <t>While the advice to not use OAuth seems out-of-place in this document, it is important to note that OAuth was originally created for third-party or federated access to APIs, so it may not be the best solution in a single common-domain deployment. That said, there are still some advantages in using OAuth even in a common-domain architecture:</t>
        <ul spacing="normal">
          <li>
            <t>Allows more flexibility in the future, such as if you were to later add a new domain to the system. With OAuth already in place, adding a new domain wouldn't require any additional rearchitecting.</t>
          </li>
          <li>
            <t>Being able to take advantage of existing library support rather than writing bespoke code for the integration.</t>
          </li>
          <li>
            <t>Centralizing login and multi-factor authentication support, account management, and recovery at the OAuth server, rather than making it part of the application logic.</t>
          </li>
          <li>
            <t>Splitting of responsibilities between authenticating a user and serving resources</t>
          </li>
        </ul>
        <t>Using OAuth for browser-based apps in a first-party same-domain scenario provides these advantages, and can be accomplished by any of the architectural patterns described above.</t>
        <section anchor="threat-analysis-3">
          <name>Threat Analysis</name>
          <t>Due to the lack of using OAuth, this architecture pattern is only vulnerable to the following attack payload: Proxying Requests via the User's Browser <xref target="payload-proxy"/>. As a result, this pattern can lead to the following consequence: Client Hijacking <xref target="consequence-hijack"/></t>
        </section>
      </section>
      <section anchor="implicit_flow">
        <name>OAuth Implicit Flow</name>
        <t>The OAuth 2.0 Implicit flow (defined in Section 4.2 of
OAuth 2.0 <xref target="RFC6749"/>) works by the authorization server issuing an access token in the
authorization response (front channel) without an authorization code exchange step. In this case, the access
token is returned in the fragment part of the redirect URI, providing an attacker
with several opportunities to intercept and steal the access token.</t>
        <t>Authorization servers MUST NOT issue access tokens in the authorization response, and MUST issue
access tokens only from the token endpoint. Browser-based clients MUST use the Authorization Code flow and MUST NOT use the Implicit flow to obtain access tokens.</t>
        <section anchor="historic-note">
          <name>Historic Note</name>
          <t>Historically, the Implicit flow provided an advantage to browser-based apps since
JavaScript could always arbitrarily read and manipulate the fragment portion of the
URL without triggering a page reload. This was necessary in order to remove the
access token from the URL after it was obtained by the app. Additionally, until
Cross Origin Resource Sharing (CORS) was widespread in browsers, the Implicit flow
offered an alternative flow that didn't require CORS support in the browser or on the server.</t>
          <t>Modern browsers now have the Session History API (described in "Session history and
navigation" of <xref target="HTML"/>), which provides a mechanism to modify the path and query string
component of the URL without triggering a page reload. Additionally, CORS has widespread
support and is often used by single-page apps for many purposes. This means modern browser-based apps can
use the OAuth 2.0 Authorization Code flow with PKCE, since they have the ability to
remove the authorization code from the query string without triggering a page reload
thanks to the Session History API, and CORS support at the token endpoint means the
app can obtain tokens even if the authorization server is on a different domain.</t>
        </section>
        <section anchor="threat-analysis-4">
          <name>Threat Analysis</name>
          <t>The architecture pattern discussed in this section is vulnerable to the following attack payloads:</t>
          <ul spacing="normal">
            <li>
              <t>Single-Execution Token Theft <xref target="payload-single-theft"/></t>
            </li>
            <li>
              <t>Persistent Token Theft <xref target="payload-persistent-theft"/></t>
            </li>
            <li>
              <t>Acquisition and Extraction of New Tokens <xref target="payload-new-flow"/></t>
            </li>
            <li>
              <t>Proxying Requests via the User's Browser <xref target="payload-proxy"/></t>
            </li>
          </ul>
          <t>As a result, this pattern can lead to the following consequences:</t>
          <ul spacing="normal">
            <li>
              <t>Exploiting Stolen Refresh Tokens <xref target="consequence-rt"/></t>
            </li>
            <li>
              <t>Exploiting Stolen Access Tokens <xref target="consequence-at"/></t>
            </li>
            <li>
              <t>Client Hijacking <xref target="consequence-hijack"/></t>
            </li>
          </ul>
        </section>
        <section anchor="further-attacks-on-the-implicit-flow">
          <name>Further Attacks on the Implicit Flow</name>
          <t>Apart from the attack payloads and consequences that were already discussed, there are a few additional attacks that further support the deprecation of the Implicit flow. Many attacks on the Implicit flow described by <xref target="RFC6819"/> and Section 4.1.2 of <xref target="oauth-security-topics"/>
do not have sufficient mitigation strategies. The following sections describe the specific
attacks that cannot be mitigated while continuing to use the Implicit flow.</t>
          <section anchor="threat-manipulation-of-the-redirect-uri">
            <name>Threat: Manipulation of the Redirect URI</name>
            <t>If an attacker is able to cause the authorization response to be sent to a URI under
their control, they will directly get access to the authorization response including the access token.
Several methods of performing this attack are described in detail in <xref target="oauth-security-topics"/>.</t>
          </section>
          <section anchor="threat-access-token-leak-in-browser-history">
            <name>Threat: Access Token Leak in Browser History</name>
            <t>An attacker could obtain the access token from the browser's history.
The countermeasures recommended by <xref target="RFC6819"/> are limited to using short expiration
times for tokens, and indicating that browsers should not cache the response.
Neither of these fully prevent this attack, they only reduce the potential damage.</t>
            <t>Additionally, many browsers now also sync browser history to cloud services and to
multiple devices, providing an even wider attack surface to extract access tokens
out of the URL.</t>
            <t>This is discussed in more detail in Section 4.3.2 of <xref target="oauth-security-topics"/>.</t>
          </section>
          <section anchor="threat-manipulation-of-scripts">
            <name>Threat: Manipulation of Scripts</name>
            <t>An attacker could modify the page or inject scripts into the browser through various
means, including when the browser's HTTPS connection is being intercepted by, for
example, a corporate network. While attacks on the TLS layer are typically out of scope
of basic security recommendations to prevent, in the case of browser-based apps they are
much easier to perform. An injected script can enable an attacker to have access to everything
on the page.</t>
            <t>The risk of a malicious script running on the page may be amplified when the application
uses a known standard way of obtaining access tokens, namely that the attacker can
always look at the <tt>window.location</tt> variable to find an access token. This threat profile
is different from an attacker specifically targeting an individual application
by knowing where or how an access token obtained via the Authorization Code flow may
end up being stored.</t>
          </section>
          <section anchor="threat-access-token-leak-to-third-party-scripts">
            <name>Threat: Access Token Leak to Third-Party Scripts</name>
            <t>It is relatively common to use third-party scripts in browser-based apps, such as
analytics tools, crash reporting, and even things like a Facebook or Twitter "like" button.
In these situations, the author of the application may not be able to be fully aware
of the entirety of the code running in the application. When an access token is
returned in the fragment, it is visible to any third-party scripts on the page.</t>
          </section>
        </section>
        <section anchor="disadvantages-of-the-implicit-flow">
          <name>Disadvantages of the Implicit Flow</name>
          <t>There are several additional reasons the Implicit flow is disadvantageous compared to
using the standard Authorization Code flow.</t>
          <ul spacing="normal">
            <li>
              <t>OAuth 2.0 provides no mechanism for a client to verify that a particular access token was
intended for that client, which could lead to misuse and possible impersonation attacks if
a malicious party hands off an access token it retrieved through some other means
to the client.</t>
            </li>
            <li>
              <t>Returning an access token in the front-channel redirect gives the authorization
server no assurance that the access token will actually end up at the
application, since there are many ways this redirect may fail or be intercepted.</t>
            </li>
            <li>
              <t>Supporting the Implicit flow requires additional code, more upkeep and
understanding of the related security considerations. Limiting the
authorization server to just the Authorization Code flow reduces the attack surface
of the implementation.</t>
            </li>
            <li>
              <t>If the JavaScript application gets wrapped into a native app, then <xref target="RFC8252"/>
also requires the use of the Authorization Code flow with PKCE anyway.</t>
            </li>
          </ul>
          <t>In OpenID Connect, the ID Token is sent in a known format (as a JWT), and digitally
signed. Returning an ID token using the Implicit flow (<tt>response_type=id_token</tt>) requires the client
validate the JWT signature, as malicious parties could otherwise craft and supply
fraudulent ID tokens. Performing OpenID Connect using the Authorization Code flow provides
the benefit of the client not needing to verify the JWT signature, as the ID token will
have been fetched over an HTTPS connection directly from the authorization server's token endpoint. Additionally,
in many cases an application will request both an ID token and an access token, so it is
simpler and provides fewer attack vectors to obtain both via the Authorization Code flow.</t>
        </section>
      </section>
      <section anchor="resource-owner-password-grant">
        <name>Resource Owner Password Grant</name>
        <t>The Resource Owner Password Credentials Grant MUST NOT be used, as described in
<xref target="oauth-security-topics"/> Section 2.4. Instead, by using the Authorization Code flow
and redirecting the user to the authorization server,
this provides the authorization server the opportunity to prompt the user for
secure non-phishable authentication options, take advantage of single sign-on sessions,
or use third-party identity providers. In contrast, the Resource Owner Password Credentials Grant does not
provide any built-in mechanism for these, and would instead need to be extended with custom protocols.</t>
        <t>To conform to this best practice, browser-based applications using OAuth or OpenID
Connect MUST use a redirect-based flow (e.g. the OAuth Authorization Code flow)
as described in this document.</t>
      </section>
      <section anchor="service-worker">
        <name>Handling the OAuth Flow in a Service Worker</name>
        <t>In an attempt to limit the attacker's ability to extract existing tokens or acquire a new set of tokens, a pattern using a <eref target="https://developer.mozilla.org/en-US/docs/Web/API/Service_Worker_API">Service Worker</eref> has been suggested in the past. In this pattern, the application's first action upon loading is registering a Service Worker. The Service Worker becomes responsible for executing the Authorization Code flow to obtain tokens and to augment outgoing requests to the resource server with the proper access token. Additionally, the Service Worker blocks the client application's code from making direct calls to the authorization server's endpoints. This restrictions aims to target the attack payload "Acquisition and Extraction of New Tokens" (<xref target="payload-new-flow"/>).</t>
        <t>The sequence diagram included below illustrates the interactions between the client, the Service Worker, the authorization server, and the resource server.</t>
        <artwork><![CDATA[
                                                                 Resource               Authorization
  User       Application        Service Worker                    server                   server
   |   browse     |                   |                              |                        |
   | ------------>|                   |                              |                        |
   |              |------------------->                              |           /authorize   |
   |              |                   -------------------------------------------------------->
   |              |                   |                 redirect w/ authorization code        |
   |              |                   < - - - - - - - - - - - - - - - - - - - - - - - - - - - |
   |              |                   |                              |                        |
   |              |                   |  token request w/ auth code  |               /token   |
   |              |                   | ------------------------------------------------------>
   |              |                   | <- - - - - - - - - - - - - - - - - - - - - - - - - - -|
   |              |                   |                              |                        |
   |              | resource request  |                              |                        |
   |              |-------------------> resource request with token  |                        |
   |              |                   | ---------------------------->|                        |
   |              |                   |                              |                        |
  User       Application        Service Worker                   Resource               Authorization
                                                                  server                   server
]]></artwork>
        <t>Note that this pattern never exposes the tokens to the application running in the browser. Since the Service Worker runs in an isolated execution environment, there is no shared memory and no way for the client application to influence the execution of the Service Worker.</t>
        <section anchor="threat-analysis-5">
          <name>Threat Analysis</name>
          <t>The architecture pattern discussed in this section is vulnerable to the following attack payloads:</t>
          <ul spacing="normal">
            <li>
              <t>Acquisition and Extraction of New Tokens <xref target="payload-new-flow"/></t>
            </li>
            <li>
              <t>Proxying Requests via the User's Browser <xref target="payload-proxy"/></t>
            </li>
          </ul>
          <t>As a result, this pattern can lead to the following consequences:</t>
          <ul spacing="normal">
            <li>
              <t>Exploiting Stolen Refresh Tokens <xref target="consequence-rt"/></t>
            </li>
            <li>
              <t>Exploiting Stolen Access Tokens <xref target="consequence-at"/></t>
            </li>
            <li>
              <t>Client Hijacking <xref target="consequence-hijack"/></t>
            </li>
          </ul>
          <section anchor="attacking-the-service-worker">
            <name>Attacking the Service Worker</name>
            <t>The seemingly promising security benefits of using a Service Worker warrant a more detailed discussion of its security limitations. To fully protect the application against the relevant payloads (See <xref target="payloads"/>), the Service Worker needs to meet two security requirements:</t>
            <ol spacing="normal" type="1"><li>
                <t>Prevent an attacker from exfiltrating tokens</t>
              </li>
              <li>
                <t>Prevent an attacker from acquiring a new set of tokens</t>
              </li>
            </ol>
            <t>Once registered, the Service Worker runs an Authorization Code flow and obtains the tokens. Since the Service Worker keeps track of tokens in its own isolated execution environment, they are out of reach for any application code, including potentially malicious code. Consequentially, the Service Worker meets the first requirement of preventing token exfiltration. This essentially neutralizes the first two attack payloads discussed in <xref target="payloads"/>.</t>
            <t>To meet the second security requirement, the Service Worker must be able to guarantee that an attacker controlling the legitimate application cannot execute a new Authorization Code flow, an attack discussed in <xref target="payload-new-flow"/>. Due to the nature of Service Workers, the registered Service Worker will be able to block all outgoing requests that initialize such a new flow, even when they occur in a frame or a new window.</t>
            <t>However, the malicious code running inside the application can unregister this Service Worker. Unregistering a Service Worker can have a significant functional impact on the application, so it is not an operation the browser handles lightly. Therefore, an unregistered Service Worker is marked as such, but all currently running instances remain active until their corresponding browsing context is terminated (e.g., by closing the tab or window). So even when an attacker unregisters a Service Worker, it remains active and able to prevent the attacker from reaching the authorization server.</t>
            <t>One of the consequences of unregistering a Service Worker is that it will not be present when a new browsing context is opened. So when the attacker first unregisters the Service Worker, and then starts a new flow in a frame, there will be no Service Worker associated with the browsing context of the frame. Consequentially, the attacker will be able to run an Authorization Code flow, extract the code from the frame's URL, and exchange it for tokens.</t>
            <t>In essence, the Service Worker fails to meet the second security requirement, leaving it vulnerable to the payload where the attacker acquires a new set of tokens (<xref target="payload-new-flow"/>).</t>
            <t>Due to these shortcomings, combined with the significant complexity of registering and maintaining a Service Worker, this pattern is not recommended.</t>
            <t>Finally, note that the use of a Service Worker by itself does not increase the attack surface of the application. In practice, Service Workers are often used to retrofit a legacy application with support for including OAuth access tokens on outgoing requests. Just note that the Service Worker in these scenarios does not change the security properties of the application. It merely simplifies development and maintenance of the application.</t>
          </section>
        </section>
      </section>
    </section>
    <section anchor="token-storage">
      <name>Token Storage in the Browser</name>
      <t>When using an architectural pattern that involves the browser-based code obtaining tokens itself, the application will ultimately need to store the tokens it acquires for later use. This applies to both the Token-Mediating Backend architecture as well as any architecture where the JavaScript code is the OAuth client itself and does not have a corresponding backend component. Depending on the application's architecture, the tokens can include an access token and refresh token. Given the sensitive nature of refresh tokens, the application can decide to use different storage strategies for both types.</t>
      <t>When discussing the security properties of browser-based token storage solutions, it is important to understand the attacker's capabilities when they compromise a browser-based application. Similar to previous discussions, there are two main attack payloads that should be taken into account:</t>
      <ol spacing="normal" type="1"><li>
          <t>The attacker obtaining tokens from storage</t>
        </li>
        <li>
          <t>The attacker obtaining tokens from the provider (e.g., the authorization server or the token-mediating backend)</t>
        </li>
      </ol>
      <t>Since the attacker's code becomes indistinguishable from the legitimate application's code, the attacker will always be able to request tokens from the provider in exactly the same way as the legitimate application code. As a result, not even the perfect token storage solution can address the dangers of the second threat, where the attacker requests tokens from the provider.</t>
      <t>That said, the different security properties of browser-based storage solutions will impact the attacker's ability to obtain existing tokens from storage. This section discusses a few different storage mechanisms and their properties.</t>
      <section anchor="cookies">
        <name>Cookies</name>
        <t>Browser cookies are both a storage mechanism and a transport mechanism. The browser automatically supports both through the corresponding request and response headers, resulting in the storage of cookies in the browser and the automatic inclusion of cookies on outgoing requests given it matches the cookie's domain, path, or other properties.</t>
        <t>Next to header-based control over cookies, browsers also offer a JavaScript Cookie API to get and set cookies. This Cookie API is often mistaken as an easy way to store data in the browser. In such a scenario, the JavaScript code stores a token in a cookie, with the intent to retrieve the token for later for inclusion in the Authorization header of an API call. However, since the cookie is associated with the domain of the browser-based application, the browser will also send the cookie containing the token when making a request to the server running on this domain. One example of such a request is the browser loading the application after a previous visit to the application (step A in the diagram of <xref target="pattern-oauth-browser"/>).</t>
        <t>Because of these unintentional side effect of using cookies for JavaScript-based storage, this practice is NOT RECOMMENDED.</t>
        <t>Note that this practice is different from the use of cookies in a BFF (discussed in <xref target="pattern-bff-cookie-security"/>), where the cookie is inaccessible to JavaScript and is supposed to be sent to the backend.</t>
      </section>
      <section anchor="token-storage-service-worker">
        <name>Token Storage in a Service Worker</name>
        <t>A Service Worker offers a fully isolated environment to keep track of tokens. These tokens are inaccessible to the client application, effectively protecting them against exfiltration. To guarantee the security of these tokens, the Service Worker cannot share these tokens with the application. Consequentially, whenever the application wants to perform an operation with a token, it has to ask the Service Worker to perform this operation and return the result.</t>
        <t>When aiming to isolate tokens from the application's execution context, the Service Worker MUST NOT store tokens in any persistent storage API that is shared with the main window. For example, currently, the IndexedDB storage is shared between the browsing context and Service Worker, so is not a suitable place for the Service Worker to persist data that should remain inaccessible to the main window. Consequentially, the Service Worker currently does not have access to an isolated persistent storage area.</t>
        <t>As discussed before, the use of a Service Worker does not prevent an attacker from obtaining a new set of tokens. Similarly, if the Service Worker initially obtains the tokens from the legitimate application, the attacker can likely obtain them in the same manner.</t>
      </section>
      <section anchor="token-storage-in-a-web-worker">
        <name>Token Storage in a Web Worker</name>
        <t>The application can use a Web Worker, which results in an almost identical scenario as the previous one that relies on a Service Worker. The difference between a Service Worker and a Web Worker is the level of access and its runtime properties. Service Workers can intercept and modify outgoing requests, while Web Workers are just a way to run background tasks. Web Workers are ephemeral and disappear when the browsing context is closed, while Service Workers are persistent services registered in the browser.</t>
        <t>The security properties of using a Web Worker are identical to using Service Workers. When tokens are exposed to the application, they become vulnerable. When tokens need to be used, the operation that relies on them has to be carried out by the Web Worker.</t>
        <t>One common use of Web Workers is to isolate the refresh token. In such a scenario, the application runs an Authorization Code flow to obtain the authorization code. This code is forwarded to a Web Worker, which exchanges it for tokens. The Web Worker keeps the refresh token in memory and sends the access token to the main application. The main application uses the access token as desired. When the application needs to run a refresh token flow, it asks the Web Worker to do so, after which the application obtains a fresh access token.</t>
        <t>In this scenario, the application's existing refresh token is effectively protected against exfiltration, but the access token is not. Additionally, nothing would prevent an attacker from obtaining their own tokens by running a new Authorization Code flow.</t>
      </section>
      <section anchor="token-storage-in-memory">
        <name>In-Memory Token Storage</name>
        <t>Another option is keeping tokens in-memory, without using any persistent storage. Doing so limits the exposure of the tokens to the current execution context only, but has the downside of not being able to persist tokens between page loads.</t>
        <t>The security of in-memory token storage can be further enhanced by using a closure variable to effectively shield the token from direct access. By using closures, the token is only accessible to the pre-defined functions inside the closure, such as a function to make a request to the resource server.</t>
        <t>While closures work well in simple, isolated environments, they are tricky to secure in a complex environment like the browser's execution environment. For example, a closure relies on a variety of outside functions to execute its operations, such as <em>toString</em> functions or networking APIs. Using prototype poisoning, an attacker can substitute these functions with malicious versions, causing the closure's future operations to use these malicious versions. Inside the malicious function, the attacker can gain access to the function arguments, which may expose the tokens from within the closure to the attacker.</t>
      </section>
      <section anchor="token-storage-persistent">
        <name>Persistent Token Storage</name>
        <t>The persistent storage APIs currently available as of this writing are localStorage, sessionStorage, and IndexedDB.</t>
        <t>localStorage persists between page reloads as well as is shared across all tabs. This storage is accessible to the entire origin, and persists longer term. localStorage does not protect against XSS attacks, as the attacker would be running code within the same origin, and as such, would be able to read the contents of the localStorage.</t>
        <t>sessionStorage is similar to localStorage, except that the lifetime of sessionStorage is linked to the lifetime of a browser tab. Additionally, sessionStorage is not shared between multiple tabs open to pages on the same origin, which slightly reduces the exposure of the tokens in sessionStorage.</t>
        <t>IndexedDB is a persistent storage mechanism like localStorage, but is shared between multiple tabs as well as between the browsing context and Service Workers.</t>
        <t>Note that the main difference between these patterns is the exposure of the data, but that none of these options can fully mitigate token exfiltration when the attacker can execute malicious code in the application's execution environment.</t>
      </section>
      <section anchor="filesystem-considerations">
        <name>Filesystem Considerations for Browser Storage APIs</name>
        <t>In all cases, as of this writing, browsers ultimately store data in plain text on the filesystem. This behavior exposes tokens to attackers with the ability to read files on disk. While such attacks rely on capabilities that are well beyond the scope of browser-based applications, this topic highlights an important attack vector against modern applications. More and more malware is specifically created to crawl user's machines looking for browser profiles to obtain high-value tokens and sessions, resulting in account takeover attacks.</t>
        <t>While the browser-based application is incapable of mitigating such attacks, the application can mitigate the consequences of such an attack by ensuring data confidentiality using encryption. The <xref target="WebCryptographyAPI"/> provides a mechanism for JavaScript code to generate a secret key, as well as an option for that key to be non-exportable. A JavaScript application could then use this API to encrypt and decrypt tokens before storing them. However, the <xref target="WebCryptographyAPI"/> specification only ensures that the key is not exportable to the browser code, but does not place any requirements on the underlying storage of the key itself with the operating system. As such, a non-exportable key cannot be relied on as a way to protect against exfiltration from the underlying filesystem.</t>
        <t>In order to protect against token exfiltration from the filesystem, the encryption keys would need to be stored somewhere other than the filesystem, such as on a remote server. This introduces new complexity for a purely browser-based app, and is out of scope of this document.</t>
      </section>
    </section>
    <section anchor="security-considerations-3">
      <name>Security Considerations</name>
      <section anchor="reducing-the-authority-of-tokens">
        <name>Reducing the Authority of Tokens</name>
        <t>A general security best practice in the OAuth world is to minimize the authority associated with access tokens. This best practice is applicable to all the architectures discussed in this specification. Concretely, the following considerations can be helpful in reducing the authority of access tokens:</t>
        <ul spacing="normal">
          <li>
            <t>Reduce the lifetime of access tokens and rely on refresh tokens for straightforward access token renewal</t>
          </li>
          <li>
            <t>Reduce the scopes or permissions associated with the access token</t>
          </li>
          <li>
            <t>Use <xref target="RFC8707"/> to restrict access tokens to a single resource</t>
          </li>
        </ul>
        <t>When OpenID Connect is used, it is important to avoid sensitive information disclosure through the claims in the ID Token. The authorization server SHOULD NOT include any ID token claims that aren't used by the client.</t>
      </section>
      <section anchor="sender-constrained-tokens">
        <name>Sender-Constrained Tokens</name>
        <t>As discussed throughout this document, the use of sender-constrained tokens does not solve the security limitations of browser-only OAuth clients. However, when the level of security offered by a token-mediating backend (<xref target="pattern-tmb"/>) or a browser-only OAuth client (<xref target="pattern-oauth-browser"/>) suffices for the use case at hand, sender-constrained tokens can be used to enhance the security of both access tokens and refresh tokens. One method of implementing sender-constrained tokens in a way that is usable from browser-based apps is <xref target="DPoP"/>.</t>
        <t>When using sender-constrained tokens, the OAuth client has to prove possession of a private key in order to use the token, such that the token isn't usable by itself. If a sender-constrained token is stolen, the attacker wouldn't be able to use the token directly, they would need to also steal the private key. In essence, one could say that using sender-constrained tokens shifts the challenge of securely storing the token to securely storing the private key.</t>
        <t>If an application is using sender-constrained tokens, the secure storage of the private key is more important than the secure storage of the token. Ideally the application should use a non-exportable private key, such as generating one with the <xref target="WebCryptographyAPI"/>. With an unencrypted token in localStorage protected by a non-exportable private key, an XSS attack would not be able to extract the key, so the token would not be usable by the attacker.</t>
        <t>If the application is unable to use an API that generates a non-exportable key, the application should take measures to isolate the private key from its own execution context. The techniques for doing so are similar to using a secure token storage mechanism, as discussed in <xref target="token-storage"/>.</t>
        <t>While a non-exportable key is protected from exfiltration from within JavaScript, exfiltration of the underlying private key from the filesystem is still a concern. As of the time of this writing, there is no guarantee made by the <xref target="WebCryptographyAPI"/> that a non-exportable key is actually protected by a Trusted Platform Module (TPM) or stored in an encrypted form on disk. Exfiltration of the non-exportable key from the underlying filesystem may still be possible if the attacker can get access to the filesystem of the user's machine, for example via malware.</t>
      </section>
      <section anchor="auth_server_mixup">
        <name>Authorization Server Mix-Up Mitigation</name>
        <t>Authorization server mix-up attacks mark a severe threat to every client that supports
at least two authorization servers. To conform to this BCP such clients MUST apply
countermeasures to defend against mix-up attacks.</t>
        <t>It is RECOMMENDED to defend against mix-up attacks by identifying and validating the issuer
of the authorization response. This can be achieved either by using the <tt>iss</tt> response
parameter, as defined in <xref target="RFC9207"/>, or by using the <tt>iss</tt> claim of the ID token
when using OpenID Connect.</t>
        <t>Alternative countermeasures, such as using distinct redirect URIs for each issuer, SHOULD
only be used if identifying the issuer as described is not possible.</t>
        <t>Section 4.4 of <xref target="oauth-security-topics"/> provides additional details about mix-up attacks
and the countermeasures mentioned above.</t>
      </section>
      <section anchor="isolating-applications-using-origins">
        <name>Isolating Applications using Origins</name>
        <t>Many of the web's security mechanisms rely on origins, which are defined as the triple <tt>&lt;scheme, hostname, port&gt;</tt>. For example, browsers automatically isolate browsing contexts with different origins, limit resources to certain origins, and apply CORS restrictions to outgoing cross-origin requests.</t>
        <t>Therefore, it is considered a best practice to avoid deploying more than one application in a single origin. An architecture that only deploys a single application in an origin can leverage these browser restrictions to increase the security of the application. Additionally, having a single origin per application makes it easier to configure and deploy security measures such as CORS, CSP, etc.</t>
      </section>
    </section>
    <section anchor="iana">
      <name>IANA Considerations</name>
      <t>This document does not require any IANA actions.</t>
    </section>
  </middle>
  <back>
    <references>
      <name>References</name>
      <references anchor="sec-normative-references">
        <name>Normative References</name>
        <reference anchor="RFC2119" target="https://www.rfc-editor.org/info/rfc2119" xml:base="https://bib.ietf.org/public/rfc/bibxml/reference.RFC.2119.xml">
          <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="RFC5116" target="https://www.rfc-editor.org/info/rfc5116" xml:base="https://bib.ietf.org/public/rfc/bibxml/reference.RFC.5116.xml">
          <front>
            <title>An Interface and Algorithms for Authenticated Encryption</title>
            <author fullname="D. McGrew" initials="D." surname="McGrew"/>
            <date month="January" year="2008"/>
            <abstract>
              <t>This document defines algorithms for Authenticated Encryption with Associated Data (AEAD), and defines a uniform interface and a registry for such algorithms. The interface and registry can be used as an application-independent set of cryptoalgorithm suites. This approach provides advantages in efficiency and security, and promotes the reuse of crypto implementations. [STANDARDS-TRACK]</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="5116"/>
          <seriesInfo name="DOI" value="10.17487/RFC5116"/>
        </reference>
        <reference anchor="RFC6749" target="https://www.rfc-editor.org/info/rfc6749" xml:base="https://bib.ietf.org/public/rfc/bibxml/reference.RFC.6749.xml">
          <front>
            <title>The OAuth 2.0 Authorization Framework</title>
            <author fullname="D. Hardt" initials="D." role="editor" surname="Hardt"/>
            <date month="October" year="2012"/>
            <abstract>
              <t>The OAuth 2.0 authorization framework enables a third-party application to obtain limited access to an HTTP service, either on behalf of a resource owner by orchestrating an approval interaction between the resource owner and the HTTP service, or by allowing the third-party application to obtain access on its own behalf. This specification replaces and obsoletes the OAuth 1.0 protocol described in RFC 5849. [STANDARDS-TRACK]</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="6749"/>
          <seriesInfo name="DOI" value="10.17487/RFC6749"/>
        </reference>
        <reference anchor="RFC6750" target="https://www.rfc-editor.org/info/rfc6750" xml:base="https://bib.ietf.org/public/rfc/bibxml/reference.RFC.6750.xml">
          <front>
            <title>The OAuth 2.0 Authorization Framework: Bearer Token Usage</title>
            <author fullname="M. Jones" initials="M." surname="Jones"/>
            <author fullname="D. Hardt" initials="D." surname="Hardt"/>
            <date month="October" year="2012"/>
            <abstract>
              <t>This specification describes how to use bearer tokens in HTTP requests to access OAuth 2.0 protected resources. Any party in possession of a bearer token (a "bearer") can use it to get access to the associated resources (without demonstrating possession of a cryptographic key). To prevent misuse, bearer tokens need to be protected from disclosure in storage and in transport. [STANDARDS-TRACK]</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="6750"/>
          <seriesInfo name="DOI" value="10.17487/RFC6750"/>
        </reference>
        <reference anchor="RFC6819" target="https://www.rfc-editor.org/info/rfc6819" xml:base="https://bib.ietf.org/public/rfc/bibxml/reference.RFC.6819.xml">
          <front>
            <title>OAuth 2.0 Threat Model and Security Considerations</title>
            <author fullname="T. Lodderstedt" initials="T." role="editor" surname="Lodderstedt"/>
            <author fullname="M. McGloin" initials="M." surname="McGloin"/>
            <author fullname="P. Hunt" initials="P." surname="Hunt"/>
            <date month="January" year="2013"/>
            <abstract>
              <t>This document gives additional security considerations for OAuth, beyond those in the OAuth 2.0 specification, based on a comprehensive threat model for the OAuth 2.0 protocol. This document is not an Internet Standards Track specification; it is published for informational purposes.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="6819"/>
          <seriesInfo name="DOI" value="10.17487/RFC6819"/>
        </reference>
        <reference anchor="RFC7636" target="https://www.rfc-editor.org/info/rfc7636" xml:base="https://bib.ietf.org/public/rfc/bibxml/reference.RFC.7636.xml">
          <front>
            <title>Proof Key for Code Exchange by OAuth Public Clients</title>
            <author fullname="N. Sakimura" initials="N." role="editor" surname="Sakimura"/>
            <author fullname="J. Bradley" initials="J." surname="Bradley"/>
            <author fullname="N. Agarwal" initials="N." surname="Agarwal"/>
            <date month="September" year="2015"/>
            <abstract>
              <t>OAuth 2.0 public clients utilizing the Authorization Code Grant are susceptible to the authorization code interception attack. This specification describes the attack as well as a technique to mitigate against the threat through the use of Proof Key for Code Exchange (PKCE, pronounced "pixy").</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="7636"/>
          <seriesInfo name="DOI" value="10.17487/RFC7636"/>
        </reference>
        <reference anchor="RFC8252" target="https://www.rfc-editor.org/info/rfc8252" xml:base="https://bib.ietf.org/public/rfc/bibxml/reference.RFC.8252.xml">
          <front>
            <title>OAuth 2.0 for Native Apps</title>
            <author fullname="W. Denniss" initials="W." surname="Denniss"/>
            <author fullname="J. Bradley" initials="J." surname="Bradley"/>
            <date month="October" year="2017"/>
            <abstract>
              <t>OAuth 2.0 authorization requests from native apps should only be made through external user-agents, primarily the user's browser. This specification details the security and usability reasons why this is the case and how native apps and authorization servers can implement this best practice.</t>
            </abstract>
          </front>
          <seriesInfo name="BCP" value="212"/>
          <seriesInfo name="RFC" value="8252"/>
          <seriesInfo name="DOI" value="10.17487/RFC8252"/>
        </reference>
        <reference anchor="RFC9207" target="https://www.rfc-editor.org/info/rfc9207" xml:base="https://bib.ietf.org/public/rfc/bibxml/reference.RFC.9207.xml">
          <front>
            <title>OAuth 2.0 Authorization Server Issuer Identification</title>
            <author fullname="K. Meyer zu Selhausen" initials="K." surname="Meyer zu Selhausen"/>
            <author fullname="D. Fett" initials="D." surname="Fett"/>
            <date month="March" year="2022"/>
            <abstract>
              <t>This document specifies a new parameter called iss. This parameter is used to explicitly include the issuer identifier of the authorization server in the authorization response of an OAuth authorization flow. The iss parameter serves as an effective countermeasure to "mix-up attacks".</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="9207"/>
          <seriesInfo name="DOI" value="10.17487/RFC9207"/>
        </reference>
        <reference anchor="draft-ietf-httpbis-rfc6265bis" target="https://datatracker.ietf.org/doc/html/draft-ietf-httpbis-rfc6265bis">
          <front>
            <title>Cookies: HTTP State Management Mechanism</title>
            <author initials="L." surname="Chen" fullname="L. Chen">
              <organization>Google LLC</organization>
            </author>
            <author initials="S." surname="Englehardt" fullname="S. Englehardt">
              <organization>Mozilla</organization>
            </author>
            <author initials="M." surname="West" fullname="M. West">
              <organization>Google LLC</organization>
            </author>
            <author initials="J." surname="Wilander" fullname="J. Wilander">
              <organization>Apple, Inc</organization>
            </author>
            <date year="2021" month="October"/>
          </front>
        </reference>
        <reference anchor="CookiePrefixes" target="https://developer.mozilla.org/en-US/docs/Web/HTTP/Cookies">
          <front>
            <title>Using HTTP cookies</title>
            <author initials="M." surname="Contributors" fullname="MDN Contributors">
              <organization>Mozilla Developer Network</organization>
            </author>
            <date>n.d.</date>
          </front>
        </reference>
        <reference anchor="Fetch" target="https://fetch.spec.whatwg.org/">
          <front>
            <title>Fetch</title>
            <author initials="" surname="whatwg" fullname="whatwg">
              <organization/>
            </author>
            <date year="2018"/>
          </front>
        </reference>
        <reference anchor="oauth-security-topics" target="https://datatracker.ietf.org/doc/html/draft-ietf-oauth-security-topics">
          <front>
            <title>OAuth 2.0 Security Best Current Practice</title>
            <author initials="T." surname="Lodderstedt" fullname="Torsten Lodderstedt">
              <organization>yes.com</organization>
            </author>
            <author initials="J." surname="Bradley" fullname="John Bradley">
              <organization>Yubico</organization>
            </author>
            <author initials="A." surname="Labunets" fullname="Andrey Labunets">
              <organization>Facebook</organization>
            </author>
            <author initials="D." surname="Fett" fullname="Daniel Fett">
              <organization>yes.com</organization>
            </author>
            <date year="2021" month="April"/>
          </front>
        </reference>
      </references>
      <references anchor="sec-informative-references">
        <name>Informative References</name>
        <reference anchor="HTML" target="https://html.spec.whatwg.org/">
          <front>
            <title>HTML</title>
            <author initials="" surname="whatwg" fullname="whatwg">
              <organization/>
            </author>
            <date year="2020"/>
          </front>
        </reference>
        <reference anchor="tmi-bff" target="https://datatracker.ietf.org/doc/html/draft-bertocci-oauth2-tmi-bff-01">
          <front>
            <title>Token Mediating and session Information Backend For Frontend</title>
            <author initials="V." surname="Bertocci" fullname="V. Bertocci">
              <organization>Okta</organization>
            </author>
            <author initials="B." surname="Cambpell" fullname="B. Cambpell">
              <organization>Ping</organization>
            </author>
            <date year="2021" month="April"/>
          </front>
        </reference>
        <reference anchor="WebCryptographyAPI" target="https://w3c.github.io/webcrypto/">
          <front>
            <title>Web Cryptography API</title>
            <author initials="D." surname="Huigens" fullname="Daniel Huigens">
              <organization>Proton AG</organization>
            </author>
            <date year="2022" month="November"/>
          </front>
        </reference>
        <reference anchor="DPoP" target="https://datatracker.ietf.org/doc/html/draft-ietf-oauth-dpop">
          <front>
            <title>Demonstrating Proof-of-Possession at the Application Layer</title>
            <author initials="D." surname="Fett">
              <organization>yes.com</organization>
            </author>
            <author initials="B." surname="Cambpell">
              <organization>Ping Identity</organization>
            </author>
            <author initials="J." surname="Bradley">
              <organization>Yubico</organization>
            </author>
            <author initials="T." surname="Lodderstedt">
              <organization>yes.com</organization>
            </author>
            <author initials="M." surname="Jones">
              <organization>Microsoft</organization>
            </author>
            <author initials="D." surname="Waite">
              <organization>Ping Identity</organization>
            </author>
            <date>n.d.</date>
          </front>
        </reference>
        <reference anchor="OpenID" target="https://openid.net/specs/openid-connect-core-1_0.html">
          <front>
            <title>OpenID Connect</title>
            <author initials="N." surname="Sakimura">
              <organization/>
            </author>
            <author initials="J." surname="Bradley">
              <organization/>
            </author>
            <author initials="M." surname="Jones">
              <organization/>
            </author>
            <author initials="B." surname="de Medeiros">
              <organization/>
            </author>
            <author initials="C." surname="Mortimore">
              <organization/>
            </author>
            <date year="2014" month="November"/>
          </front>
        </reference>
        <reference anchor="RFC8707" target="https://www.rfc-editor.org/info/rfc8707" xml:base="https://bib.ietf.org/public/rfc/bibxml/reference.RFC.8707.xml">
          <front>
            <title>Resource Indicators for OAuth 2.0</title>
            <author fullname="B. Campbell" initials="B." surname="Campbell"/>
            <author fullname="J. Bradley" initials="J." surname="Bradley"/>
            <author fullname="H. Tschofenig" initials="H." surname="Tschofenig"/>
            <date month="February" year="2020"/>
            <abstract>
              <t>This document specifies an extension to the OAuth 2.0 Authorization Framework defining request parameters that enable a client to explicitly signal to an authorization server about the identity of the protected resource(s) to which it is requesting access.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="8707"/>
          <seriesInfo name="DOI" value="10.17487/RFC8707"/>
        </reference>
        <reference anchor="CSP3" target="https://www.w3.org/TR/CSP3/">
          <front>
            <title>Content Security Policy</title>
            <author initials="M." surname="West" fullname="Mike West">
              <organization>Google, Inc</organization>
            </author>
            <date year="2018" month="October"/>
          </front>
        </reference>
        <reference anchor="WebMessaging" target="https://html.spec.whatwg.org/multipage/web-messaging.html#web-messaging">
          <front>
            <title>HTML Living Standard - Cross-document messaging</title>
            <author initials="" surname="whatwg" fullname="whatwg">
              <organization/>
            </author>
            <date year="2023" month="December"/>
          </front>
        </reference>
        <reference anchor="Site" target="https://developer.mozilla.org/en-US/docs/Glossary/Site">
          <front>
            <title>Site</title>
            <author initials="M." surname="Contributors" fullname="MDN Contributors">
              <organization>Mozilla Developer Network</organization>
            </author>
            <date>n.d.</date>
          </front>
        </reference>
      </references>
    </references>
    <?line 1432?>

<section anchor="server-support-checklist">
      <name>Server Support Checklist</name>
      <t>OAuth authorization servers that support browser-based apps MUST:</t>
      <ol spacing="normal" type="1"><li>
          <t>Support PKCE <xref target="RFC7636"/>. Required to protect authorization code
grants sent to public clients. See <xref target="auth_code_request"/></t>
        </li>
        <li>
          <t>NOT support the Resource Owner Password grant for browser-based clients.</t>
        </li>
        <li>
          <t>NOT support the Implicit grant for browser-based clients.</t>
        </li>
        <li>
          <t>Require "https" scheme redirect URIs for browser-based clients.</t>
        </li>
        <li>
          <t>Require exact matching of registered redirect URIs for browser-based clients.</t>
        </li>
        <li>
          <t>Support cross-domain requests at endpoints browser-based clients access in order to allow browsers
to make the authorization code exchange request. See <xref target="cors"/></t>
        </li>
        <li>
          <t>Not assume that browser-based clients can keep a secret, and SHOULD NOT issue
secrets to applications of this type.</t>
        </li>
        <li>
          <t>Follow the <xref target="oauth-security-topics"/> recommendations on refresh tokens, as well
as the additional requirements described in <xref target="pattern-oauth-browser-rt"/>.</t>
        </li>
      </ol>
    </section>
    <section anchor="document-history">
      <name>Document History</name>
      <t>[[ To be removed from the final specification ]]</t>
      <t>-17</t>
      <ul spacing="normal">
        <li>
          <t>Added a section on anti-forgery/double-submit cookies as another form of CSRF protection</t>
        </li>
        <li>
          <t>Updated CORS terminology</t>
        </li>
        <li>
          <t>Moved new section on in-browser flows as not applicable to BFF or TM patterns</t>
        </li>
        <li>
          <t>Fixed usage of some browser technology terminology</t>
        </li>
        <li>
          <t>Editorial improvements</t>
        </li>
      </ul>
      <t>-16</t>
      <ul spacing="normal">
        <li>
          <t>Applied editorial changes from Filip Skokan and Louis Jannett</t>
        </li>
        <li>
          <t>Clarified when cookie encryption applies</t>
        </li>
        <li>
          <t>Added a section with security considerations on the use of postMessage</t>
        </li>
      </ul>
      <t>-15</t>
      <ul spacing="normal">
        <li>
          <t>Consolidated guidelines for public JS clients in a single section</t>
        </li>
        <li>
          <t>Added more focus on best practices at the start of the document</t>
        </li>
        <li>
          <t>Restructured document to have top-level recommended and discouraged architecture patterns</t>
        </li>
        <li>
          <t>Added Philippe De Ryck as an author</t>
        </li>
      </ul>
      <t>-14</t>
      <ul spacing="normal">
        <li>
          <t>Minor editorial fixes and clarifications</t>
        </li>
        <li>
          <t>Updated some references</t>
        </li>
        <li>
          <t>Added a paragraph noting the possible exfiltration of a non-exportable key from the filesystem</t>
        </li>
      </ul>
      <t>-13</t>
      <ul spacing="normal">
        <li>
          <t>Corrected some uses of "DOM"</t>
        </li>
        <li>
          <t>Consolidated CSRF recommendations into normative part of the document</t>
        </li>
        <li>
          <t>Added links from the summary into the later sections</t>
        </li>
        <li>
          <t>Described limitations of Service Worker storage</t>
        </li>
        <li>
          <t>Minor editorial improvements</t>
        </li>
      </ul>
      <t>-12</t>
      <ul spacing="normal">
        <li>
          <t>Revised overview and server support checklist to bring them up to date with the rest of the draft</t>
        </li>
        <li>
          <t>Added a new section about options for storing tokens</t>
        </li>
        <li>
          <t>Added a section on sender-constrained tokens and a reference to DPoP</t>
        </li>
        <li>
          <t>Rephrased the architecture patterns to focus on token acquisition</t>
        </li>
        <li>
          <t>Added a section discussing why not to use the Cookie API to store tokens</t>
        </li>
      </ul>
      <t>-11</t>
      <ul spacing="normal">
        <li>
          <t>Added a new architecture pattern: Token-Mediating Backend</t>
        </li>
        <li>
          <t>Revised and added clarifications for the Service Worker pattern</t>
        </li>
        <li>
          <t>Editorial improvements in descriptions of the different architectures</t>
        </li>
        <li>
          <t>Rephrased headers</t>
        </li>
      </ul>
      <t>-10</t>
      <ul spacing="normal">
        <li>
          <t>Revised the names of the architectural patterns</t>
        </li>
        <li>
          <t>Added a new pattern using a service worker as the OAuth client to manage tokens</t>
        </li>
        <li>
          <t>Added some considerations when storing tokens in Local or Session Storage</t>
        </li>
      </ul>
      <t>-09</t>
      <ul spacing="normal">
        <li>
          <t>Provide additional context for the same-domain architecture pattern</t>
        </li>
        <li>
          <t>Added reference to draft-ietf-httpbis-rfc6265bis to clarify that SameSite is not the only CSRF protection measure needed</t>
        </li>
        <li>
          <t>Editorial improvements</t>
        </li>
      </ul>
      <t>-08</t>
      <ul spacing="normal">
        <li>
          <t>Added a note to use the "Secure" cookie attribute in addition to SameSite etc</t>
        </li>
        <li>
          <t>Updates to bring this draft in sync with the latest Security BCP</t>
        </li>
        <li>
          <t>Updated text for mix-up countermeasures to reference the new "iss" extension</t>
        </li>
        <li>
          <t>Changed "SHOULD" for refresh token rotation to MUST either use rotation or sender-constraining to match the Security BCP</t>
        </li>
        <li>
          <t>Fixed references to other specs and extensions</t>
        </li>
        <li>
          <t>Editorial improvements in descriptions of the different architectures</t>
        </li>
      </ul>
      <t>-07</t>
      <ul spacing="normal">
        <li>
          <t>Clarify PKCE requirements apply only to issuing access tokens</t>
        </li>
        <li>
          <t>Change "MUST" to "SHOULD" for refresh token rotation</t>
        </li>
        <li>
          <t>Editorial clarifications</t>
        </li>
      </ul>
      <t>-06</t>
      <ul spacing="normal">
        <li>
          <t>Added refresh token requirements to AS summary</t>
        </li>
        <li>
          <t>Editorial clarifications</t>
        </li>
      </ul>
      <t>-05</t>
      <ul spacing="normal">
        <li>
          <t>Incorporated editorial and substantive feedback from Mike Jones</t>
        </li>
        <li>
          <t>Added references to "nonce" as another way to prevent CSRF attacks</t>
        </li>
        <li>
          <t>Updated headers in the Implicit Flow section to better represent the relationship between the paragraphs</t>
        </li>
      </ul>
      <t>-04</t>
      <ul spacing="normal">
        <li>
          <t>Disallow the use of the Password Grant</t>
        </li>
        <li>
          <t>Add PKCE support to summary list for authorization server requirements</t>
        </li>
        <li>
          <t>Rewrote refresh token section to allow refresh tokens if they are time-limited, rotated on each use, and requiring that the rotated refresh token lifetimes do not extend past the lifetime of the initial refresh token, and to bring it in line with the Security BCP</t>
        </li>
        <li>
          <t>Updated recommendations on using state to reflect the Security BCP</t>
        </li>
        <li>
          <t>Updated server support checklist to reflect latest changes</t>
        </li>
        <li>
          <t>Updated the same-domain JS architecture section to emphasize the architecture rather than domain</t>
        </li>
        <li>
          <t>Editorial clarifications in the section that talks about OpenID Connect ID tokens</t>
        </li>
      </ul>
      <t>-03</t>
      <ul spacing="normal">
        <li>
          <t>Updated the historic note about the fragment URL clarifying that the Session History API means browsers can use the unmodified Authorization Code flow</t>
        </li>
        <li>
          <t>Rephrased "Authorization Code Flow" intro paragraph to better lead into the next two sections</t>
        </li>
        <li>
          <t>Softened "is likely a better decision to avoid using OAuth entirely" to "it may be..." for common-domain deployments</t>
        </li>
        <li>
          <t>Updated abstract to not be limited to public clients, since the later sections talk about confidential clients</t>
        </li>
        <li>
          <t>Removed references to avoiding OpenID Connect for same-domain architectures</t>
        </li>
        <li>
          <t>Updated headers to better describe architectures (Apps Served from a Static Web Server -&gt; JavaScript Applications without a Backend)</t>
        </li>
        <li>
          <t>Expanded "same-domain architecture" section to better explain the problems that OAuth has in this scenario</t>
        </li>
        <li>
          <t>Referenced Security BCP in implicit flow attacks where possible</t>
        </li>
        <li>
          <t>Minor typo corrections</t>
        </li>
      </ul>
      <t>-02</t>
      <ul spacing="normal">
        <li>
          <t>Rewrote overview section incorporating feedback from Leo Tohill</t>
        </li>
        <li>
          <t>Updated summary recommendation bullet points to split out application and server requirements</t>
        </li>
        <li>
          <t>Removed the allowance on hostname-only redirect URI matching, now requiring exact redirect URI matching</t>
        </li>
        <li>
          <t>Updated Section 6.2 to drop reference of SPA with a backend component being a public client</t>
        </li>
        <li>
          <t>Expanded the architecture section to explicitly mention three architectural patterns available to JS apps</t>
        </li>
      </ul>
      <t>-01</t>
      <ul spacing="normal">
        <li>
          <t>Incorporated feedback from Torsten Lodderstedt</t>
        </li>
        <li>
          <t>Updated abstract</t>
        </li>
        <li>
          <t>Clarified the definition of browser-based apps to not exclude applications cached in the browser, e.g. via Service Workers</t>
        </li>
        <li>
          <t>Clarified use of the state parameter for CSRF protection</t>
        </li>
        <li>
          <t>Added background information about the original reason the implicit flow was created due to lack of CORS support</t>
        </li>
        <li>
          <t>Clarified the same-domain use case where the SPA and API share a cookie domain</t>
        </li>
        <li>
          <t>Moved historic note about the fragment URL into the Overview</t>
        </li>
      </ul>
    </section>
    <section anchor="acknowledgements">
      <name>Acknowledgements</name>
      <t>The authors would like to acknowledge the work of William Denniss and John Bradley,
whose recommendation for native apps informed many of the best practices for
browser-based applications. The authors would also like to thank Hannes Tschofenig
and Torsten Lodderstedt, the attendees of the Internet Identity Workshop 27
session at which this BCP was originally proposed, and the following individuals
who contributed ideas, feedback, and wording that shaped and formed the final specification:</t>
      <t>Annabelle Backman, Brian Campbell, Brock Allen, Christian Mainka, Damien Bowden, Daniel Fett,
Elar Lang, Eva Sarafianou,
Filip Skokan, George Fletcher, Hannes Tschofenig, Janak Amarasena, John Bradley, Joseph Heenan,
Justin Richer, Karl McGuinness, Karsten Meyer zu Selhausen, Leo Tohill, Louis Jannett, Mike Jones,
Sean Kelleher, Thomas Broyer, Tomek Stojecki, Torsten Lodderstedt, Vittorio Bertocci and Yannick Majoros.</t>
    </section>
  </back>
  <!-- ##markdown-source:
H4sIAAAAAAAAA+y9a5fbyJEm/J2/Aqf6g0ttkmqpb7Z27DOlKsmtHqlVq5LW
M8dnRgJJsIgRCXAAsEq03P9945oZmUiwSpd2+33X2h23RBKJvETGPZ6YTCaj
ruzWxYPs+cmuW2X3p19ly7rJHjb1dVs0k4d5Wyyyk+22HS3qeZVv4JeLJl92
k7LolpM6h4cmM/nxDH88yeHHk3vfj0bltnmQdc2u7e5/9dXvv7o/ypsif5Bd
FPNdU3b70XXdvL1s6t32QfbnYpbh++um/GvelXWVnTd1V8/r9ejt9YPsSdUV
TVV0kzN89Wiedw+y2Xw7Gs3rRVldPsh27SRv52U52pYPRlkGTz7I9kULf23r
pmuKZev+vd/4f45yeic+MoH/y7Kygm9Optk5THX+tqTPeNEneYOzMp/XDbz4
+dsup38Vm7xcP8hy/Nm/bvln03m9oS9hvQ+yVddt2wd379JPwl+Yl59Nsz/n
ZVeYV5/lV+XCfEovPod1Z08WRdXhVpoZLPDX/5qv3+brsiombb3e4Ya2/Ved
T7OzInuxn781Lztfletyuy2Cr/iNTX65gcOZ02m5UzSv3sqz/7rVn14Xs1Z+
SO8fjaq6wW+uCtz0F49P79+793v567f37n0nf/3u+29+7/767Vf619+5337/
3df629/d//a+/PX397/6Hv9qKBR3fVa2k2Y5/+7+d9/CXx/QlIXqj07r+m1Z
wG788PLleXbR5V2RPcur/LLYwN5mz4r5Kq/KdnNETy3gazj0eVfPiia7/9X9
ezxY3lwWnT9i+FneNfn8bdFMcRZT2MC7cH/urrrN+u7B2dF4nizhwORgnk6z
01VR0WdyIn+q68t1kT19ehr88mKaPargi1XeLDr7+2f1X8v1Og9+/AzorWi7
Wwz7I/yyXOfVomjsr4E3rIsxXNE5fMq7eQ43rHxXhDv9qkWKpV2e854PLvXZ
2U8wUtU15WzX1U2bWAOQ51WxrrdwCj8VHXKS9EHor6Ybfo5Ooqgmry7wPNq7
QMp3cU53T92cHhfdfBVMnT7pzVZvzPUq764v5SO6WOYTJpj7X937XXJ+Sxx5
2m6L+ZQfovnBT5mx6t2ZdPW2nIf76fm1XsXsIRxkdrprGqRcuK5zuIHF4C6/
hJ3tiip7Wi/gSOGvjlhoES+niW/oCIBzOs7miKNeVSA08sW62NtRgGjCT2mE
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
Ivi8bLbL5ewf0h/no8PUAQA=

-->

</rfc>
