<?xml version='1.0' encoding='utf-8'?>
<!DOCTYPE rfc [
  <!ENTITY nbsp    "&#160;">
  <!ENTITY zwsp   "&#8203;">
  <!ENTITY nbhy   "&#8209;">
  <!ENTITY wj     "&#8288;">
]>
<?xml-stylesheet type="text/xsl" href="rfc2629.xslt" ?>
<!-- generated by https://github.com/cabo/kramdown-rfc version 1.7.5 (Ruby 3.2.2) -->
<rfc xmlns:xi="http://www.w3.org/2001/XInclude" ipr="trust200902" docName="draft-ietf-oauth-browser-based-apps-16" category="bcp" consensus="true" tocInclude="true" sortRefs="true" symRefs="true" version="3">
  <!-- xml2rfc v2v3 conversion 3.19.2 -->
  <front>
    <title>OAuth 2.0 for Browser-Based Apps</title>
    <seriesInfo name="Internet-Draft" value="draft-ietf-oauth-browser-based-apps-16"/>
    <author initials="A." surname="Parecki" fullname="Aaron Parecki">
      <organization>Okta</organization>
      <address>
        <email>aaron@parecki.com</email>
        <uri>https://aaronparecki.com</uri>
      </address>
    </author>
    <author initials="D." surname="Waite" fullname="David Waite">
      <organization>Ping Identity</organization>
      <address>
        <email>david@alkaline-solutions.com</email>
      </address>
    </author>
    <author initials="P." surname="De Ryck" fullname="Philippe De Ryck">
      <organization>Pragmatic Web Security</organization>
      <address>
        <email>philippe@pragmaticwebsecurity.com</email>
      </address>
    </author>
    <date year="2024" month="February" day="17"/>
    <area>Security</area>
    <workgroup>Web Authorization Protocol</workgroup>
    <keyword>Internet-Draft</keyword>
    <abstract>
      <?line 155?>

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

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

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

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

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

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

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

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

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

<section anchor="server-support-checklist">
      <name>Server Support Checklist</name>
      <t>OAuth authorization servers that support browser-based apps MUST:</t>
      <ol spacing="normal" type="1"><li>
          <t>Support PKCE <xref target="RFC7636"/>. Required to protect authorization code
grants sent to public clients. See <xref target="auth_code_request"/></t>
        </li>
        <li>
          <t>NOT support the Resource Owner Password grant for browser-based clients.</t>
        </li>
        <li>
          <t>NOT support the Implicit grant for browser-based clients.</t>
        </li>
        <li>
          <t>Require "https" scheme redirect URIs for browser-based clients.</t>
        </li>
        <li>
          <t>Require exact matching of registered redirect URIs for browser-based clients.</t>
        </li>
        <li>
          <t>Support cross-domain requests at endpoints browser-based clients access in order to allow browsers
to make the authorization code exchange request. See <xref target="cors"/></t>
        </li>
        <li>
          <t>Not assume that browser-based clients can keep a secret, and SHOULD NOT issue
secrets to applications of this type.</t>
        </li>
        <li>
          <t>Follow the <xref target="oauth-security-topics"/> recommendations on refresh tokens, as well
as the additional requirements described in <xref target="pattern-oauth-browser-rt"/>.</t>
        </li>
      </ol>
    </section>
    <section anchor="document-history">
      <name>Document History</name>
      <t>[[ To be removed from the final specification ]]</t>
      <t>-16</t>
      <ul spacing="normal">
        <li>
          <t>Applied editorial changes from Filip Skokan and Louis Jannett</t>
        </li>
        <li>
          <t>Clarified when cookie encryption applies</t>
        </li>
        <li>
          <t>Added a section with security considerations on the use of postMessage</t>
        </li>
      </ul>
      <t>-15</t>
      <ul spacing="normal">
        <li>
          <t>Consolidated guidelines for public JS clients in a single section</t>
        </li>
        <li>
          <t>Added more focus on best practices at the start of the document</t>
        </li>
        <li>
          <t>Restructured document to have top-level recommended and discouraged architecture patterns</t>
        </li>
        <li>
          <t>Added Philippe De Ryck as an author</t>
        </li>
      </ul>
      <t>-14</t>
      <ul spacing="normal">
        <li>
          <t>Minor editorial fixes and clarifications</t>
        </li>
        <li>
          <t>Updated some references</t>
        </li>
        <li>
          <t>Added a paragraph noting the possible exfiltration of a non-exportable key from the filesystem</t>
        </li>
      </ul>
      <t>-13</t>
      <ul spacing="normal">
        <li>
          <t>Corrected some uses of "DOM"</t>
        </li>
        <li>
          <t>Consolidated CSRF recommendations into normative part of the document</t>
        </li>
        <li>
          <t>Added links from the summary into the later sections</t>
        </li>
        <li>
          <t>Described limitations of Service Worker storage</t>
        </li>
        <li>
          <t>Minor editorial improvements</t>
        </li>
      </ul>
      <t>-12</t>
      <ul spacing="normal">
        <li>
          <t>Revised overview and server support checklist to bring them up to date with the rest of the draft</t>
        </li>
        <li>
          <t>Added a new section about options for storing tokens</t>
        </li>
        <li>
          <t>Added a section on sender-constrained tokens and a reference to DPoP</t>
        </li>
        <li>
          <t>Rephrased the architecture patterns to focus on token acquisition</t>
        </li>
        <li>
          <t>Added a section discussing why not to use the Cookie API to store tokens</t>
        </li>
      </ul>
      <t>-11</t>
      <ul spacing="normal">
        <li>
          <t>Added a new architecture pattern: Token-Mediating Backend</t>
        </li>
        <li>
          <t>Revised and added clarifications for the Service Worker pattern</t>
        </li>
        <li>
          <t>Editorial improvements in descriptions of the different architectures</t>
        </li>
        <li>
          <t>Rephrased headers</t>
        </li>
      </ul>
      <t>-10</t>
      <ul spacing="normal">
        <li>
          <t>Revised the names of the architectural patterns</t>
        </li>
        <li>
          <t>Added a new pattern using a service worker as the OAuth client to manage tokens</t>
        </li>
        <li>
          <t>Added some considerations when storing tokens in Local or Session Storage</t>
        </li>
      </ul>
      <t>-09</t>
      <ul spacing="normal">
        <li>
          <t>Provide additional context for the same-domain architecture pattern</t>
        </li>
        <li>
          <t>Added reference to draft-ietf-httpbis-rfc6265bis to clarify that SameSite is not the only CSRF protection measure needed</t>
        </li>
        <li>
          <t>Editorial improvements</t>
        </li>
      </ul>
      <t>-08</t>
      <ul spacing="normal">
        <li>
          <t>Added a note to use the "Secure" cookie attribute in addition to SameSite etc</t>
        </li>
        <li>
          <t>Updates to bring this draft in sync with the latest Security BCP</t>
        </li>
        <li>
          <t>Updated text for mix-up countermeasures to reference the new "iss" extension</t>
        </li>
        <li>
          <t>Changed "SHOULD" for refresh token rotation to MUST either use rotation or sender-constraining to match the Security BCP</t>
        </li>
        <li>
          <t>Fixed references to other specs and extensions</t>
        </li>
        <li>
          <t>Editorial improvements in descriptions of the different architectures</t>
        </li>
      </ul>
      <t>-07</t>
      <ul spacing="normal">
        <li>
          <t>Clarify PKCE requirements apply only to issuing access tokens</t>
        </li>
        <li>
          <t>Change "MUST" to "SHOULD" for refresh token rotation</t>
        </li>
        <li>
          <t>Editorial clarifications</t>
        </li>
      </ul>
      <t>-06</t>
      <ul spacing="normal">
        <li>
          <t>Added refresh token requirements to AS summary</t>
        </li>
        <li>
          <t>Editorial clarifications</t>
        </li>
      </ul>
      <t>-05</t>
      <ul spacing="normal">
        <li>
          <t>Incorporated editorial and substantive feedback from Mike Jones</t>
        </li>
        <li>
          <t>Added references to "nonce" as another way to prevent CSRF attacks</t>
        </li>
        <li>
          <t>Updated headers in the Implicit Flow section to better represent the relationship between the paragraphs</t>
        </li>
      </ul>
      <t>-04</t>
      <ul spacing="normal">
        <li>
          <t>Disallow the use of the Password Grant</t>
        </li>
        <li>
          <t>Add PKCE support to summary list for authorization server requirements</t>
        </li>
        <li>
          <t>Rewrote refresh token section to allow refresh tokens if they are time-limited, rotated on each use, and requiring that the rotated refresh token lifetimes do not extend past the lifetime of the initial refresh token, and to bring it in line with the Security BCP</t>
        </li>
        <li>
          <t>Updated recommendations on using state to reflect the Security BCP</t>
        </li>
        <li>
          <t>Updated server support checklist to reflect latest changes</t>
        </li>
        <li>
          <t>Updated the same-domain JS architecture section to emphasize the architecture rather than domain</t>
        </li>
        <li>
          <t>Editorial clarifications in the section that talks about OpenID Connect ID tokens</t>
        </li>
      </ul>
      <t>-03</t>
      <ul spacing="normal">
        <li>
          <t>Updated the historic note about the fragment URL clarifying that the Session History API means browsers can use the unmodified Authorization Code flow</t>
        </li>
        <li>
          <t>Rephrased "Authorization Code Flow" intro paragraph to better lead into the next two sections</t>
        </li>
        <li>
          <t>Softened "is likely a better decision to avoid using OAuth entirely" to "it may be..." for common-domain deployments</t>
        </li>
        <li>
          <t>Updated abstract to not be limited to public clients, since the later sections talk about confidential clients</t>
        </li>
        <li>
          <t>Removed references to avoiding OpenID Connect for same-domain architectures</t>
        </li>
        <li>
          <t>Updated headers to better describe architectures (Apps Served from a Static Web Server -&gt; JavaScript Applications without a Backend)</t>
        </li>
        <li>
          <t>Expanded "same-domain architecture" section to better explain the problems that OAuth has in this scenario</t>
        </li>
        <li>
          <t>Referenced Security BCP in implicit flow attacks where possible</t>
        </li>
        <li>
          <t>Minor typo corrections</t>
        </li>
      </ul>
      <t>-02</t>
      <ul spacing="normal">
        <li>
          <t>Rewrote overview section incorporating feedback from Leo Tohill</t>
        </li>
        <li>
          <t>Updated summary recommendation bullet points to split out application and server requirements</t>
        </li>
        <li>
          <t>Removed the allowance on hostname-only redirect URI matching, now requiring exact redirect URI matching</t>
        </li>
        <li>
          <t>Updated Section 6.2 to drop reference of SPA with a backend component being a public client</t>
        </li>
        <li>
          <t>Expanded the architecture section to explicitly mention three architectural patterns available to JS apps</t>
        </li>
      </ul>
      <t>-01</t>
      <ul spacing="normal">
        <li>
          <t>Incorporated feedback from Torsten Lodderstedt</t>
        </li>
        <li>
          <t>Updated abstract</t>
        </li>
        <li>
          <t>Clarified the definition of browser-based apps to not exclude applications cached in the browser, e.g. via Service Workers</t>
        </li>
        <li>
          <t>Clarified use of the state parameter for CSRF protection</t>
        </li>
        <li>
          <t>Added background information about the original reason the implicit flow was created due to lack of CORS support</t>
        </li>
        <li>
          <t>Clarified the same-domain use case where the SPA and API share a cookie domain</t>
        </li>
        <li>
          <t>Moved historic note about the fragment URL into the Overview</t>
        </li>
      </ul>
    </section>
    <section anchor="acknowledgements">
      <name>Acknowledgements</name>
      <t>The authors would like to acknowledge the work of William Denniss and John Bradley,
whose recommendation for native apps informed many of the best practices for
browser-based applications. The authors would also like to thank Hannes Tschofenig
and Torsten Lodderstedt, the attendees of the Internet Identity Workshop 27
session at which this BCP was originally proposed, and the following individuals
who contributed ideas, feedback, and wording that shaped and formed the final specification:</t>
      <t>Annabelle Backman, Brian Campbell, Brock Allen, Christian Mainka, Daniel Fett, Eva Sarafianou,
Filip Skokan, George Fletcher, Hannes Tschofenig, Janak Amarasena, John Bradley, Joseph Heenan,
Justin Richer, Karl McGuinness, Karsten Meyer zu Selhausen, Leo Tohill, Louis Jannett, Mike Jones,
Sean Kelleher, Thomas Broyer Tomek Stojecki, Torsten Lodderstedt, Vittorio Bertocci and Yannick Majoros.</t>
    </section>
  </back>
  <!-- ##markdown-source:
H4sIAAAAAAAAA+y9e5fbxpUv+j8+BVb7j0gOSVnyK9GdZE2rJcXySFZftXQy
s2bN2CAJNjEiAQ4AdotR/N3vflbtKhTYLVlOcteJzplYIolCPXbt9/7t6XSa
9VW/KR/mL0/3/Tp/MPsiXzVt/qhtrruynT4qunKZn+52XbZsFnWxhV8u22LV
T6uyX02bAh6azuXHc/zxtIAfT+9/k2XVrn2Y9+2+6x988cXvv3iQFW1ZPMwv
ysW+rfpDdt20by/bZr97mP+5nOf4/qat/lL0VVPn523TN4tmk729fpg/q/uy
rct++hhfnS2K/mE+X+yybNEsq/ryYb7vpkW3qKpsVz3M8hyefJgfyg7+2jVt
35arzv37sPX/zAp6Jz4yhf/L86qGb05n+TlMdfG2os940adFi7MynzctvPjl
276gf5Xboto8zAv82b/u+GezRbOlL2G9D/N13++6h/fu0U/CX5iXP57lfy6q
vjSvflxcVUvzKb34HNadP1uWdY9baWawxF//a7F5W2yqupx2zWaPG9oNX3U+
yx+X+avD4q152fm62lS7XRl8xW9si8stHM6CTsudonn1Tp79153+9Lqcd/JD
en+W1U2L31yVuOmvnp49uH//9/LXr+/f/0b++s23X/3e/fXrL/Svv3O//fab
L/W3v3vw9QP56+8ffPEt/tVQKO76vOqm7WrxzYNvvoa/PqQpC9WfnDXN26qE
3fju9evz/KIv+jJ/UdTFZbmFvc1flIt1UVfd9oSeWsLXcOiLvpmXbf7giwf3
ebCivSx7f8Tws6Jvi8Xbsp3hLGawgffg/txb99vNvaOzo/E8WcKBycE8n+Vn
67Kmz+RE/tQ0l5syf/78LPjlxSx/UsMX66Jd9vb3L5q/VJtNEfz4BdBb2fW3
GPZ7+GW1Kepl2dpfA2/YlBO4ogv4lHfzHG5Y9a4Md/pNhxRLu7zgPR9d6ovH
P8BIdd9W833ftF1iDUCeV+Wm2cEp/FD2yEnSB6G/mm35OTqJsp6+ucDz6O4B
Kd/DOd07c3N6WvaLdTB1+mQwW70x1+uiv76Uj+himU+YYB58cf93yfmtcORZ
tysXM36I5gc/Zcaqd2faN7tqEe6n59d6FfNHcJD52b5tkXLhui7gBpaju/wa
drYv6/x5s4Qjhb86YqFFvJ4lvqEjAM7pOJsjjmZdg9AolpvyYEcBogk/pRH+
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
I7KoO85+dl6QUJ6K4VhUW1/84boXnQVg3cJkXqf9xE9R0ITCSBCCXq8lY29e
1uWq6n1LAqdSyraivLeFRH0i18YgxKoNqZeUmgcdf2oAK4zPSfOgWyG3Axur
ew/dHnjQvSMugfY/Ew8QqSLD5mKJ2X5AkwU8Mprjg9l9+H+hFenPMzyeWO3w
xiMVORkbkduriHKYMAz9DRmXaqpQlhWxG01ZtPYGbsNQJ1agCme2oNsT4aqu
SgEbt1WENGfJjpdGh6Kobg5eGxQPu69sdt5O2SlqgccNAIvW+MedS9MgnZL8
MuySCqRfW5pkvxzN/XM6jPJzUMyKS25d2Lu9Pvac1sPe+KRQc/DOYltewPT+
cEH50rcdgny/7gdoZaG4zz+/9/nwt9hjC39P73tMwP2fo+uWGo2XQuJj7+kR
8Jg4pQCym2l5Qvr8xx8xdDr9nMADq3dYcRt2RUeQwCzhz2Fuk7S3tIyLrZ8Q
kO4OtrvZcacN0u9TprELEznwRrIgEcrbeh3uDtiNGLN2hxfcoNWUbZwGkYUn
/IiD1gi/fYzW9B3y3H59//43ki5WRd01ZJoIMcS2iO4zOTJL8utJyy0RGXKB
sRYoX2LLO3wK1IuKLVPWtBVEIKqdxuoj7rIiBUwGKTVZsiX4gluEPmxFaSkc
NAgwxG5kTibxzvMHdSrgZV1haqdpyqDLRli2hsv5ZVPILXGnS4JQCnShak3I
JxiSpB7wkLD3KpAiuR59bPPln08vzvOzNXqeLtZliROnXpZ3/kVbci3wyw6/
469mzXXR7TDV/493PZenOgO834oRgvrYJaKunLvd7mLm37Ur4fg2ddY5qI9Y
Pta9rqnyupsk+EL/M+m9VpCib4L6U5LfgZVPa2Pb+fhbI7GqqnU+SOpYiy88
sgF3zi5ePb2rHY1MYJX4q+/gWWjoCn+vcJdsYVJvAoO6RJwMTWRXj2nghxjW
x+Gv87PSxySMKFOpGRsgXPIVVq/r6YI2JsxbpfmpMtUsOxM/uVomQ5Y54Pye
JSdixANHxN2Idzg1zTIN4nguMIwCG0GsqN2Jh75AKkDtFf1GTc96DuJ0+GRg
3yTFmY+Sai7HQbbpEl38faklLrKTzLe0Gtc14fMTcR0emN7Cvi3OLYcxfUqV
YCTTIBZQdWSEoLnoLI3hYDYLlTttFKa5mzAPZyl1+zl/YfhS/pNe/sKV9gC9
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
efVMMIXIyuXOxnhnW3mMtHrzY0p4S/XS7OIj4YfYqW6pxq8+tX+dbiAZ0p+E
wNQPJ31Uip7zycnpOrLI0aXIkJr+rLLLVtAeJ0xM8a66bl/GrtJ0m1LlWu/f
E0DPoup/1JDf55ipjkMlsGQwPja+d6NETzEQ0ndqJnfev6bn1NQQrgZEIbqs
iW5a+k/CHzyoY6uXfmCMvxWJQps6AY3DFUVSAn5w1U/aqZjjKlvKOkKLE8ah
93BhhGxSIUuJpjXxJ0PHyLpZXPeDJUmheJ6Xh2bkx4xKPRDoVaqEaE0JObu2
BEIBK77qsOyAliuKIa5FPfPPjilWml8luqgKoUdEAdbofv/ZkEQ/SmhFTYzo
OpAP+t9Kzq+i6/hE9LHsDt2VgM37i3Oc4U+GOWqOYwRXkpp6MhZ/Rq9baacB
mbQobdG1dWFOj/xrIshDFVLbXC5KbAeecStRXuYyFXFACVBYuClR1ucHCUjJ
kWZJoSKY8KLHU2k4u7ZFgUfBVrDWT+j5ov9m45PvNSkSxQIXb7t2JhSENS2g
RIb4Oq4BZWE2I0/lx9b81hAViRYL5dXFXX5ifYjaLhETgT0yqavZmJrDJELE
MC8tbz+aKg8vypA84uaoAXGha7pd2h0nTUzBsSTBzqw807hihZi/SwEG5vY+
B+1VTNThe2Ys8B2Yf3LAgMKxyZieA0fYvO5ANir5NQ6elHVBKJPKlHGtGhUZ
9/CXyRxAnx3Lm2U6BzJHEvIJEwKpTAbpuhhfKBa2sLavtC0oEB77DCY25Wzi
zKE5spFCnVOk+aIzjyn0jOVJjNuN1DFJzSAjwmJHvoLaCxdKm+gu6/GDaXuG
tSQ0Jc+L2ddALlqHulBwY1BydlORG/qWpeEabke23W/6ardhh2ynUQyuhs97
StdecndCc4ayG5QSDduTUTY3VmMC39mJml1h7ueOaZsKWJnFYMcv3c5ZTr1A
0KLIMLehqdUV0nS8HBbmuiFfz75kq4Y34nf36ZJz1Ail9asnZy9fvHjyw+Mn
jzNNah7eGQmJ441J9xCIkduzhKJZhCuR5sdkGbVXhNOIZbf7UpSCTPmyNPTS
qLLmvRcbWP9SWb+PVP4kt6BaGl1/lBtwJV5fbZz95jxQIVXw3DOeO0mni/PT
UIjT0VtuxlpJ6FnSHnoo2Ha9hl9xzKKT4LNWWdMTcDV5B3ow8f/McZnMWJ3S
o1MThK1g6Pbz/yHKapyM2wq6KfFX6Y6p+2W/A4OX0gbvxjznmf2VZznhw7DZ
XYIW738xezBqYE+G0iUT6WIqO5Xjj5hP8HGz1bPLNIq176SvYMk55qY4YIKC
Hs/BBTd1s+UUlAqlQqTocLOXEvFKUpRrexaKCaq/wwa3S82ZK+Zds8EWkNgS
7ULMSNGhVDmVuOl1tVkuqE2qdhp0n2BD344Kq9xHsBkt9kFtOf9L66wmGd02
Y8JF9ptOKPcTyl+c/gete8FKGqlgyWWDCuCoN9pDpT4tqd7tW0zxwm+pLlqK
Syk3DrcpOER34iM2s5Qiu7rqoDTIvxzYQUZWgnANwi2R1mUmaydhCL/SYww1
fpHxWXZmWUB7o6fguCb1wX6ElMGrzaxuof8QzEtAD8XY67Kii72iNxVJfUVF
Uux8dz2EXSMxcR9xC7+0P0jyIINujB9QFJRwRx010WhrdH5jzSmrNtgWWR7z
hwwVUHQykAGKd6V2l4D4KXlUWByyb0sqLlYV9mW7zD2C941+MTcQDsHmDP6L
m3mIJNU7cMxb5rxghXF9weDVID2S0A4YJzxwrU28ay6cy628cEOy4kd+RsW1
LK1qx3rMGNUx+JBJCw3rjKP01TEqafFOvwp9J6JiiPVI7wkse58yQC6OEC1A
BEumrSaDbwXkhRu8hcqxK/wZujsq22YT6xZA2rdq45sen2FAx7WrpApDTbRL
ZJEgxAOzAlBC38aungzefklKbssJZ/KjKF+XI2g2KQSVXZ9lkaHJUNX70rgh
ORl9mDcvuxvvbRekWKi0JyCVjNvF0LtELxwBR0gzSZyr1MGrZIIDokTMRnyP
N7gLAw3YtieuGdZc2QJoTsh/udFgu5yi6XHQMkvqihngP3RBdnk0BxRwks2d
aOqAXaMZzYRjReM3yWc5xbnWQZpX0VK9bFSMQcnGOw/1E5bgOkuETTLrUuvG
3VNILFjTTYTSsNXw6Ow8GZQZvPKYqMqSa0DeF31SUCAYzn153DHM4R08xGqx
3xQo0FML8p51Kcm92UH88tXtHMQJhnoLOf3V7EE0o1t7lmFigWc54Zt1SHHk
axZsm5S/GWTarvl7eJuVO38yZ7Pp2EmHfcpmiFIDN+YMUnrdous44xTbLxZo
39z/AvGRQEXXJhYxr/Q//V0O3LCl2ijq72AftQtOiSPf79YIkH3nIsMRe74k
Som5M7z59ZgiwwA9XUpeHl3t8EjNz7/lFdNPv3aP0jTYlUTiBtudgbmv+5Nj
s1Kfyed2JbBDYQ+lHpLSFgz8WJC1COrEdsdR/jSoEHfakDerYDc9iLGlcDKx
5Zrzi69K9sRMZZrYPBhbvo6khkQtQzSF8DfdwHvTWlgqS9ZSPpJlz6XZGodm
4Ay5c4ZdnbtSWjB1qyumvWuKtPQX/+K81DAVOf0qgpkaE97iL9hU9dvkRJJ1
ecOdMdUzNwDFPG6olCNqxCOGKV37TXNJ+MMTu9EiTz4o7qjFWrUg1G3hXFhF
UAiVKbwL9SBNjR11yoNljzzeQ71Rf14q/E8IRZptQcmzbj85YuMY32qgwwZT
R8uoEI+ylKoG4YoI/OEld6V1lcyjZl3TIhSUpp356sX4EqHk7IZpSjESazrA
kW4lNctTNWHO2lIAhKCnt9fcbQ/2iXrrXJqwoQPXFzvoWoj2se1+jFoPWH9a
TTrKfEfWovFkjqvE3boxn2yloLbv3z8t+8UaY4+9Er03XTXlifAAu2M5UpoO
xdIahUDRHpKt6TsLnCZuD6pqoHAPPuVK1H3IMaTFoAeOTRJM9EBO7hsVRUXN
gQrb2VprtbhWj7eGrZ1gfcb9OGM94Yg3KDiLEAySCrsEq0AN/TC/bjK6GR+Z
6hfDcKqPILVdrkbQmA8e3aMfKBge4QJT+Rtqk70FGx7bcOVvXj0Hgfn9xcsf
KDMWQ+MXFE1ZHupi66NCNn6IiPNXjdOusHKaGy+xxGMwdLhZflZ6X/000Q4k
+2KuySY+0HCkktuBW7BtmvBtm6btg+o8uu2uhGvk9Fmg28lq1zSF2+Pf2W5v
1A7aIPbg2wYe2ICkMyGsYFM86GThnc5ygbzPUzgVWpt4dSfZWk3gAacg9cbz
xSW6yk9ck/ATmyzJOOPYF6AsMyE/ni9YCs2i2XBDW2RZfdMwDtu1vs9dUyoG
KeadVnhpyBFWmw263jvARTmywcxF8csZtUedL6fnz9yeZUCXsEkbdmQv+TGp
zF+jZ4mG38PDJYPEtqQLclYSOmZIQ80MG5Wly4rcITMGK8aqKupKa+E83AJk
v/wyJUPKaZ6Lfk96mnweyAG8EawySDzBsHndoIYgQVGF8vRhtlh2SbVJR1jZ
kvMC/dQUk5VtSFMvE0yTTgm7DDbLA26dTlXWwz64bPgIVV4WWOXP6KxcmsfB
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

-->

</rfc>
