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

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

<section anchor="introduction">
      <name>Introduction</name>
      <t>This specification describes different architectural patterns for implementing OAuth 2.0 clients 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 RFC8252 or BCP212, but often referred to as "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 clients in native
applications, including incorporating additional OAuth extensions where needed.</t>
      <t>This specification, OAuth 2.0 for Browser-Based Applications, addresses the similarities between implementing
OAuth clients as native applications and browser-based applications, 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 applications are expected to follow those recommendations
as well. This document expands on and further restricts various recommendations given in <xref target="oauth-security-topics"/>.</t>
    </section>
    <section anchor="notational-conventions">
      <name>Notational Conventions</name>
      <t>The key words "MUST", "MUST NOT", "REQUIRED", "SHALL", "SHALL NOT",
"SHOULD", "SHOULD NOT", "RECOMMENDED", "NOT RECOMMENDED", "MAY", and
"OPTIONAL" in this document are to be interpreted as described in BCP14.</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>This document discusses the security of browser-based applications, which are executed by the browser in a runtime environment. In most scenarios, these applications are JavaScript (JS) applications running in a JavaScript execution environment. Given the popularity of this scenario, this document refers to "JavaScript applications" and to "malicious JavaScript" when discussing attack patterns. Note that the recommendations and considerations in this document are not exclusively linked to the JavaScript language or its runtime. The same considerations apply to other languages and runtimes that allow malicious code to execute in the application's runtime in the browser.</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 was initially specified in <xref target="RFC6749"/> and <xref target="RFC6750"/>, 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 grant type which would require a cross-origin POST request. This limitation was one of the motivations for the definition of the Implicit grant type, 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 grant type, 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 grant type 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) <xref target="Fetch"/>, which enables exceptions to the same-origin policy, allows browser-based applications to use the OAuth 2.0 Authorization Code grant type and make a POST request to exchange the authorization code for an access token at the token endpoint. Since the Authorization Code grant type enables the use of refresh tokens for other types of clients, this behavior has been adopted for browser-based clients as well, even though these clients are still public clients with limited to no access to secure storage. 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 grant type with PKCE. There are various architectural patterns for deploying browser-based applications, both with and without a corresponding server-side component. Each of these architectures has specific trade-offs and considerations, discussed further in this document. Additional considerations apply for first-party common-domain applications.</t>
    </section>
    <section anchor="threats">
      <name>The Threat of Malicious JavaScript</name>
      <t>Malicious JavaScript poses a significant risk to browser-based applications. Attack vectors, such as cross-site scripting (XSS) or the compromise of remote code files, give an attacker the capability to run arbitrary code in the application's execution context. This malicious code is not isolated from the main application's code in any way. Consequentially, the malicious code can not only take control of the running execution context, but can also perform actions within the application's origin. Concretely, this means that the malicious code can steal data from the current page, interact with other same-origin browsing contexts, send requests to a backend from within the application's origin, steal data from origin-based storage mechanisms (e.g., localStorage, IndexedDB), etc.</t>
      <t>When analyzing the security of browser-based applications in light of the presence of malicious JS, it is crucial to realize that the <strong>malicious JavaScript code has the same privileges as the legitimate application code</strong>. When the application code can access variables or call functions, the malicious JS code can do exactly the same. Furthermore, the malicious JS code can tamper with the regular execution flow of the application, as well as with any application-level defenses, since they are typically controlled from within the application. For example, the attacker can remove or override event listeners, modify the behavior of built-in functions (prototype pollution), and stop pages in frames from loading.</t>
      <t>This section explores the threats malicious JS code poses to browser-based applications that assume the role of an OAuth client. The first part (<xref target="attackscenarios"/>) discusses a few scenarios that attackers can use once they have 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 (<xref target="consequences"/>) 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="attackscenarios">
        <name>Malicious JavaScript Scenarios</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 include trivial scenarios (<xref target="scenario-single-theft"/>) and elaborate scenarios (<xref target="scenario-new-flow"/>). Note that this enumeration is non-exhaustive and presented in no particular order.</t>
        <section anchor="scenario-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. When discussing the security of browser-based applications, it is crucial to avoid limiting the attacker's capabilities to the attack discussed in this scenario.</t>
        </section>
        <section anchor="scenario-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="scenario-single-theft"/>). Instead of immediately stealing tokens upon the execution of the malicious code, 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)
              </t>
              <ul spacing="normal">
                <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 the tokens</t>
                </li>
              </ul>
            </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 attack scenario 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="scenario-new-flow">
          <name>Acquisition and Extraction of New Tokens</name>
          <t>In this advanced attack scenario, the attacker completely disregards any tokens that the application has already obtained. Instead, the attacker takes advantage of the ability to run malicious code that is associated with the application's origin. With that ability, the attacker can inject a hidden iframe and launch a silent Authorization Code flow. This silent flow will reuse the user's existing session with the authorization server and result in the issuing of a new, independent set of tokens. This scenario consists of the following steps:</t>
          <ul spacing="normal">
            <li>
              <t>Execute malicious JS code</t>
            </li>
            <li>
              <t>Set up a handler to obtain the authorization code from the iframe (e.g., by monitoring the frame's URL or via Web Messaging (<xref target="WebMessaging"/>))</t>
            </li>
            <li>
              <t>Insert a hidden iframe into the page and initialize it with an authorization request. The authorization request in the iframe will occur within the user's session and, if the session is still active, result in the issuing of an authorization code. Note that this step relies on the Authorization Server supporting silent frame-based flows, as discussed in the last paragraph of this scenario.</t>
            </li>
            <li>
              <t>Extract the authorization code from the iframe using the previously installed handler</t>
            </li>
            <li>
              <t>Send the authorization code to a server controlled by the attacker</t>
            </li>
            <li>
              <t>Exchange the authorization code for a new set of tokens</t>
            </li>
            <li>
              <t>Abuse the stolen tokens</t>
            </li>
          </ul>
          <t>The most important takeaway from this scenario is that it runs a new OAuth flow instead of focusing on stealing existing tokens. In essence, even if the application finds a token storage mechanism with perfect security, the attacker will still be able to request a new set of tokens. Note that because the attacker controls the application in the browser, the attacker's Authorization Code flow is indistinguishable from a legitimate Authorization Code flow.</t>
          <t>This attack scenario is possible because the security of public browser-based OAuth clients relies entirely on the redirect URI and application's origin. When the attacker executes malicious JavaScript code in the application's origin, they gain the capability to inspect same-origin frames. As a result, the attacker's code running in the main execution context can inspect the redirect URI loaded in the same-origin frame to extract the authorization code.</t>
          <t>There are no practical security mechanisms for frontend applications that counter this attack scenario. Short access token lifetimes and refresh token rotation are ineffective, since the attacker has a fresh, independent set of tokens. Advanced security mechanism, such as DPoP <xref target="RFC9449"/> are equally ineffective, since the attacker can use their own key pair to setup and use DPoP for the newly obtained tokens. Requiring user interaction with every Authorization Code flow would effectively stop the automatic silent issuance of new tokens, but this would significantly impact widely-established patterns, such as bootstrapping an application on its first page load, or single sign-on across multiple related applications, and is not a practical measure.</t>
        </section>
        <section anchor="scenario-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, DPoP <xref target="RFC9449"/> explicitly considers this attack scenario to be out of scope.</t>
        </section>
      </section>
      <section anchor="consequences">
        <name>Attack Consequences</name>
        <t>Successful execution of an attack scenario 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 grant with the authorization server. The response of the Refresh Token grant 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 legitimate client application 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 legitimate client application 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 accepts the valid access token. In essence, abusing a stolen access token enables short-term impersonation of the legitimate client application to resource servers.</t>
          <t>The attack ends when the access token expires or when a token is revoked with the authorization server. In a typical browser-based OAuth client, access token lifetimes can be quite short, ranging from minutes to hours.</t>
          <t>Note that the possession of the access token allows its unrestricted use by the attacker. The attacker can send arbitrary requests to resource servers, using any HTTP method, destination URL, header values, or body.</t>
          <t>The application can use DPoP to ensure its access tokens are bound to non-exportable keys held by the browser. In that case, it becomes significantly harder for the attacker to abuse stolen access tokens. More specifically, with DPoP, the attacker can only abuse stolen application tokens by carrying out an online attack, where the proofs are calculated in the user's browser. This attack is described in detail in section 11.4 of <xref target="RFC9449"/>. However, when the attacker obtains a fresh set of tokens, as described in <xref target="scenario-new-flow"/>, they can set up DPoP for these tokens using an attacker-controlled key pair. In that case, the attacker is again free to abuse this newly obtained access token without restrictions.</t>
        </section>
        <section anchor="consequence-hijack">
          <name>Client Hijacking</name>
          <t>When stealing tokens is not possible or desirable, the attacker can also choose to hijack the OAuth client application running in the user's browser. This effectively allows the attacker to perform any operations that the legitimate client application can perform. Examples include inspecting data on the page, modifying the page, and sending requests to backend systems.</t>
          <t>Note that client hijacking is less powerful than directly abusing stolen tokens. In a client hijacking scenario, the attacker cannot directly control the tokens and is restricted by the security policies enforced on the client application. For example, a resource server running on <tt>admin.example.org</tt> can be configured with a 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 resource server's strict CORS configuration does not allow such a request. A resource server without such a strict CORS policy can still be subject to adversarial requests coming from the compromised client application.</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 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 Client)</t>
        </li>
      </ul>
      <t>Each of these architecture patterns offer a different trade-off between security and simplicity. The patterns in this section are presented in decreasing order of security.</t>
      <section anchor="pattern-bff">
        <name>Backend For Frontend (BFF)</name>
        <t>This section describes the architecture of a JavaScript application that relies on a backend component to handle all OAuth responsibilities and API interactions. The BFF has three core responsibilities:</t>
        <ol spacing="normal" type="1"><li>
            <t>The BFF interacts with the authorization server as a confidential OAuth client</t>
          </li>
          <li>
            <t>The BFF manages OAuth access and refresh tokens in the context of a cookie-based session, avoiding the direct exposure of any tokens to 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>In this architecture, the BFF runs as a server-side component, but it is a component of the frontend application. To avoid confusion with other architectural concepts, such as API gateways and reverse proxies, it is important to keep in mind that the BFF becomes the OAuth client for the frontend application.</t>
        <t>If an attacker is able to execute malicious code within the JavaScript application, the application architecture is able to withstand most of the attack scenarios discussed before. Since tokens are only available to the BFF, there are no tokens available to extract from JavaScript (Single-Execution Token Theft (<xref target="scenario-single-theft"/>) and Persistent Token Theft (<xref target="scenario-persistent-theft"/>)). The BFF is a confidential client, which prevents the attacker from running a new flow within the browser (Acquisition and Extraction of New Tokens (<xref target="scenario-new-flow"/>)). Since the malicious JavaScript code still runs within the application's origin, the attacker is able to send requests to the BFF from within the user's browser (Proxying Requests via the User's Browser (<xref target="scenario-proxy"/>)). Note that the use of HttpOnly cookies prevents the attacker from directly accessing the session state, which prevents the escalation from client hijacking to session hijacking.</t>
        <section anchor="application-architecture">
          <name>Application Architecture</name>
          <figure anchor="fig-bbapp-pattern-bff">
            <name>OAuth 2.0 BFF Pattern</name>
            <artset>
              <artwork type="svg"><svg xmlns="http://www.w3.org/2000/svg" version="1.1" height="448" width="576" viewBox="0 0 576 448" class="diagram" text-anchor="middle" font-family="monospace" font-size="13px" stroke-linecap="round">
                  <path d="M 8,368 L 8,432" fill="none" stroke="black"/>
                  <path d="M 152,368 L 152,432" fill="none" stroke="black"/>
                  <path d="M 184,32 L 184,112" fill="none" stroke="black"/>
                  <path d="M 232,368 L 232,432" fill="none" stroke="black"/>
                  <path d="M 256,144 L 256,336" fill="none" stroke="black"/>
                  <path d="M 288,208 L 288,272" fill="none" stroke="black"/>
                  <path d="M 312,32 L 312,112" fill="none" stroke="black"/>
                  <path d="M 320,304 L 320,336" fill="none" stroke="black"/>
                  <path d="M 368,32 L 368,112" fill="none" stroke="black"/>
                  <path d="M 368,304 L 368,336" fill="none" stroke="black"/>
                  <path d="M 416,144 L 416,176" fill="none" stroke="black"/>
                  <path d="M 416,304 L 416,336" fill="none" stroke="black"/>
                  <path d="M 456,32 L 456,112" fill="none" stroke="black"/>
                  <path d="M 464,304 L 464,336" fill="none" stroke="black"/>
                  <path d="M 480,32 L 480,112" fill="none" stroke="black"/>
                  <path d="M 512,304 L 512,336" fill="none" stroke="black"/>
                  <path d="M 520,144 L 520,176" fill="none" stroke="black"/>
                  <path d="M 536,208 L 536,272" fill="none" stroke="black"/>
                  <path d="M 536,304 L 536,336" fill="none" stroke="black"/>
                  <path d="M 568,32 L 568,112" fill="none" stroke="black"/>
                  <path d="M 568,368 L 568,432" fill="none" stroke="black"/>
                  <path d="M 184,32 L 312,32" fill="none" stroke="black"/>
                  <path d="M 368,32 L 456,32" fill="none" stroke="black"/>
                  <path d="M 480,32 L 568,32" fill="none" stroke="black"/>
                  <path d="M 184,112 L 312,112" fill="none" stroke="black"/>
                  <path d="M 368,112 L 456,112" fill="none" stroke="black"/>
                  <path d="M 480,112 L 568,112" fill="none" stroke="black"/>
                  <path d="M 288,208 L 536,208" fill="none" stroke="black"/>
                  <path d="M 288,272 L 536,272" fill="none" stroke="black"/>
                  <path d="M 8,368 L 152,368" fill="none" stroke="black"/>
                  <path d="M 232,368 L 568,368" fill="none" stroke="black"/>
                  <path d="M 168,400 L 216,400" fill="none" stroke="black"/>
                  <path d="M 8,432 L 152,432" fill="none" stroke="black"/>
                  <path d="M 232,432 L 568,432" fill="none" stroke="black"/>
                  <polygon class="arrowhead" points="544,336 532,330.4 532,341.6" fill="black" transform="rotate(90,536,336)"/>
                  <polygon class="arrowhead" points="528,176 516,170.4 516,181.6" fill="black" transform="rotate(90,520,176)"/>
                  <polygon class="arrowhead" points="528,144 516,138.4 516,149.6" fill="black" transform="rotate(270,520,144)"/>
                  <polygon class="arrowhead" points="520,304 508,298.4 508,309.6" fill="black" transform="rotate(270,512,304)"/>
                  <polygon class="arrowhead" points="472,336 460,330.4 460,341.6" fill="black" transform="rotate(90,464,336)"/>
                  <polygon class="arrowhead" points="424,304 412,298.4 412,309.6" fill="black" transform="rotate(270,416,304)"/>
                  <polygon class="arrowhead" points="424,176 412,170.4 412,181.6" fill="black" transform="rotate(90,416,176)"/>
                  <polygon class="arrowhead" points="424,144 412,138.4 412,149.6" fill="black" transform="rotate(270,416,144)"/>
                  <polygon class="arrowhead" points="376,336 364,330.4 364,341.6" fill="black" transform="rotate(90,368,336)"/>
                  <polygon class="arrowhead" points="376,304 364,298.4 364,309.6" fill="black" transform="rotate(270,368,304)"/>
                  <polygon class="arrowhead" points="328,336 316,330.4 316,341.6" fill="black" transform="rotate(90,320,336)"/>
                  <polygon class="arrowhead" points="328,304 316,298.4 316,309.6" fill="black" transform="rotate(270,320,304)"/>
                  <polygon class="arrowhead" points="264,336 252,330.4 252,341.6" fill="black" transform="rotate(90,256,336)"/>
                  <polygon class="arrowhead" points="264,144 252,138.4 252,149.6" fill="black" transform="rotate(270,256,144)"/>
                  <polygon class="arrowhead" points="224,400 212,394.4 212,405.6" fill="black" transform="rotate(0,216,400)"/>
                  <g class="text">
                    <text x="248" y="68">Authorization</text>
                    <text x="408" y="68">Token</text>
                    <text x="524" y="68">Resource</text>
                    <text x="244" y="84">Endpoint</text>
                    <text x="412" y="84">Endpoint</text>
                    <text x="524" y="84">Server</text>
                    <text x="400" y="164">(F)</text>
                    <text x="504" y="164">(K)</text>
                    <text x="336" y="244">Backend</text>
                    <text x="384" y="244">for</text>
                    <text x="436" y="244">Frontend</text>
                    <text x="496" y="244">(BFF)</text>
                    <text x="240" y="260">(D)</text>
                    <text x="296" y="324">(B,I)</text>
                    <text x="352" y="324">(C)</text>
                    <text x="400" y="324">(E)</text>
                    <text x="448" y="324">(G)</text>
                    <text x="496" y="324">(J)</text>
                    <text x="552" y="324">(L)</text>
                    <text x="192" y="388">(A,H)</text>
                    <text x="44" y="404">Static</text>
                    <text x="88" y="404">Web</text>
                    <text x="124" y="404">Host</text>
                    <text x="400" y="404">Browser</text>
                  </g>
                </svg>
              </artwork>
              <artwork type="ascii-art"><![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>
            </artset>
          </figure>
          <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 by calling a "check session" API endpoint (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 triggers a navigation to the BFF (C) to initiate the Authorization Code flow with the PKCE
extension (described in <xref target="pattern-bff-flow"/>), to which the BFF responds by redirecting the browser to the authorization endpoint (D). When the user is redirected back, the browser delivers the authorization code to the BFF (E), where the BFF can then exchange it for tokens at the token endpoint (F) using its client credentials and PKCE code verifier.</t>
          <t>The BFF associates the obtained tokens with the user's session (See <xref target="pattern-bff-sessions"/>) and sets a cookie in the response to keep track of this session (G). At this point, the redirect-based Authorization Code flow has been completed, so the BFF can hand control back to the frontend application. It does so by including a redirect in the response (G), triggering the browser to fetch the frontend from the server (H). Note that step (H) is identical to step (A), which likely means that the requested resources can be loaded from the browser's cache. When the frontend loads, 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="bff_endpoints">
            <name>Session and OAuth Endpoints</name>
            <t>The BFF provides a set of endpoints that are crucial to implement the interactions between the browser-based application and the BFF. This section discusses these endpoints in a bit more detail to clarify their purpose and use cases.</t>
            <t>The "check session" endpoint (Steps B and I in the diagram above) is an API endpoint called by the browser-based application. The request will carry session information when available, allowing the BFF to check for an active session. The response should indicate to the browser-based application whether the session is active. Additionally, the BFF can include other information, such as identity information about the authenticated user.</t>
            <t>The endpoint that initiates the Authorization Code flow (step C) is contacted by the browser through a navigation. When the JavaScript application detects an unauthenticated state after checking the session (step B), it can navigate the browser to this endpoint. Doing so allows the BFF to respond with a redirect, which takes the browser to the authorization server. The endpoint to initiate this flow is typically included as the "login" endpoint by libraries that support OAuth 2.0 for confidential clients running on a web server. Note that it is also possible for the BFF to initiate the Authorization Code flow in step B, when it detects the absence of an active session. In that case, the BFF would return the authorization URI in the response and expect the JavaScript application to trigger a navigation event with this URI. However, this scenario requires a custom implementation and makes it harder to use standard OAuth libraries.</t>
            <t>The endpoint that receives the authorization code (step E) is called by a navigation event from within the browser. At this point, the JavaScript application is not loaded and not in a position to handle the redirect. Similar to the initiation of the flow, the endpoint to handle the redirect is offered by standard OAuth libraries. The BFF can respond to this request with a redirect that triggers the browser to load the  JavaScript application.</t>
            <t>Finally, the BFF can also offer a "logout" endpoint to the JavaScript application, which is not depicted in the diagram above. The exact behavior of the logout endpoint depends on the application requirements. Note that standard OAuth libraries typically also offer an implementation of the "logout" endpoint.</t>
          </section>
          <section anchor="refresh-tokens">
            <name>Refresh Tokens</name>
            <t>When using refresh tokens, as described in Section 4.14 of <xref target="oauth-security-topics"/>, the BFF obtains the refresh token (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 use the refresh token to obtain a fresh access token. Since the BFF OAuth client is a confidential client, it will use client authentication on the refresh token request. Typically, the BFF performs these steps inline when handling an API call from the frontend. In that case, these steps, which are not explicitly shown on the diagram, would occur between step J and K. BFFs that keep all token information available on the server-side can also request fresh access tokens when they observe a token expiration event to increase the performance of API requests.</t>
            <t>When the refresh token expires, there is no way to obtain a valid access token without running an entirely new Authorization Code flow. Therefore, it makes sense to configure the lifetime of the cookie-based session managed by the BFF to be equal to the maximum lifetime of the refresh token. Additionally, when the BFF learns that a refresh token for an active session is no longer valid, it also makes sense to invalidate the session.</t>
          </section>
          <section anchor="pattern-bff-sessions">
            <name>Cookie-based Session Management</name>
            <t>The BFF relies on browser cookies (<xref target="draft-ietf-httpbis-rfc6265bis"/>) 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 expose only a session identifier and keep all data on the server. Doing so ensures a great level of control over active sessions, along with the possibility to revoke any session at will. The downside of this approach is the impact on scalability, requiring solutions such as "sticky sessions", or "session replication". Given these downsides, using server-side sessions with a BFF is only recommended in small-scale scenarios.</t>
            <t>Client-side sessions push all data to the browser in a signed, and optionally encrypted, object. This pattern absolves the server of keeping track of any session data, but severely limits control over active sessions and makes it difficult to handle session revocation. However, when client-side sessions are used in the context of a BFF, these properties change significantly. Since the cookie-based session is only used to obtain a user's tokens, all control and revocation properties follow from the use of access tokens and refresh tokens. It suffices to revoke the user's access token and/or refresh token to prevent ongoing access to protected resources, without the need to explicitly invalidate the cookie-based session.</t>
            <t>Best practices to secure the session cookie are discussed in <xref target="pattern-bff-cookie-security"/>.</t>
          </section>
          <section anchor="pattern-bff-oidc">
            <name>Combining OAuth and OpenID Connect</name>
            <t>The OAuth flow used by this application architecture can be combined with OpenID Connect by including the necessary OpenID Connect scopes in the authorization request (C). In that case, the BFF will receive an ID Token in step F. The BFF can associate the information from the ID Token with the user's session and provide it to the JavaScript application in step B or I.</t>
            <t>When needed, the BFF can use the access token associated with the user's session to make requests to the UserInfo endpoint.</t>
          </section>
          <section anchor="practical-deployment-scenarios">
            <name>Practical Deployment Scenarios</name>
            <t>Serving the static JavaScript code is a separate responsibility from handling OAuth tokens and proxying requests. In the diagram presented above, the BFF and static web host are shown as two separate entities. In real-world deployment scenarios, these components can be deployed as a single service (i.e., the BFF serving the static JS code), as two separate services (i.e., a CDN and a BFF), or as two components in a single service (i.e., static hosting and serverless functions on a cloud platform).</t>
            <t>Note that it is possible to further customize this architecture to tailor to specific scenarios. For example, an application relying on both internal and external resource servers can choose to host the internal resource server alongside the BFF. In that scenario, requests to the internal resource server are handled directly at the BFF, without the need to proxy requests over the network. Authorization from the point of view of the resource server does not change, as the user's session is internally translated to the access token and its claims.</t>
          </section>
        </section>
        <section anchor="security-considerations">
          <name>Security Considerations</name>
          <section anchor="pattern-bff-flow">
            <name>The Authorization Code Grant</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 MUST use the OAuth 2.0 Authorization Code grant as described by Section 2.1.1 of <xref target="oauth-security-topics"/> to initiate a request for an access token.</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>In a typical BFF deployment scenario, there is no reason to use more relaxed cookie security settings. Deviating from these settings requires proper motivation for the deployment scenario at hand.</t>
            <t>Additionally, when using client-side sessions that contain access tokens, (as opposed to server-side sessions where the tokens only live on the server), the BFF SHOULD encrypt its cookie contents. This ensures that tokens stored in cookies are never written to the user's hard drive in plaintext format. This security measure helps ensure the  confidentiality of the tokens in case an attacker is able to read cookies from the hard drive. Such an attack can be launched through malware running on the victim's computer. Note that while encrypting the cookie contents prevents direct access to embedded tokens, it still allows the attacker to use the encrypted cookie in a session hijacking attack.</t>
            <t>For further guidance on cookie security best practices, we refer to the OWASP Cheat Sheet series (<eref target="https://cheatsheetseries.owasp.org">https://cheatsheetseries.owasp.org</eref>).</t>
          </section>
          <section anchor="pattern-bff-csrf">
            <name>Cross-Site Request Forgery Protections</name>
            <t>The interactions between the JavaScript application and the BFF rely on cookies for authentication and authorization. Similar to other cookie-based interactions, the BFF is required to account for Cross-Site Request Forgery (CSRF) attacks.</t>
            <t>The BFF MUST implement a proper CSRF defense. The exact mechanism or combination of mechanisms depends on the exact domain where the BFF is deployed, as discussed below.</t>
            <section anchor="samesite-cookie-attribute">
              <name>SameSite Cookie Attribute</name>
              <t>Configuring the cookies with the <em>SameSite=Strict</em> attribute (See <xref target="pattern-bff-cookie-security"/>) ensures that the BFF's cookies are only included on same-site requests, and not on potentially malicious cross-site requests.</t>
              <t>This defense is adequate if the BFF is never considered to be same-site with any other applications. However, it falls short when the BFF is hosted alongside other applications within the same site, defined as the eTLD+1 (See this definition of <xref target="Site"/> for more details).</t>
              <t>For example, subdomains, such as  <tt>https://a.example.com</tt> and <tt>https://b.example.com</tt>, are considered same-site, since they share the same site <tt>example.com</tt>. They are considered cross-origin, since origins consist of the tuple <em>&lt;scheme, hostname, port&gt;</em>. As a result, a subdomain takeover attack against <tt>b.example.com</tt> can enable CSRF attacks against the BFF of <tt>a.example.com</tt>. Note that these subdomain-based attacks follow the same pattern as CSRF attacks, but with cross-origin nature instead of a cross-site nature.</t>
            </section>
            <section anchor="cors">
              <name>Cross-Origin Resource Sharing</name>
              <t>The BFF can rely on CORS as a CSRF defense mechanism. CORS is a security mechanism implemented by browsers that restricts cross-origin JavaScript-based requests, unless the server explicitly approves such a request by setting the proper CORS headers.</t>
              <t>Browsers typically restrict cross-origin HTTP requests initiated from scripts. CORS can remove this restriction if the target server approves the request, which is checked through an initial "preflight" request. Unless the preflight response explicitly approves the request, the browser will refuse to send the full request.</t>
              <t>Because of this property, the BFF can rely on CORS as a CSRF defense. When the attacker tries to launch a cross-origin request to the BFF from the user's browser, the BFF will not approve the request in the preflight response, causing the browser to block the actual request. Note that the attacker can always launch the request from their own machine, but then the request will not carry the user's cookies, so the attack will fail.</t>
              <t>When relying on CORS as a CSRF defense, it is important to realize that certain requests are possible without a preflight. For such requests, named "CORS-safelisted Requests", the browser will simply send the request and prevent access to the response if the server did not send the proper CORS headers. This behavior is enforced for requests that can be triggered via other means than JavaScript, such as a GET request or a form-based POST request.</t>
              <t>The consequence of this behavior is that certain endpoints of the resource server could become vulnerable to CSRF, even with CORS enabled as a defense. For example, if the resource server is an API that exposes an endpoint to a body-less POST request, there will be no preflight request and no CSRF defense.</t>
              <t>To avoid such bypasses against the CORS policy, the BFF SHOULD require that the JavaScript application includes a custom request header. Cross-origin requests with a custom request header always require a preflight, which makes CORS an effective CSRF defense. When this mechanism is used, the BFF MUST ensure that every incoming request carries this static header. The exact naming of this header is at the discretion of the JavaScript application and BFF. A sample configuration would be a request header with a static value, such as <tt>My-Static-Header: 1</tt>.</t>
              <t>It is also possible to deploy the JavaScript application on the same origin as the BFF. This ensures that legitimate interactions between the frontend and the BFF do not require any preflights, so there's no additional overhead.</t>
            </section>
            <section anchor="use-anti-forgerydouble-submit-cookies">
              <name>Use anti-forgery/double submit cookies</name>
              <t>Some technology stacks and frameworks have built-in CRSF protection using anti-forgery cookies. This mechanism relies on a session-specific secret that is stored in a cookie, which can only be read by the legitimate frontend running in the domain associated with the cookie. The frontend is expected to read the cookie and insert its value into the request, typically by adding a custom request header. The backend verifies the value in the cookie to the value provided by the frontend to identify legitimate requests. When implemented correctly for all state changing requests, this mechanism effectively mitigates CSRF.</t>
              <t>Note that this mechanism is not necessarily recommended over the CORS approach. However, if a framework offers built-in support for this mechanism, it can serve as a low-effort alternative to protect against CSRF.</t>
            </section>
            <section anchor="privacy-considerations-in-the-bff-architecture">
              <name>Privacy considerations in the BFF architecture</name>
              <t>The BFF pattern requires that the JavaScript application proxies all requests to a resource server through a backend BFF component. As a consequence, the BFF component is able to observe all requests and responses between a JavaScript application and a resource server, which can have a considerable privacy impact.</t>
              <t>When the JavaScript application and BFF are built and deployed by the same party, the privacy impact is likely minimal. However, when this pattern is implemented using a BFF component that is provided or hosted by a third-party, this privacy impact needs to be taken into account.</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 run in a more controlled environment 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 attack scenarios and consequences from <xref target="threats"/>, and discusses potential additional defenses.</t>
          <section anchor="attack-scenarios-and-consequences">
            <name>Attack Scenarios and Consequences</name>
            <t>If the attacker has the ability to execute malicious JavaScript code in the application's execution context, the following attack scenarios become relevant:</t>
            <ul spacing="normal">
              <li>
                <t>Proxying Requests via the User's Browser (<xref target="scenario-proxy"/>)</t>
              </li>
            </ul>
            <t>Note that this attack scenario results in the following consequences:</t>
            <ul spacing="normal">
              <li>
                <t>Client Hijacking (<xref target="consequence-hijack"/>)</t>
              </li>
            </ul>
            <t>Note that 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>In this architecture, the BFF is a key component handling various security-specific responsibilities and proxy-based behavior. While it is out of scope for this document to discuss a secure implementation of proxy-based applications, it is crucial to note that security vulnerabilities in the BFF can have a significant impact on the application.</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 attack scenarios, listed below, are effectively mitigated by the BFF application architecture:</t>
            <ul spacing="normal">
              <li>
                <t>Single-Execution Token Theft (<xref target="scenario-single-theft"/>)</t>
              </li>
              <li>
                <t>Persistent Token Theft (<xref target="scenario-persistent-theft"/>)</t>
              </li>
              <li>
                <t>Acquisition and Extraction of New Tokens (<xref target="scenario-new-flow"/>)</t>
              </li>
            </ul>
            <t>The BFF counters the first two attack scenarios 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>Since refresh and access tokens are managed by the BFF and not exposed to the browser, 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>The architecture of a BFF is significantly more complicated than a browser-only application. It requires deploying and operating a server-side BFF component. Additionally, this pattern requires all interactions between the JavaScript application and the resource servers to be proxied by the BFF. Depending on the deployment pattern, this proxy behavior can add a significant burden on the server-side components. See <xref target="practical-deployment-scenarios"/> for additional notes if the BFF is acting as the resource server.</t>
            <t>However, because of the nature of the BFF architecture pattern, it offers strong security guarantees. Using a BFF also ensures that the application's attack surface does not increase by using OAuth. The only viable attack pattern is hijacking the client application in the user's browser, a problem inherent to web applications.</t>
            <t>This architecture is strongly recommended for business applications, sensitive applications, and applications that handle personal data.</t>
          </section>
        </section>
      </section>
      <section anchor="pattern-tmb">
        <name>Token-Mediating Backend</name>
        <t>This section describes the architecture of a JavaScript application that relies on a backend component to handle OAuth responsibilities for obtaining tokens as a confidential client. The backend component then provides the JavaScript application with 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 and responses between the JavaScript application and the resource server. 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 (Single-Execution Token Theft (<xref target="scenario-single-theft"/>) and Persistent Token Theft (<xref target="scenario-persistent-theft"/>)) or obtaining a fresh set of tokens (Acquisition and Extraction of New Tokens (<xref target="scenario-new-flow"/>)). However, since the access token is directly exposed to the JavaScript application, the attacker can steal the token from client-side storage (Single-Execution Token Theft (<xref target="scenario-single-theft"/>) and Persistent Token Theft (<xref target="scenario-persistent-theft"/>)), or request a fresh token from the token-mediating backend (Proxying Requests via the User's Browser (<xref target="scenario-proxy"/>)). Note that the use of HttpOnly cookies prevents the attacker from directly accessing the session state, which prevents the escalation from access token theft to session hijacking.</t>
        <section anchor="application-architecture-1">
          <name>Application Architecture</name>
          <figure anchor="fig-bbapp-pattern-tmb">
            <name>OAuth 2.0 TMB Pattern</name>
            <artset>
              <artwork type="svg"><svg xmlns="http://www.w3.org/2000/svg" version="1.1" height="448" width="576" viewBox="0 0 576 448" class="diagram" text-anchor="middle" font-family="monospace" font-size="13px" stroke-linecap="round">
                  <path d="M 8,368 L 8,432" fill="none" stroke="black"/>
                  <path d="M 152,368 L 152,432" fill="none" stroke="black"/>
                  <path d="M 184,32 L 184,112" fill="none" stroke="black"/>
                  <path d="M 232,368 L 232,432" fill="none" stroke="black"/>
                  <path d="M 256,144 L 256,336" fill="none" stroke="black"/>
                  <path d="M 288,208 L 288,272" fill="none" stroke="black"/>
                  <path d="M 312,32 L 312,112" fill="none" stroke="black"/>
                  <path d="M 320,304 L 320,336" fill="none" stroke="black"/>
                  <path d="M 368,32 L 368,112" fill="none" stroke="black"/>
                  <path d="M 368,304 L 368,336" fill="none" stroke="black"/>
                  <path d="M 416,144 L 416,176" fill="none" stroke="black"/>
                  <path d="M 416,304 L 416,336" fill="none" stroke="black"/>
                  <path d="M 456,32 L 456,112" fill="none" stroke="black"/>
                  <path d="M 464,304 L 464,336" fill="none" stroke="black"/>
                  <path d="M 480,32 L 480,112" fill="none" stroke="black"/>
                  <path d="M 512,208 L 512,272" fill="none" stroke="black"/>
                  <path d="M 536,144 L 536,336" fill="none" stroke="black"/>
                  <path d="M 568,32 L 568,112" fill="none" stroke="black"/>
                  <path d="M 568,368 L 568,432" fill="none" stroke="black"/>
                  <path d="M 184,32 L 312,32" fill="none" stroke="black"/>
                  <path d="M 368,32 L 456,32" fill="none" stroke="black"/>
                  <path d="M 480,32 L 568,32" fill="none" stroke="black"/>
                  <path d="M 184,112 L 312,112" fill="none" stroke="black"/>
                  <path d="M 368,112 L 456,112" fill="none" stroke="black"/>
                  <path d="M 480,112 L 568,112" fill="none" stroke="black"/>
                  <path d="M 288,208 L 512,208" fill="none" stroke="black"/>
                  <path d="M 288,272 L 512,272" fill="none" stroke="black"/>
                  <path d="M 8,368 L 152,368" fill="none" stroke="black"/>
                  <path d="M 232,368 L 568,368" fill="none" stroke="black"/>
                  <path d="M 168,400 L 216,400" fill="none" stroke="black"/>
                  <path d="M 8,432 L 152,432" fill="none" stroke="black"/>
                  <path d="M 232,432 L 568,432" fill="none" stroke="black"/>
                  <polygon class="arrowhead" points="544,336 532,330.4 532,341.6" fill="black" transform="rotate(90,536,336)"/>
                  <polygon class="arrowhead" points="544,144 532,138.4 532,149.6" fill="black" transform="rotate(270,536,144)"/>
                  <polygon class="arrowhead" points="472,336 460,330.4 460,341.6" fill="black" transform="rotate(90,464,336)"/>
                  <polygon class="arrowhead" points="424,304 412,298.4 412,309.6" fill="black" transform="rotate(270,416,304)"/>
                  <polygon class="arrowhead" points="424,176 412,170.4 412,181.6" fill="black" transform="rotate(90,416,176)"/>
                  <polygon class="arrowhead" points="424,144 412,138.4 412,149.6" fill="black" transform="rotate(270,416,144)"/>
                  <polygon class="arrowhead" points="376,336 364,330.4 364,341.6" fill="black" transform="rotate(90,368,336)"/>
                  <polygon class="arrowhead" points="376,304 364,298.4 364,309.6" fill="black" transform="rotate(270,368,304)"/>
                  <polygon class="arrowhead" points="328,336 316,330.4 316,341.6" fill="black" transform="rotate(90,320,336)"/>
                  <polygon class="arrowhead" points="328,304 316,298.4 316,309.6" fill="black" transform="rotate(270,320,304)"/>
                  <polygon class="arrowhead" points="264,336 252,330.4 252,341.6" fill="black" transform="rotate(90,256,336)"/>
                  <polygon class="arrowhead" points="264,144 252,138.4 252,149.6" fill="black" transform="rotate(270,256,144)"/>
                  <polygon class="arrowhead" points="224,400 212,394.4 212,405.6" fill="black" transform="rotate(0,216,400)"/>
                  <g class="text">
                    <text x="248" y="68">Authorization</text>
                    <text x="408" y="68">Token</text>
                    <text x="524" y="68">Resource</text>
                    <text x="244" y="84">Endpoint</text>
                    <text x="412" y="84">Endpoint</text>
                    <text x="524" y="84">Server</text>
                    <text x="400" y="164">(F)</text>
                    <text x="368" y="244">Token-Mediating</text>
                    <text x="464" y="244">Backend</text>
                    <text x="552" y="244">(J)</text>
                    <text x="240" y="260">(D)</text>
                    <text x="296" y="324">(B,I)</text>
                    <text x="352" y="324">(C)</text>
                    <text x="400" y="324">(E)</text>
                    <text x="448" y="324">(G)</text>
                    <text x="192" y="388">(A,H)</text>
                    <text x="44" y="404">Static</text>
                    <text x="88" y="404">Web</text>
                    <text x="124" y="404">Host</text>
                    <text x="400" y="404">Browser</text>
                  </g>
                </svg>
              </artwork>
              <artwork type="ascii-art"><![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>
            </artset>
          </figure>
          <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 triggers a navigation to the token-mediating backend (C) to initiate the Authorization Code flow with the PKCE extension (described in <xref target="pattern-tmb-flow"/>), to which the token-mediating backend responds by redirecting the browser to the authorization endpoint (D). When the user is redirected back, the browser delivers the authorization code to the token-mediating backend (E), where the token-mediating backend can then exchange it for tokens at the token endpoint (F) using its client credentials and PKCE code verifier.</t>
          <t>The token-mediating backend associates the obtained tokens with the user's session (See <xref target="pattern-tmb-sessions"/>) and sets a cookie in the response to keep track of this session (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>
        </section>
        <section anchor="implementation-details-1">
          <name>Implementation Details</name>
          <section anchor="session-and-oauth-endpoints">
            <name>Session and OAuth Endpoints</name>
            <t>Most of the endpoint implementations of the token-mediating backend are similar to those described for a BFF.</t>
            <ul spacing="normal">
              <li>
                <t>The "check session" endpoint (Steps B and I in the diagram above) is an API endpoint called by the browser-based application. The request will carry session information when available, allowing the backend to check for an active session. The response should indicate to the browser-based application whether the session is active. If an active session is found, the backend includes the access token in the response. Additionally, the backend can include other information, such as identity information about the authenticated user.</t>
              </li>
              <li>
                <t>The endpoint that initiates the Authorization Code flow (step C) is identical to the endpoint described for the BFF architecture. See section <xref target="bff_endpoints"/> for more details.</t>
              </li>
              <li>
                <t>The endpoint that receives the authorization code (step E) is identical to the endpoint described for the BFF architecture. See section <xref target="bff_endpoints"/> for more details.</t>
              </li>
              <li>
                <t>The endpoint that supports logout is identical to the endpoint described for the BFF architecture. See section <xref target="bff_endpoints"/> for more details.</t>
              </li>
            </ul>
          </section>
          <section anchor="refresh-tokens-1">
            <name>Refresh Tokens</name>
            <t>When using refresh tokens, as described in Section 4.14 of <xref target="oauth-security-topics"/>, the token-mediating backend obtains the refresh token in step F and associates it with the user's session.</t>
            <t>If the resource server rejects the access token, the JavaScript application can contact the token-mediating backend to request a new access token. The token-mediating backend relies on the cookies associated with this request to look up the user's refresh token, and makes a token request using the refresh token. These steps are not shown in the diagram. Note that this Refresh Token request is from the backend, a confidential client, thus requires client authentication.</t>
            <t>When the refresh token expires, there is no way to obtain a valid access token without starting an entirely new Authorization Code grant. Therefore, it makes sense to configure the lifetime of the cookie-based session to be equal to the maximum lifetime of the refresh token if such information is known upfront. Additionally, when the token-mediating backend learns that a refresh token for an active session is no longer valid, it makes sense 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 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, but may impact other practicalities, such as the need to properly configure CORS to enable cross-origin communication.</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 MUST use the OAuth 2.0 Authorization Code grant as described by Section 2.1.1 of <xref target="oauth-security-topics"/> to initiate a request for an access token.</t>
          </section>
          <section anchor="pattern-bmf-cookie-security">
            <name>Cookie Security</name>
            <t>The token-mediating backend uses cookies to create a user session, which is directly associated with the user's tokens, either through server-side or client-side session state. The same cookie security guidelines as for a BFF apply, as discussed in <xref target="pattern-bff-cookie-security"/>.</t>
          </section>
          <section anchor="pattern-bmf-csrf">
            <name>Cross-Site Request Forgery Protections</name>
            <t>The interactions between the JavaScript application and the token-mediating backend rely on cookies for authentication and authorization. Just like a BFF, the token-mediating backend is required to account for Cross-Site Request Forgery (CSRF) attacks.</t>
            <t><xref target="pattern-bff-csrf"/> outlines the nuances of various mitigation strategies against CSRF attacks. Specifically for a token-mediating backend, these CSRF defenses only apply to the endpoint or endpoints where the JavaScript application can obtain its access tokens.</t>
          </section>
          <section anchor="advanced-oauth-security">
            <name>Advanced OAuth Security</name>
            <t>The token-mediating backend is a confidential client running as a server-side component. The token-mediating backend can adopt security best practices for confidential clients, such as key-based client authentication.</t>
          </section>
        </section>
        <section anchor="threat-analysis-1">
          <name>Threat Analysis</name>
          <t>This section revisits the attack scenarios and consequences from <xref target="threats"/>, and discusses potential additional defenses.</t>
          <section anchor="attack-scenarios-and-consequences-1">
            <name>Attack Scenarios and Consequences</name>
            <t>If the attacker has the ability to execute malicious JavaScript code in the application's execution context, the following attack scenarios become relevant:</t>
            <ul spacing="normal">
              <li>
                <t>Single-Execution Token Theft (<xref target="scenario-single-theft"/>) for access tokens</t>
              </li>
              <li>
                <t>Persistent Token Theft (<xref target="scenario-persistent-theft"/>) for access tokens</t>
              </li>
              <li>
                <t>Proxying Requests via the User's Browser (<xref target="scenario-proxy"/>)</t>
              </li>
            </ul>
            <t>Note that these attack scenarios result in the following consequences:</t>
            <ul spacing="normal">
              <li>
                <t>Exploiting Stolen Access Tokens (<xref target="consequence-at"/>)</t>
              </li>
              <li>
                <t>Client Hijacking (<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 attack scenarios, listed below, are effectively mitigated by the token-mediating backend:</t>
            <ul spacing="normal">
              <li>
                <t>Single-Execution Token Theft (<xref target="scenario-single-theft"/>) for refresh tokens</t>
              </li>
              <li>
                <t>Persistent Token Theft (<xref target="scenario-persistent-theft"/>) for refresh tokens</t>
              </li>
              <li>
                <t>Acquisition and Extraction of New Tokens (<xref target="scenario-new-flow"/>)</t>
              </li>
            </ul>
            <t>The token-mediating backend counters the first two attack scenarios by not exposing the refresh token to the browser-based application. Even when the attacker gains full control over the JavaScript application, there are simply no refresh tokens to be stolen.</t>
            <t>The third scenario, where the attacker obtains a fresh set of tokens by running a silent flow, is mitigated by making the token-mediating backend a confidential client. Even when the attacker manages to obtain an authorization code, they are prevented from exchanging this code due to the lack of client credentials.  Additionally, the use of PKCE prevents other attacks against the authorization code.</t>
            <t>Because of the nature of the token-mediating backend, the following consequences of potential attacks become irrelevant:</t>
            <ul spacing="normal">
              <li>
                <t>Exploiting Stolen Refresh Tokens (See <xref target="consequence-rt"/>)</t>
              </li>
            </ul>
          </section>
          <section anchor="additional-defenses">
            <name>Additional Defenses</name>
            <t>While this architecture inherently exposes access tokens, there are some additional defenses that can help to increase the security posture of the application.</t>
            <section anchor="secure-token-storage">
              <name>Secure Token Storage</name>
              <t>Given the nature of the token-mediating backend pattern, there is no need for persistent token storage in the browser. When needed, the application can always use its cookie-based session to obtain an access token from the token-mediating backend. <xref target="token-storage"/> provides more details on the security properties of various storage mechanisms in the browser.</t>
              <t>Be aware that even when the access token is stored out of reach of malicious JavaScript code, the malicious code can still mimic the legitimate application and send a request to the token-mediation backend to obtain the latest access token.</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 DPoP <xref target="RFC9449"/> would require splitting responsibilities over two parties, which is not a scenario defined by the specification. Use of DPoP in such a scenario is out of scope for this document.</t>
            </section>
          </section>
          <section anchor="summary-1">
            <name>Summary</name>
            <t>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 evaluate if adopting a full BFF as discussed in <xref target="pattern-bff"/> is a viable alternative. Only when the use cases or system requirements would prevent the use of a proxying BFF should the token-mediating backend be considered over a full BFF.</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 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 attack scenarios discussed earlier (<xref target="attackscenarios"/>). 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>
          <figure anchor="fig-bbapp-pattern-standalone">
            <name>Browser-based OAuth 2.0 Client Pattern</name>
            <artset>
              <artwork type="svg"><svg xmlns="http://www.w3.org/2000/svg" version="1.1" height="336" width="520" viewBox="0 0 520 336" class="diagram" text-anchor="middle" font-family="monospace" font-size="13px" stroke-linecap="round">
                  <path d="M 8,256 L 8,320" fill="none" stroke="black"/>
                  <path d="M 152,256 L 152,320" fill="none" stroke="black"/>
                  <path d="M 184,32 L 184,112" fill="none" stroke="black"/>
                  <path d="M 232,256 L 232,320" fill="none" stroke="black"/>
                  <path d="M 240,144 L 240,224" fill="none" stroke="black"/>
                  <path d="M 288,144 L 288,224" fill="none" stroke="black"/>
                  <path d="M 312,32 L 312,112" fill="none" stroke="black"/>
                  <path d="M 392,32 L 392,112" fill="none" stroke="black"/>
                  <path d="M 432,144 L 432,224" fill="none" stroke="black"/>
                  <path d="M 480,144 L 480,224" fill="none" stroke="black"/>
                  <path d="M 488,256 L 488,320" fill="none" stroke="black"/>
                  <path d="M 512,32 L 512,112" fill="none" stroke="black"/>
                  <path d="M 184,32 L 312,32" fill="none" stroke="black"/>
                  <path d="M 392,32 L 512,32" fill="none" stroke="black"/>
                  <path d="M 184,112 L 312,112" fill="none" stroke="black"/>
                  <path d="M 392,112 L 512,112" fill="none" stroke="black"/>
                  <path d="M 8,256 L 152,256" fill="none" stroke="black"/>
                  <path d="M 232,256 L 488,256" fill="none" stroke="black"/>
                  <path d="M 168,288 L 216,288" fill="none" stroke="black"/>
                  <path d="M 8,320 L 152,320" fill="none" stroke="black"/>
                  <path d="M 232,320 L 488,320" fill="none" stroke="black"/>
                  <polygon class="arrowhead" points="488,224 476,218.4 476,229.6" fill="black" transform="rotate(90,480,224)"/>
                  <polygon class="arrowhead" points="440,144 428,138.4 428,149.6" fill="black" transform="rotate(270,432,144)"/>
                  <polygon class="arrowhead" points="296,224 284,218.4 284,229.6" fill="black" transform="rotate(90,288,224)"/>
                  <polygon class="arrowhead" points="296,144 284,138.4 284,149.6" fill="black" transform="rotate(270,288,144)"/>
                  <polygon class="arrowhead" points="248,144 236,138.4 236,149.6" fill="black" transform="rotate(270,240,144)"/>
                  <polygon class="arrowhead" points="224,288 212,282.4 212,293.6" fill="black" transform="rotate(0,216,288)"/>
                  <g class="text">
                    <text x="248" y="68">Authorization</text>
                    <text x="452" y="68">Resource</text>
                    <text x="244" y="84">Server</text>
                    <text x="452" y="84">Server</text>
                    <text x="256" y="180">(B)</text>
                    <text x="304" y="180">(C)</text>
                    <text x="448" y="180">(D)</text>
                    <text x="496" y="180">(E)</text>
                    <text x="192" y="276">(A)</text>
                    <text x="44" y="292">Static</text>
                    <text x="88" y="292">Web</text>
                    <text x="124" y="292">Host</text>
                    <text x="352" y="292">Browser</text>
                  </g>
                </svg>
              </artwork>
              <artwork type="ascii-art"><![CDATA[
                      +---------------+         +--------------+
                      |               |         |              |
                      | Authorization |         |   Resource   |
                      |    Server     |         |    Server    |
                      |               |         |              |
                      +---------------+         +--------------+

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

+-----------------+         +-------------------------------+
|                 |   (A)   |                               |
| Static Web Host | +-----> |           Browser             |
|                 |         |                               |
+-----------------+         +-------------------------------+
]]></artwork>
            </artset>
          </figure>
          <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. In this scenario, the browser-based application is considered a public
client, which does not possess client credentials to authenticate to the authorization server.</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="implementation-details-2">
          <name>Implementation Details</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>
          <section anchor="pattern-oauth-browser-flow">
            <name>The Authorization Code Grant</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 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>configuring the authorization server to require PKCE for this client</t>
              </li>
              <li>
                <t>using and verifying unique value for the OAuth <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 on selecting a proper CSRF defense for the Authorization Code flow.</t>
          </section>
          <section anchor="pattern-oauth-browser-rt">
            <name>Refresh Tokens</name>
            <t>For browser-based clients, the refresh token is typically a bearer token, unless the application explicitly uses DPoP <xref target="RFC9449"/>. 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>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>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-initiate an Authorization Code flow that relies on the user's authentication or previously established session</t>
              </li>
            </ul>
            <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>
        <section anchor="security-considerations-2">
          <name>Security Considerations</name>
          <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 is unfit to contain provisioned secrets. As a consequence, browser-based applications are typically deployed as public clients 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"/>, authorization
servers MUST NOT require client authentication of browser-based
applications using a shared secret, as this serves no value beyond
client identification which is already provided by the <tt>client_id</tt> parameter.</t>
            <t>Authorization servers that still require a statically included shared
secret for SPA clients MUST treat the client as a public
client, and not accept the secret as proof of the client's identity. Without
additional measures, such clients are subject to client impersonation
(see <xref target="client_impersonation"/> below).</t>
          </section>
          <section anchor="client_impersonation">
            <name>Client Impersonation</name>
            <t>As stated in Section 10.2 of OAuth 2.0 <xref target="RFC6749"/>, the authorization
server SHOULD NOT process authorization requests automatically
without user consent or interaction, except when the identity of the
client can be assured.</t>
            <t>If authorization servers restrict redirect URIs to a fixed set of absolute
HTTPS URIs, preventing the use of wildcard domains, wildcard paths, or wildcard query string components,
this exact match of registered absolute HTTPS URIs MAY be accepted by authorization servers as
proof of identity of the client for the purpose of deciding whether to automatically
process an authorization request when a previous request for the client_id
has already been approved.</t>
            <section anchor="auth_code_redirect">
              <name>Authorization Code Redirect</name>
              <t>Clients MUST register one or more redirect URIs with the authorization server, and use only exact registered redirect URIs in the authorization request.</t>
              <t>Authorization servers MUST require an exact match of a registered redirect URI
as described in <xref target="oauth-security-topics"/> Section 4.1.1. This helps to prevent attacks targeting the authorization code.</t>
            </section>
          </section>
          <section anchor="in_browser_communication_security">
            <name>Security of In-Browser Communication Flows</name>
            <t>In browser-based applications, it is common to execute the OAuth flow in a secondary window, such as a popup or iframe, instead of redirecting the primary window.
In these flows, the browser-based app holds control of the primary window, for instance, to avoid page refreshes or to run frame-based flows silently.</t>
            <t>If the browser-based app and the authorization server are invoked in different frames, they have to use in-browser communication techniques like the postMessage API (a.k.a. <xref target="WebMessaging"/>) instead of top-level redirections.
To guarantee confidentiality and authenticity of messages, both the initiator origin and receiver origin of a postMessage MUST be verified using the mechanisms inherently provided by the postMessage API (Section 9.3.2 in <xref target="WebMessaging"/>).</t>
            <t>Section 4.18. of <xref target="oauth-security-topics"/> provides additional details about the security of in-browser communication flows and the countermeasures that browser-based applications and authorization servers MUST apply to defend against these attacks.</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 necessary CORS headers (defined in <xref target="Fetch"/>) to enable 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, the CORS configuration is relevant for the token endpoint, where the browser-based application exchanges the authorization code for tokens. Additionally, if the authorization server provides additional endpoints to the application, such as discovery metadata URLs, JSON Web Key Sets, dynamic client registration, revocation, introspection or user info endpoints, these endpoints may also be accessed by the browser-based application. Consequentially, the authorization server is responsible for supporting CORS on these endpoints.</t>
            <t>This specification does not include guidelines for deciding the concrete CORS policy implementation, which can consist of a wildcard origin or a more restrictive configuration. Note that CORS has two modes of operation with different security properties. The first mode applies to CORS-safelisted requests, formerly known as simple requests, where the browser sends the request and uses the CORS response headers to decide if the response can be exposed to the client-side execution context. For non-CORS-safelisted requests, such as a request with a custom request header, the browser will first check the CORS policy using a preflight. The browser will only send the actual request when the server sends their approval in the preflight response.</t>
            <t>Note that due to the authorization server's specific configuration, it is possible that the CORS response to a preflight is different than the CORS response to the actual request. During the preflight, the authorization server can only verify the provided origin, but during an actual request, the authorization server has the full request data, such as the client ID. Consequentially, the authorization server can approve a known origin during the preflight, but reject the actual request after comparing the origin to this specific client's list of pre-registered origins.</t>
          </section>
        </section>
        <section anchor="threat-analysis-2">
          <name>Threat Analysis</name>
          <t>This section revisits the attack scenarios and consequences from <xref target="threats"/>, and discusses potential additional defenses.</t>
          <section anchor="attack-scenarios-and-consequences-2">
            <name>Attack Scenarios and Consequences</name>
            <t>If the attacker has the ability to execute malicious JavaScript code in the application's execution context, the following attack scenarios become relevant:</t>
            <ul spacing="normal">
              <li>
                <t>Single-Execution Token Theft (<xref target="scenario-single-theft"/>)</t>
              </li>
              <li>
                <t>Persistent Token Theft (<xref target="scenario-persistent-theft"/>)</t>
              </li>
              <li>
                <t>Acquisition and Extraction of New Tokens (<xref target="scenario-new-flow"/>)</t>
              </li>
              <li>
                <t>Proxying Requests via the User's Browser (<xref target="scenario-proxy"/>)</t>
              </li>
            </ul>
            <t>The most dangerous attack scenario 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 store access tokens and refresh tokens. Universally accessible storage areas, such as <em>Local Storage</em> (<xref target="WebStorage"/>), are easier to access from malicious JavaScript than highly isolated storage areas, such as a <em>Web Worker</em> (<xref target="WebWorker"/>). <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 <xref target="WebWorker"/> 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="scenario-new-flow"/>).</t>
            </section>
            <section anchor="using-sender-constrained-tokens-1">
              <name>Using Sender-Constrained Tokens</name>
              <t>Browser-based OAuth clients can implement DPoP <xref target="RFC9449"/> to transition from bearer access tokens and bearer refresh tokens to sender-constrained tokens. In such an implementation, the private key used to sign DPoP proofs is handled by the browser (a non-extractable <eref target="https://developer.mozilla.org/en-US/docs/Web/API/CryptoKeyPair">CryptoKeyPair</eref> is stored using IndexedDB (<xref target="indexeddb"/>)). As a result, the use of DPoP effectively prevents scenarios where the attacker exfiltrates the application's tokens (See <xref target="scenario-single-theft"/> and <xref target="scenario-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="scenario-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 exfiltrate the sender-constrained tokens and use them by relying on the attacker-controlled key to calculate the necessary DPoP proofs.</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="scenario-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 attack scenario. However, in practice, such defenses are ineffective or impractical.</t>
              <t>For completeness, this BCP lists a few options below. Note that none of these defenses are recommended, as they do not offer practically usable security benefits.</t>
              <t>The authorization server could block authorization requests that originate from within an iframe. While this would prevent the exact scenario from <xref target="scenario-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 clients typically rely on a hidden iframe-based flow to bootstrap the user's authentication state, so this approach would significantly impact the user experience.</t>
              <t>The authorization server could opt to make user consent mandatory in every Authorization Code flow (as described in Section 10.2 OAuth 2.0 <xref target="RFC6749"/>), thus requiring user interaction before issuing an authorization code. This approach would make it harder for an attacker to run a silent flow to obtain a fresh set of tokens. However, it also significantly impacts the user experience by continuously requiring consent. As a result, this approach would result in "consent fatigue", which makes it likely that the user will blindly approve the consent, even when it is associated with a flow that was initiated by the attacker.</t>
            </section>
          </section>
          <section anchor="summary-2">
            <name>Summary</name>
            <t>To summarize, the architecture of a browser-based OAuth 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 a general 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 scenarios and consequences when relevant.</t>
      <section anchor="single-domain-browser-based-applications-not-using-oauth">
        <name>Single-Domain Browser-Based Applications (not using OAuth)</name>
        <t>Too often, simple applications are made needlessly complex by using OAuth to replace the concept of session management. A typical example is the modern incarnation of a server-side MVC application, which now consists of a browser-based frontend backed by a server-side API.</t>
        <t>In such an application, the use of OpenID connect to offload user authentication to a dedicated provider can significantly simplify the application's architecture and development. However, the use of OAuth for governing access between the frontend and the backend is often not needed. Instead of using access tokens, the application can rely on traditional cookie-based session management to keep track of the user's authentication status. The security guidelines to protect the session cookie are discussed in <xref target="pattern-bff-cookie-security"/>.</t>
        <t>While the advice to not use OAuth seems out-of-place in this document, it is important to note that OAuth was originally created for third-party or federated access to APIs, so it may not be the best solution in a single common-domain deployment. That said, there are still some advantages in using OAuth even in a common-domain architecture:</t>
        <ul spacing="normal">
          <li>
            <t>Allows more flexibility in the future, such as if you were to later add a new domain to the system. With OAuth already in place, adding a new domain wouldn't require any additional rearchitecting.</t>
          </li>
          <li>
            <t>Being able to take advantage of existing library support rather than writing bespoke code for the integration.</t>
          </li>
          <li>
            <t>Centralizing login and multi-factor authentication support, account management, and recovery at the OAuth server, rather than making it part of the application logic.</t>
          </li>
          <li>
            <t>Splitting of responsibilities between authenticating a user and serving resources</t>
          </li>
        </ul>
        <t>Using OAuth for browser-based applications 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 scenarios: Proxying Requests via the User's Browser (<xref target="scenario-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 Grant</name>
        <t>The OAuth 2.0 Implicit grant type (defined in Section 4.2 of
OAuth 2.0 <xref target="RFC6749"/>) works by the authorization server issuing an access token in the
authorization response (front channel) without an authorization code exchange step. In this case, the access
token is returned in the fragment part of the redirect URI, providing an attacker
with several opportunities to intercept and steal the access token.</t>
        <t>The security properties of the Implicit grant type make it no longer a recommended best practice. To effectively prevent the use of this flow, the authorization server 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 grant type and MUST NOT use the Implicit grant type to obtain access tokens.</t>
        <section anchor="historic-note">
          <name>Historic Note</name>
          <t>Historically, the Implicit grant type provided an advantage to browser-based applications 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
CORS was widespread in browsers, the Implicit grant type
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 applications for many purposes. This means modern browser-based applications can
use the OAuth 2.0 Authorization Code grant type with PKCE, since they have the ability to
remove the authorization code from the query string without triggering a page reload
thanks to the Session History API, and CORS support at the token endpoint means the
app can obtain tokens even if the authorization server is on a different domain.</t>
        </section>
        <section anchor="threat-analysis-4">
          <name>Threat Analysis</name>
          <t>The architecture pattern discussed in this section is vulnerable to the following attack scenarios:</t>
          <ul spacing="normal">
            <li>
              <t>Single-Execution Token Theft <xref target="scenario-single-theft"/></t>
            </li>
            <li>
              <t>Persistent Token Theft <xref target="scenario-persistent-theft"/></t>
            </li>
            <li>
              <t>Acquisition and Extraction of New Tokens <xref target="scenario-new-flow"/></t>
            </li>
            <li>
              <t>Proxying Requests via the User's Browser <xref target="scenario-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-grant">
          <name>Further Attacks on the Implicit Grant</name>
          <t>Apart from the attack scenarios and consequences that were already discussed, there are a few additional attacks that further support the deprecation of the Implicit grant type. Many attacks on the Implicit grant type 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 grant type.</t>
          <section anchor="manipulation-of-the-redirect-uri">
            <name>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="access-token-leak-in-browser-history">
            <name>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="manipulation-of-scripts">
            <name>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 applications 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="access-token-leak-to-third-party-scripts">
            <name>Access Token Leak to Third-Party Scripts</name>
            <t>It is relatively common to use third-party scripts in browser-based applications, 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-grant">
          <name>Disadvantages of the Implicit Grant</name>
          <t>There are several additional reasons the Implicit grant type is disadvantageous compared to
using the recommended Authorization Code grant type.</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 grant type requires additional code, more upkeep and
understanding of the related security considerations. Limiting the
authorization server to just the Authorization Code grant type 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 grant type with PKCE anyway.</t>
            </li>
          </ul>
        </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 grant type
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 grant type)
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 Service Worker (<xref target="serviceworker"/>) 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 scenario "Acquisition and Extraction of New Tokens" (<xref target="scenario-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>
        <figure anchor="fig-bbapp-pattern-serviceworker">
          <name>OAuth 2.0 Service Worker Pattern</name>
          <artset>
            <artwork type="svg"><svg xmlns="http://www.w3.org/2000/svg" version="1.1" height="432" width="568" viewBox="0 0 568 432" class="diagram" text-anchor="middle" font-family="monospace" font-size="13px" stroke-linecap="round">
                <path d="M 16,64 L 16,368" fill="none" stroke="black"/>
                <path d="M 120,64 L 120,368" fill="none" stroke="black"/>
                <path d="M 224,64 L 224,368" fill="none" stroke="black"/>
                <path d="M 392,64 L 392,120" fill="none" stroke="black"/>
                <path d="M 392,168 L 392,216" fill="none" stroke="black"/>
                <path d="M 392,248 L 392,368" fill="none" stroke="black"/>
                <path d="M 512,64 L 512,368" fill="none" stroke="black"/>
                <path d="M 24,96 L 112,96" fill="none" stroke="black"/>
                <path d="M 128,112 L 216,112" fill="none" stroke="black"/>
                <path d="M 232,128 L 504,128" fill="none" stroke="black"/>
                <path d="M 232,224 L 504,224" fill="none" stroke="black"/>
                <path d="M 128,304 L 216,304" fill="none" stroke="black"/>
                <path d="M 232,352 L 384,352" fill="none" stroke="black"/>
                <polygon class="arrowhead" points="512,224 500,218.4 500,229.6" fill="black" transform="rotate(0,504,224)"/>
                <polygon class="arrowhead" points="512,128 500,122.4 500,133.6" fill="black" transform="rotate(0,504,128)"/>
                <polygon class="arrowhead" points="392,352 380,346.4 380,357.6" fill="black" transform="rotate(0,384,352)"/>
                <polygon class="arrowhead" points="224,304 212,298.4 212,309.6" fill="black" transform="rotate(0,216,304)"/>
                <polygon class="arrowhead" points="224,112 212,106.4 212,117.6" fill="black" transform="rotate(0,216,112)"/>
                <polygon class="arrowhead" points="120,96 108,90.4 108,101.6" fill="black" transform="rotate(0,112,96)"/>
                <g class="text">
                  <text x="224" y="36">Service</text>
                  <text x="388" y="36">Resource</text>
                  <text x="512" y="36">Authorization</text>
                  <text x="20" y="52">User</text>
                  <text x="128" y="52">Application</text>
                  <text x="220" y="52">Worker</text>
                  <text x="388" y="52">Server</text>
                  <text x="508" y="52">Server</text>
                  <text x="68" y="84">browse</text>
                  <text x="460" y="116">/authorize</text>
                  <text x="276" y="148">redirect</text>
                  <text x="324" y="148">w/</text>
                  <text x="392" y="148">authorization</text>
                  <text x="468" y="148">code</text>
                  <text x="232" y="164">&lt;</text>
                  <text x="248" y="164">-</text>
                  <text x="264" y="164">-</text>
                  <text x="280" y="164">-</text>
                  <text x="296" y="164">-</text>
                  <text x="312" y="164">-</text>
                  <text x="328" y="164">-</text>
                  <text x="344" y="164">-</text>
                  <text x="360" y="164">-</text>
                  <text x="376" y="164">-</text>
                  <text x="392" y="164">-</text>
                  <text x="408" y="164">-</text>
                  <text x="424" y="164">-</text>
                  <text x="440" y="164">-</text>
                  <text x="456" y="164">-</text>
                  <text x="472" y="164">-</text>
                  <text x="488" y="164">-</text>
                  <text x="504" y="164">-</text>
                  <text x="280" y="196">token</text>
                  <text x="336" y="196">request</text>
                  <text x="268" y="212">w/</text>
                  <text x="300" y="212">auth</text>
                  <text x="340" y="212">code</text>
                  <text x="476" y="212">/token</text>
                  <text x="232" y="244">&lt;</text>
                  <text x="248" y="244">-</text>
                  <text x="264" y="244">-</text>
                  <text x="280" y="244">-</text>
                  <text x="296" y="244">-</text>
                  <text x="312" y="244">-</text>
                  <text x="328" y="244">-</text>
                  <text x="344" y="244">-</text>
                  <text x="360" y="244">-</text>
                  <text x="376" y="244">-</text>
                  <text x="392" y="244">-</text>
                  <text x="408" y="244">-</text>
                  <text x="424" y="244">-</text>
                  <text x="440" y="244">-</text>
                  <text x="456" y="244">-</text>
                  <text x="472" y="244">-</text>
                  <text x="488" y="244">-</text>
                  <text x="504" y="244">-</text>
                  <text x="172" y="276">resource</text>
                  <text x="168" y="292">request</text>
                  <text x="276" y="324">resource</text>
                  <text x="344" y="324">request</text>
                  <text x="252" y="340">w/</text>
                  <text x="292" y="340">access</text>
                  <text x="344" y="340">token</text>
                  <text x="20" y="388">User</text>
                  <text x="128" y="388">Application</text>
                  <text x="224" y="388">Service</text>
                  <text x="388" y="388">Resource</text>
                  <text x="512" y="388">Authorization</text>
                  <text x="220" y="404">Worker</text>
                  <text x="388" y="404">Server</text>
                  <text x="508" y="404">Server</text>
                </g>
              </svg>
            </artwork>
            <artwork type="ascii-art"><![CDATA[
                          Service             Resource     Authorization
  User      Application   Worker               Server         Server
   |            |            |                    |              |
   |   browse   |            |                    |              |
   |----------->|            |                    |              |
   |            |----------->|                    |   /authorize |
   |            |            |---------------------------------->|
   |            |            |  redirect w/ authorization code   |
   |            |            |< - - - - - - - - - - - - - - - - -|
   |            |            |                    |              |
   |            |            |    token request   |              |
   |            |            |    w/ auth code    |       /token |
   |            |            |---------------------------------->|
   |            |            |< - - - - - - - - - - - - - - - - -|
   |            |            |                    |              |
   |            |  resource  |                    |              |
   |            |  request   |                    |              |
   |            |----------->|                    |              |
   |            |            |  resource request  |              |
   |            |            |  w/ access token   |              |   
   |            |            |------------------->|              |
   |            |            |                    |              |
  User      Application   Service             Resource     Authorization
                          Worker               Server         Server
]]></artwork>
          </artset>
        </figure>
        <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 scenarios:</t>
          <ul spacing="normal">
            <li>
              <t>Acquisition and Extraction of New Tokens <xref target="scenario-new-flow"/></t>
            </li>
            <li>
              <t>Proxying Requests via the User's Browser <xref target="scenario-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 attack scenarios (<xref target="attackscenarios"/>), 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 scenarios discussed in <xref target="attackscenarios"/>.</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 grant, an attack discussed in <xref target="scenario-new-flow"/>. Due to the nature of Service Workers, the registered Service Worker will be able to block all outgoing requests that initiate 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 grant, 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 scenario where the attacker acquires a new set of tokens (<xref target="scenario-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. The Service Worker in these scenarios does not change the security properties of the application, but 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 a browser-based application handles tokens directly, it becomes responsible for ephemerally or persistently storing tokens. As a consequence, the application needs to decide how to manage tokens (e.g., in-memory vs persistent storage), and which steps to take to further isolate tokens from the main application code. This section discusses a few different storage mechanisms and their properties.</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 scenarios 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.</t>
      <section anchor="cookies">
        <name>Cookies</name>
        <t>Browser cookies are both a storage mechanism and a transport mechanism. The browser automatically supports both through the corresponding request and response headers, resulting in the storage of cookies in the browser and the automatic inclusion of cookies on outgoing requests given it matches the cookie's domain, path, or other properties.</t>
        <t>Next to header-based control over cookies, browsers also offer a JavaScript Cookie API to get and set cookies. This Cookie API is often mistaken as an easy way to store data in the browser. In such a scenario, the JavaScript code stores a token in a cookie, with the intent to retrieve the token for later for inclusion in the Authorization header of an API call. However, since the cookie is associated with the domain of the browser-based application, the browser will also send the cookie containing the token when making a request to the server running on this domain. One example of such a request is the browser loading the application after a previous visit to the application (step A in the diagram of <xref target="pattern-oauth-browser"/>).</t>
        <t>Because of these unintentional side effect of using cookies for JavaScript-based storage, this practice is NOT RECOMMENDED.</t>
        <t>Note that this practice is different from the use of cookies in a BFF (discussed in <xref target="pattern-bff-cookie-security"/>), where the cookie is inaccessible to JavaScript and is supposed to be sent to the backend.</t>
      </section>
      <section anchor="token-storage-service-worker">
        <name>Token Storage in a Service Worker</name>
        <t>A Service Worker (<xref target="serviceworker"/>) 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 application is responsible for obtaining tokens from the authorization server and passing them to a Service Worker for further management, the attacker can perform the same operation as the legitimate application to obtain these tokens.</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 (<xref target="WebWorker"/>), 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>In a JavaScript execution environment, 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 (<xref target="WebStorage"/>), sessionStorage (<xref target="WebStorage"/>), and IndexedDB (<xref target="indexeddb"/>).</t>
        <t>localStorage persists between page reloads as well as is shared across all tabs. This storage is accessible to the entire origin, and persists longer term. localStorage does not protect against XSS attacks, as the attacker would be running code within the same origin, and as such, would be able to read the contents of the localStorage.</t>
        <t>sessionStorage is similar to localStorage, except that the lifetime of sessionStorage is linked to the lifetime of a browser tab. Additionally, sessionStorage is not shared between multiple tabs open to pages on the same origin, which slightly reduces the exposure of the tokens in sessionStorage.</t>
        <t>IndexedDB is a persistent storage mechanism like localStorage, but is shared between multiple tabs as well as between the browsing context and Service Workers.</t>
        <t>Note that the main difference between these patterns is the exposure of the data, but that none of these options can fully mitigate token exfiltration when the attacker can execute malicious code in the application's execution environment.</t>
      </section>
      <section anchor="filesystem-considerations">
        <name>Filesystem Considerations for Browser Storage APIs</name>
        <t>In all cases, as of this writing, browsers ultimately store data in plain text on the filesystem. This behavior exposes tokens to attackers with the ability to read files on disk. While such attacks rely on capabilities that are well beyond the scope of browser-based applications, this topic highlights an important attack vector against modern applications. More and more malware is specifically created to crawl user's machines looking for browser profiles to obtain high-value tokens and sessions, resulting in account takeover attacks.</t>
        <t>While the browser-based application is incapable of mitigating such attacks, the application can mitigate the consequences of such an attack by ensuring data confidentiality using encryption. The <xref target="WebCryptographyAPI"/> provides a mechanism for JavaScript code to generate a secret key, as well as an option for that key to be non-exportable. A JavaScript application could then use this API to encrypt and decrypt tokens before storing them. However, the <xref target="WebCryptographyAPI"/> specification only ensures that the key is not exportable to the browser code, but does not place any requirements on the underlying storage of the key itself with the operating system. As such, a non-exportable key cannot be relied on as a way to protect against exfiltration from the underlying filesystem.</t>
        <t>In order to protect against token exfiltration from the filesystem, the encryption keys would need to be stored somewhere other than the filesystem, such as on a remote server. This introduces new complexity for a purely browser-based app, and is out of scope of this document.</t>
      </section>
    </section>
    <section anchor="security-considerations-3">
      <name>Security Considerations</name>
      <section anchor="reducing-the-authority-of-tokens">
        <name>Reducing the Authority of Tokens</name>
        <t>A general security best practice in the OAuth world is to minimize the authority associated with access tokens. This best practice is applicable to all the architectures discussed in this specification. Concretely, the following considerations can be helpful in reducing the authority of access tokens:</t>
        <ul spacing="normal">
          <li>
            <t>Reduce the lifetime of access tokens and rely on refresh tokens for access token renewal</t>
          </li>
          <li>
            <t>Reduce the scopes or permissions associated with the access token</t>
          </li>
          <li>
            <t>Use <xref target="RFC8707"/> to restrict access tokens to a single resource</t>
          </li>
        </ul>
        <t>When OpenID Connect is used, it is important to avoid sensitive information disclosure through the claims in the ID Token. The authorization server SHOULD NOT include any ID token claims that aren't used by the client.</t>
      </section>
      <section anchor="sender-constrained-tokens">
        <name>Sender-Constrained Tokens</name>
        <t>As discussed throughout this document, the use of sender-constrained tokens does not solve the security limitations of browser-only OAuth clients. However, when the level of security offered by a token-mediating backend (<xref target="pattern-tmb"/>) or a browser-only OAuth client (<xref target="pattern-oauth-browser"/>) suffices for the use case at hand, sender-constrained tokens can be used to enhance the security of both access tokens and refresh tokens. One method of implementing sender-constrained tokens in a way that is usable from browser-based applications is DPoP <xref target="RFC9449"/>.</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. Ideally the application should use a non-exportable private key, such as generating one with the <xref target="WebCryptographyAPI"/>. With an unencrypted token in localStorage protected by a non-exportable private key, an XSS attack would not be able to extract the key, so the token would not be usable by the attacker.</t>
        <t>If the application is unable to use an API that generates a non-exportable key, the application should take measures to isolate the private key from its own execution context. The techniques for doing so are similar to using a secure token storage mechanism, as discussed in <xref target="token-storage"/>.</t>
        <t>While a non-exportable key is protected from exfiltration from within JavaScript, exfiltration of the underlying private key from the filesystem is still a concern. As of the time of this writing, there is no guarantee made by the <xref target="WebCryptographyAPI"/> that a non-exportable key is actually protected by a Trusted Platform Module (TPM) or stored in an encrypted form on disk. Exfiltration of the non-exportable key from the underlying filesystem may still be possible if the attacker can get access to the filesystem of the user's machine, for example via malware.</t>
      </section>
      <section anchor="auth_server_mixup">
        <name>Authorization Server Mix-Up Mitigation</name>
        <t>Authorization server mix-up attacks mark a severe threat to every client that supports
at least two authorization servers. Section 4.4 of <xref target="oauth-security-topics"/> provides additional details about mix-up attacks
and the countermeasures mentioned above.</t>
      </section>
      <section anchor="isolating-applications-using-origins">
        <name>Isolating Applications using Origins</name>
        <t>Many of the web's security mechanisms rely on origins, which are defined as the triple <tt>&lt;scheme, hostname, port&gt;</tt>. For example, browsers automatically isolate browsing contexts with different origins, limit resources to certain origins, and apply CORS restrictions to outgoing cross-origin requests.</t>
        <t>Therefore, it is considered a best practice to avoid deploying more than one application in a single origin. An architecture that only deploys a single application in an origin can leverage these browser restrictions to increase the security of the application. Additionally, having a single origin per application makes it easier to configure and deploy security measures such as CORS, CSP, etc.</t>
      </section>
    </section>
    <section anchor="iana">
      <name>IANA Considerations</name>
      <t>This document does not require any IANA actions.</t>
    </section>
  </middle>
  <back>
    <references anchor="sec-combined-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="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="RFC9449" target="https://www.rfc-editor.org/info/rfc9449" xml:base="https://bib.ietf.org/public/rfc/bibxml/reference.RFC.9449.xml">
          <front>
            <title>OAuth 2.0 Demonstrating Proof of Possession (DPoP)</title>
            <author fullname="D. Fett" initials="D." surname="Fett"/>
            <author fullname="B. Campbell" initials="B." surname="Campbell"/>
            <author fullname="J. Bradley" initials="J." surname="Bradley"/>
            <author fullname="T. Lodderstedt" initials="T." surname="Lodderstedt"/>
            <author fullname="M. Jones" initials="M." surname="Jones"/>
            <author fullname="D. Waite" initials="D." surname="Waite"/>
            <date month="September" year="2023"/>
            <abstract>
              <t>This document describes a mechanism for sender-constraining OAuth 2.0 tokens via a proof-of-possession mechanism on the application level. This mechanism allows for the detection of replay attacks with access and refresh tokens.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="9449"/>
          <seriesInfo name="DOI" value="10.17487/RFC9449"/>
        </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="2024"/>
          </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="2024" month="June"/>
          </front>
        </reference>
        <reference anchor="serviceworker" target="https://www.w3.org/TR/service-workers/">
          <front>
            <title>Service Workers</title>
            <author initials="J." surname="Archibald" fullname="Jake Archibald">
              <organization>Google</organization>
            </author>
            <author initials="M." surname="Kruisselbrink" fullname="Marijn Kruisselbrink">
              <organization>Google</organization>
            </author>
            <date year="2022" month="July"/>
          </front>
        </reference>
        <reference anchor="WebMessaging" target="https://html.spec.whatwg.org/multipage/web-messaging.html#web-messaging">
          <front>
            <title>HTML Living Standard - Cross-document messaging</title>
            <author initials="" surname="whatwg" fullname="whatwg">
              <organization/>
            </author>
            <date year="2024" month="December"/>
          </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="2024"/>
          </front>
        </reference>
        <reference anchor="WebCryptographyAPI" target="https://www.w3.org/TR/WebCryptoAPI/">
          <front>
            <title>Web Cryptography API</title>
            <author initials="M." surname="Watson" fullname="Mark Watson">
              <organization>Netflix</organization>
            </author>
            <date year="2017" month="January"/>
          </front>
        </reference>
        <reference anchor="OpenID" target="https://openid.net/specs/openid-connect-core-1_0.html">
          <front>
            <title>OpenID Connect Core 1.0 incorporating errata set 2</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="2023" month="December"/>
          </front>
        </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>
            <author initials="A." surname="Sartori" fullname="Antonio Sartori">
              <organization>Google, Inc</organization>
            </author>
            <date year="2024" month="December"/>
          </front>
        </reference>
        <reference anchor="WebStorage" target="https://html.spec.whatwg.org/multipage/webstorage.html#webstorage">
          <front>
            <title>HTML Living Standard - Web Storage</title>
            <author initials="" surname="whatwg" fullname="whatwg">
              <organization/>
            </author>
            <date year="2024" month="October"/>
          </front>
        </reference>
        <reference anchor="WebWorker" target="https://html.spec.whatwg.org/multipage/workers.html">
          <front>
            <title>HTML Living Standard - Web workers</title>
            <author initials="" surname="whatwg" fullname="whatwg">
              <organization/>
            </author>
            <date year="2024" month="October"/>
          </front>
        </reference>
        <reference anchor="Site" target="https://developer.mozilla.org/en-US/docs/Glossary/Site">
          <front>
            <title>Site</title>
            <author initials="M." surname="Contributors" fullname="MDN Contributors">
              <organization>Mozilla Developer Network</organization>
            </author>
            <date>n.d.</date>
          </front>
        </reference>
        <reference anchor="indexeddb" target="https://www.w3.org/TR/IndexedDB/">
          <front>
            <title>Indexed Database API 3.0</title>
            <author initials="J." surname="Bell" fullname="Joshua Bell">
              <organization>Google</organization>
            </author>
            <date year="2024" month="November"/>
          </front>
        </reference>
      </references>
    </references>
    <?line 1436?>

<section anchor="document-history">
      <name>Document History</name>
      <t>[[ To be removed from the final specification ]]</t>
      <t>-21</t>
      <ul spacing="normal">
        <li>
          <t>Removed unused references</t>
        </li>
        <li>
          <t>Removed reference to TMI-BFF individual draft</t>
        </li>
        <li>
          <t>Moved some references to the normative reference section</t>
        </li>
      </ul>
      <t>-20</t>
      <ul spacing="normal">
        <li>
          <t>Handled review comments from Rifaat (email 2024-11-13)</t>
        </li>
      </ul>
      <t>-19</t>
      <ul spacing="normal">
        <li>
          <t>Updated DPoP references to RFC9449</t>
        </li>
        <li>
          <t>Corrected spelling of Brian Campbell's name</t>
        </li>
      </ul>
      <t>-18</t>
      <ul spacing="normal">
        <li>
          <t>Addressed last call comments from Justin Richer</t>
        </li>
        <li>
          <t>Updated description of the benfits of Token-Mediating Backend pattern</t>
        </li>
        <li>
          <t>Added SVG diagrams in HTML version</t>
        </li>
        <li>
          <t>Added privacy considerations for BFF pattern</t>
        </li>
        <li>
          <t>Consistent use of "grant type", "grant" and "flow"</t>
        </li>
      </ul>
      <t>-17</t>
      <ul spacing="normal">
        <li>
          <t>Added a section on anti-forgery/double-submit cookies as another form of CSRF protection</t>
        </li>
        <li>
          <t>Updated CORS terminology</t>
        </li>
        <li>
          <t>Moved new section on in-browser flows as not applicable to BFF or TM patterns</t>
        </li>
        <li>
          <t>Fixed usage of some browser technology terminology</t>
        </li>
        <li>
          <t>Editorial improvements</t>
        </li>
      </ul>
      <t>-16</t>
      <ul spacing="normal">
        <li>
          <t>Applied editorial changes from Filip Skokan and Louis Jannett</t>
        </li>
        <li>
          <t>Clarified when cookie encryption applies</t>
        </li>
        <li>
          <t>Added a section with security considerations on the use of postMessage</t>
        </li>
      </ul>
      <t>-15</t>
      <ul spacing="normal">
        <li>
          <t>Consolidated guidelines for public JS clients in a single section</t>
        </li>
        <li>
          <t>Added more focus on best practices at the start of the document</t>
        </li>
        <li>
          <t>Restructured document to have top-level recommended and discouraged architecture patterns</t>
        </li>
        <li>
          <t>Added Philippe De Ryck as an author</t>
        </li>
      </ul>
      <t>-14</t>
      <ul spacing="normal">
        <li>
          <t>Minor editorial fixes and clarifications</t>
        </li>
        <li>
          <t>Updated some references</t>
        </li>
        <li>
          <t>Added a paragraph noting the possible exfiltration of a non-exportable key from the filesystem</t>
        </li>
      </ul>
      <t>-13</t>
      <ul spacing="normal">
        <li>
          <t>Corrected some uses of "DOM"</t>
        </li>
        <li>
          <t>Consolidated CSRF recommendations into normative part of the document</t>
        </li>
        <li>
          <t>Added links from the summary into the later sections</t>
        </li>
        <li>
          <t>Described limitations of Service Worker storage</t>
        </li>
        <li>
          <t>Minor editorial improvements</t>
        </li>
      </ul>
      <t>-12</t>
      <ul spacing="normal">
        <li>
          <t>Revised overview and server support checklist to bring them up to date with the rest of the draft</t>
        </li>
        <li>
          <t>Added a new section about options for storing tokens</t>
        </li>
        <li>
          <t>Added a section on sender-constrained tokens and a reference to DPoP</t>
        </li>
        <li>
          <t>Rephrased the architecture patterns to focus on token acquisition</t>
        </li>
        <li>
          <t>Added a section discussing why not to use the Cookie API to store tokens</t>
        </li>
      </ul>
      <t>-11</t>
      <ul spacing="normal">
        <li>
          <t>Added a new architecture pattern: Token-Mediating Backend</t>
        </li>
        <li>
          <t>Revised and added clarifications for the Service Worker pattern</t>
        </li>
        <li>
          <t>Editorial improvements in descriptions of the different architectures</t>
        </li>
        <li>
          <t>Rephrased headers</t>
        </li>
      </ul>
      <t>-10</t>
      <ul spacing="normal">
        <li>
          <t>Revised the names of the architectural patterns</t>
        </li>
        <li>
          <t>Added a new pattern using a service worker as the OAuth client to manage tokens</t>
        </li>
        <li>
          <t>Added some considerations when storing tokens in Local or Session Storage</t>
        </li>
      </ul>
      <t>-09</t>
      <ul spacing="normal">
        <li>
          <t>Provide additional context for the same-domain architecture pattern</t>
        </li>
        <li>
          <t>Added reference to draft-ietf-httpbis-rfc6265bis to clarify that SameSite is not the only CSRF protection measure needed</t>
        </li>
        <li>
          <t>Editorial improvements</t>
        </li>
      </ul>
      <t>-08</t>
      <ul spacing="normal">
        <li>
          <t>Added a note to use the "Secure" cookie attribute in addition to SameSite etc</t>
        </li>
        <li>
          <t>Updates to bring this draft in sync with the latest Security BCP</t>
        </li>
        <li>
          <t>Updated text for mix-up countermeasures to reference the new "iss" extension</t>
        </li>
        <li>
          <t>Changed "SHOULD" for refresh token rotation to MUST either use rotation or sender-constraining to match the Security BCP</t>
        </li>
        <li>
          <t>Fixed references to other specs and extensions</t>
        </li>
        <li>
          <t>Editorial improvements in descriptions of the different architectures</t>
        </li>
      </ul>
      <t>-07</t>
      <ul spacing="normal">
        <li>
          <t>Clarify PKCE requirements apply only to issuing access tokens</t>
        </li>
        <li>
          <t>Change "MUST" to "SHOULD" for refresh token rotation</t>
        </li>
        <li>
          <t>Editorial clarifications</t>
        </li>
      </ul>
      <t>-06</t>
      <ul spacing="normal">
        <li>
          <t>Added refresh token requirements to AS summary</t>
        </li>
        <li>
          <t>Editorial clarifications</t>
        </li>
      </ul>
      <t>-05</t>
      <ul spacing="normal">
        <li>
          <t>Incorporated editorial and substantive feedback from Mike Jones</t>
        </li>
        <li>
          <t>Added references to "nonce" as another way to prevent CSRF attacks</t>
        </li>
        <li>
          <t>Updated headers in the Implicit grant type 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 grant type</t>
        </li>
        <li>
          <t>Rephrased "Authorization Code grant type" 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 (Applications 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 grant type 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 applications</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 applications 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 grant type 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 applications 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>Andy Barlow, Annabelle Backman, Brian Campbell, Brock Allen, Christian Mainka, Damien Bowden,
Daniel Fett, Elar Lang, Emmanuel Gautier, Eva Sarafianou,
Filip Skokan, George Fletcher, Hannes Tschofenig, Janak Amarasena, John Bradley, Joseph Heenan,
Justin Richer, Karl McGuinness, Karsten Meyer zu Selhausen, Leo Tohill, Louis Jannett, Mike Jones,
Sean Kelleher, Thomas Broyer, Tomek Stojecki, Torsten Lodderstedt, Vittorio Bertocci,
William Duncan, and Yannick Majoros.</t>
    </section>
  </back>
  <!-- ##markdown-source:
H4sIAAAAAAAAA+y9bZfbxpUu+p2/Akv+kG6HpCzZsRPdmawjtaRYjmT1VbdO
zqxZMzZIgk2kSYADgN3qKJ7ffvdr1a5CAd2S7Hjm3FFWEokkCvWya7/vZ89m
s0lXdtviUfb68aHbZA/nX2TrusmeNPV1WzSzJ3lbrLLH+/22XOZdWVftZFUv
q3wHT6yafN3NyqJbz+ocHp4t5KEFPjTL9/t29vDBZFLum0dZ1xza7uEXX/zh
i4eTvCnyR9lZsTw0ZXczua6by4umPuwfZX8pFhnOo27Kv9HrstOm7uplvZ1c
Xj/KXlRd0VRFN3uKr57AjB5li+V+MlnWq7K6eJQd2lneLstysi8fTbIMnnyU
3RQt/LWtm64p1q37983O/3OS0zvxkRn8N8vKCr55PM9OYarLy5I+40U/zhuc
lfm8buDFry+7nP5V7PJy+yjL8Wf/a88/my/rHX0J632Ubbpu3z66f59+Ev7C
vPzpPPtLXnaFefXT/KpcmU/pxaew7uzFqqg63EozgxX++n/l28t8W1bFrK23
Bzq//qtO59nTIntzs7w0LzvdlNtyvy+Cr/iNTX6xg8NZ0mm5UzSv3suz/2uv
P70uFq38kN4/mVR1g99cFbjpb56fPHzw4A/y16+/+cr/9Xdf6F9/737wzddf
fi1//f3D3z3Uv37zxTfy1z98xSMYCsVdX5TtrFkvv3749e/gr49oykL9907q
+rIsYDe+PT8/zc66vCuyV3mVXxQ72NvsVbHc5FXZ7u7RUyv4Gg592dWLoske
fgFkToPlzUXR+SOGn+Vdky8vi2aOs5jDBt6H+3N/0+2290dnR+N5soQDk4N5
Oc9ONkVFn8mJ/KmuL7ZF9vLlSfDLs3n2rIIvNnmz6uzvX9V/K7fbPPjxK6C3
ou3uMOx38Mtym1erorG/Rh5RTOGKLuFT3s1TuGHluyLc6bctUizt8pL3fHCp
r55+DyNVXVMuDl3dtIk1AHleFdt6D6fwfdEhJ0kfhP5qvuPn6CSKavb2DM+j
vQ+kfB/ndP/Ezel50S03wdTpk95s9cZcb/Lu+kI+ootlPmGCAUL5Kjm/NY48
b/fFcs4P0fzgp8xY9e7MunpfLsP99Hxbr2L2BA4yOzk0DVIuXNcl3MBicJfP
YWe7ospe1is4UvirIxZaxPk88Q0dAXBOx9kccdSbCoRHvtoWN3YUIJrwUxrh
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
AoMQmiWN5AEA

-->

</rfc>
