<?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.1 (Ruby 3.2.2) -->
<rfc xmlns:xi="http://www.w3.org/2001/XInclude" ipr="trust200902" docName="draft-ietf-oauth-browser-based-apps-15" category="bcp" consensus="true" tocInclude="true" sortRefs="true" symRefs="true" version="3">
  <!-- xml2rfc v2v3 conversion 3.18.2 -->
  <front>
    <title>OAuth 2.0 for Browser-Based Apps</title>
    <seriesInfo name="Internet-Draft" value="draft-ietf-oauth-browser-based-apps-15"/>
    <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="2023" month="October" day="23"/>
    <area>Security</area>
    <workgroup>Web Authorization Protocol</workgroup>
    <keyword>Internet-Draft</keyword>
    <abstract>
      <?line 147?>

<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 152?>

<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 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 apps", 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 Web Assembly.</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. The payload that the attacker chooses to execute can be extremely simple in nature, but can also be highly sophisticated and tailored to the application. Real-world examples include stealing data from the page, sending requests to a backend in the name of the user, and stealing tokens from storage areas.</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 poisoning), 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 in 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, when 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.</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 can execute malicious JavaScript code in the application's execution context, they effectively control the application's origin, and by extension, the redirect URI. This attack scenario uses a silent iframe-based flow, which is the same mechanism most browser-based apps use to bootstrap their authentication state. Since the attacker controls the application in the browser, the attacker's Authorization Code flow is indistinguishable from a legitimate Authorization Code flow.</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 silently bootstrapping an application on 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 key linked to 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 private key. 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 as a confidential OAuth client with the authorization server</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 execution context, 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 secret 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 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 section <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, the BFF SHOULD encrypt its cookie contents, to ensure that tokens stored in cookies are never written to disk in plaintext format. This security measure helps to ensure protect 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 parent domain.</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, host, 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 "Simple Requests" in CORS terminology, 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>
          <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 section <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, which puts a significant burden on the server-side component.</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 secret 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 JavaScript application notices that the user's access token has expired, it 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. 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>Section <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 section <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 BFF application architecture:</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. Section <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 a client secret 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 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 a 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>
          <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 metadata URLs, dynamic client registration, revocation, introspection, discovery 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 whether a CORS policy
for the token endpoint should be a wildcard origin or more restrictive. Note,
however, that the browser will attempt to GET or POST to the API endpoint before
knowing any CORS policy; it simply hides the succeeding or failing result from
JavaScript if the policy does not allow sharing.</t>
          </section>
        </section>
        <section anchor="threat-analysis-2">
          <name>Threat Analysis</name>
          <t>This section revisits the payloads and consequences from section <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>. Section <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 and cannot be extracted. 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 section <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 silent frame-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 section <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 the 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 unmodified OAuth 2.0 Authorization Code flow, 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 section <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 section <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. In browser 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 relevant outgoing requests.</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 section <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 SessionStorage is cleared when a browser tab is closed, and 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="WebCrypto"/> API provides a mechanism for JavaScript code to generate a private 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="WebCrypto"/> 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 (Section <xref target="pattern-tmb"/>) or a browser-only OAuth client (Section <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="WebCrypto"/> API. 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="WebCrypto"/> API 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>
    <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="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="WebCrypto" 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>
      </references>
    </references>
    <?line 1394?>

<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.</t>
        </li>
        <li>
          <t>Require exact matching of registered redirect URIs.</t>
        </li>
        <li>
          <t>Support cross-domain requests at the token endpoint 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>-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, Daniel Fett, Eva Sarafianou,
George Fletcher, Hannes Tschofenig, Janak Amarasena, John Bradley, Joseph Heenan,
Justin Richer, Karl McGuinness, Karsten Meyer zu Selhausen, Leo Tohill, Mike Jones,
Sean Kelleher, Thomas Broyer Tomek Stojecki, Torsten Lodderstedt, Vittorio Bertocci and Yannick Majoros.</t>
    </section>
  </back>
  <!-- ##markdown-source:
H4sIAAAAAAAAA+29a5fbxpUu/B2/Aqv9IZJDUrZ8S3RmsqbVkmw5ktWvWprM
rFkzNkiCTUQkwAHAbjGK//vZ16pdhQK7JctJ1nuicyaWSKJQl137vp89nU6z
vuo35YP8xem+X+f3Z5/lq6bNH7bNdVe204dFVy7z092uy5bNoi628MtlW6z6
aVX2q2lTwEPTufx4jj+eFvDj6edfZVm1ax/kfbvv+vufffb7z+5nRVsWD/KL
crFvq/6QXTftm8u22e8e5H8q5zm+v2mrvxR91dT5edv0zaLZZG+uH+RP675s
67KfPsJXZ4uif5DPF7ssWzTLqr58kO+7adEtqirbVQ+yPIcnH+SHsoO/dk3b
t+Wqc/8+bP0/s4LeiY9M4f/yvKrhm9NZfg5TXbyp6DNe9GnR4qzM500LL37x
pi/oX+W2qDYP8gJ/9m87/tls0WzpS1jvg3zd97vuwb179JPwF+blj2b5n4qq
L82rHxVX1dJ8Si8+h3XnT5dl3eNWmhks8df/VmzeFJuqLqdds9njhnbDV53P
8kdl/vKweGNedr6uNtVuVwZf8Rvb4nILh7Og03KnaF69k2f/bac/vS7nnfyQ
3p9lddPiN1clbvrLJ2f3P//89/LXr7/50v/1q8/0r79zP/jm6y++lr/+7v5X
9+Wvv7//2Tf4V0OWuNXzqpu2q8XX97/+Cv76gOYppH5y1jRvqhK24LtXr87z
i77oy/x5UReX5RY2NH9eLtZFXXXbE3pqCV/DSS/6Zl62+f3P7n/OgxXtZdn7
c4WfFX1bLN6U7QxnMYNduweX5t66327uHZ0djedpEU5JTuPZLD9blzV9Jsfw
bdNcbsr82bOz4JcXs/xxDV+si3bZ298/b/5SbTZF8OPnQGRl199i2O/hl9Wm
qJdla38NDGFTTuBeLuBT3s1zuFbV2zLc6dcdkint8oL3fHSpzx/9ACPVfVvN
933Tdok1AE1elZtmB6fwQ9kj+0gfhP5qtuXn6CTKevr6As+juwf0ew/ndO/M
zelJ2S/WwdTpk8Fs9Zpcr4v++lI+ottkPmGCuf/Z579Lzm+FI8+6XbmY8UM0
P/gpc1O9MNO+2VWLcD89k9b7lz+Eg8zP9m2LlAt3dAHXrhzd5Vews31Z58+a
JRwp/NURCy3i1SzxDR0BsEvHzhxxNOsaJEWx3JQHOwoQTfgpjfCf+3m1aIIB
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
L9hmxlm/vgEA

-->

</rfc>
