<?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.6.17 (Ruby 3.1.2) -->
<rfc xmlns:xi="http://www.w3.org/2001/XInclude" ipr="trust200902" docName="draft-ietf-oauth-browser-based-apps-11" category="bcp" consensus="true" tocInclude="true" sortRefs="true" symRefs="true" version="3">
  <!-- xml2rfc v2v3 conversion 3.14.2 -->
  <front>
    <title>OAuth 2.0 for Browser-Based Apps</title>
    <seriesInfo name="Internet-Draft" value="draft-ietf-oauth-browser-based-apps-11"/>
    <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>
    <date year="2022" month="September" day="13"/>
    <area>Security</area>
    <workgroup>Web Authorization Protocol</workgroup>
    <keyword>Internet-Draft</keyword>
    <abstract>
      <t>This specification details the 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>
    <section anchor="introduction">
      <name>Introduction</name>
      <t>This specification describes the current best practices for implementing OAuth 2.0
authorization flows in applications executing in a browser.</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, and includes additional
considerations when running in a browser. This 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 draft expands on and further restricts various recommendations in <xref target="oauth-security-topics"/>.</t>
    </section>
    <section anchor="notational-conventions">
      <name>Notational Conventions</name>
      <t>The key words "MUST", "MUST NOT", "REQUIRED", "SHALL", "SHALL NOT",
"SHOULD", "SHOULD NOT", "RECOMMENDED", "NOT RECOMMENDED", "MAY", and
"OPTIONAL" in this document are to be interpreted as described in <xref target="RFC2119"/>.</t>
    </section>
    <section anchor="terminology">
      <name>Terminology</name>
      <t>In addition to the terms defined in referenced specifications, this document uses
the following terms:</t>
      <dl>
        <dt>"OAuth":</dt>
        <dd>
          <t>In this document, "OAuth" refers to OAuth 2.0, <xref target="RFC6749"/> and <xref target="RFC6750"/>.</t>
        </dd>
        <dt>"Browser-based application":</dt>
        <dd>
          <t>An application that is dynamically downloaded and executed in a web browser,
usually written in JavaScript. Also sometimes referred to as a "single-page application", or "SPA".</t>
        </dd>
      </dl>
    </section>
    <section anchor="overview">
      <name>Overview</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, the access token is never exposed in the less-secure front channel. Furthermore, adding PKCE to the flow 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.</t>
      <t>Browser-based applications:</t>
      <ul spacing="normal">
        <li>MUST use the OAuth 2.0 Authorization Code flow with the PKCE extension when obtaining an access token</li>
        <li>
          <t>MUST Protect themselves against CSRF attacks by either:
          </t>
          <ul spacing="normal">
            <li>ensuring the authorization server supports PKCE, or</li>
            <li>by using the OAuth 2.0 "state" parameter or the OpenID Connect "nonce" parameter to carry one-time use CSRF tokens</li>
          </ul>
        </li>
        <li>MUST Register one or more redirect URIs, and use only exact registered redirect URIs in authorization requests</li>
      </ul>
      <t>OAuth 2.0 authorization servers supporting browser-based applications:</t>
      <ul spacing="normal">
        <li>MUST Require exact matching of registered redirect URIs</li>
        <li>MUST Support the PKCE extension</li>
        <li>MUST NOT issue access tokens in the authorization response</li>
        <li>
          <t>If issuing refresh tokens to browser-based applications, then:
          </t>
          <ul spacing="normal">
            <li>MUST rotate refresh tokens on each use or use sender-constrained refresh tokens, and</li>
            <li>MUST set a maximum lifetime on refresh tokens or expire if they are not used in some amount of time</li>
          </ul>
        </li>
      </ul>
    </section>
    <section anchor="first-party-applications">
      <name>First-Party Applications</name>
      <t>While OAuth was initially created to allow third-party
applications to access an API on behalf of a user, it has proven to be
useful in a first-party scenario as well. First-party apps are applications where
the same organization provides both the API and the application.</t>
      <t>Examples of first-party applications are a web email client provided by the operator of the email account,
or a mobile banking application created by bank itself. (Note that there is no
requirement that the application actually be developed by the same company; a mobile
banking application developed by a contractor that is branded as the bank's
application is still considered a first-party application.) The first-party app
consideration is about the user's relationship to the application and the service.</t>
      <t>To conform to this best practice, first-party applications using OAuth or OpenID
Connect MUST use a redirect-based flow (such as the OAuth Authorization Code flow)
as described later in this document.</t>
      <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
multi-factor 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 be extended with custom code.</t>
    </section>
    <section anchor="application-architecture-patterns">
      <name>Application Architecture Patterns</name>
      <t>Here are the main architectural patterns available when building browser-based
applications.</t>
      <ul spacing="normal">
        <li>single-domain, not using OAuth</li>
        <li>
          <t>a JavaScript application with a stateful backend component
          </t>
          <ul spacing="normal">
            <li>storing tokens and proxying all requests (BFF Proxy)</li>
            <li>obtaining tokens and passing them to the frontend (Token Mediating Backend)</li>
          </ul>
        </li>
        <li>
          <t>a JavaScript application obtaining access tokens
          </t>
          <ul spacing="normal">
            <li>via JavaScript code executed in the DOM</li>
            <li>through a service worker</li>
          </ul>
        </li>
      </ul>
      <t>These architectures have different use cases and considerations.</t>
      <section anchor="single-domain-browser-based-apps-not-using-oauth">
        <name>Single-Domain Browser-Based Apps (not using OAuth)</name>
        <t>For simple system architectures, such as when the JavaScript application is served
from a domain that can share cookies with the domain of the API (resource server) and the authorization server,
OAuth adds additional attack vectors that could be avoided with a different solution.</t>
        <t>In particular, using any redirect-based mechanism of obtaining an access token
enables the redirect-based attacks described in <xref target="oauth-security-topics"/> Section 4, but if
the application, authorization server and resource server share a domain, then it is
unnecessary to use a redirect mechanism to communicate between them.</t>
        <t>An additional concern with handling access tokens in a browser is that
in case of successful cross-site scripting (XSS) attack, tokens could be read and further used or transmitted by the injected code if no
secure storage mechanism is in place.</t>
        <t>As such, it could be considered to use an HTTP-only cookie between the JavaScript application
and API so that the JavaScript code can't access the cookie value itself. The <tt>Secure</tt> cookie attribute should be used to ensure the cookie is not included in unencrypted HTTP requests. Additionally, the <tt>SameSite</tt> cookie attribute can be used to counter some CSRF attacks,
but should not be considered the extent of the CSRF protection, as described in <xref target="draft-ietf-httpbis-rfc6265bis"/></t>
        <t>OAuth was originally created for third-party or federated access to APIs, so it may not be
the best solution in a common-domain deployment. That said, there are still some advantages
in using OAuth even in a common-domain architecture:</t>
        <ul spacing="normal">
          <li>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.</li>
          <li>Being able to take advantage of existing library support rather than writing bespoke code for the integration.</li>
          <li>Centralizing login and multifactor support, account management, and recovery at the OAuth server, rather than making it part of the application logic.</li>
          <li>Splitting of responsibilities between authenticating a user and serving resources</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 below.</t>
      </section>
      <section anchor="backend-for-frontend-bff-proxy">
        <name>Backend For Frontend (BFF) Proxy</name>
        <artwork><![CDATA[
+-------------+  +--------------+ +---------------+
|             |  |              | |               |
|Authorization|  |    Token     | |   Resource    |
|  Endpoint   |  |   Endpoint   | |    Server     |
|             |  |              | |               |
+-------------+  +--------------+ +---------------+

       ^                ^                   ^
       |             (D)|                (G)|
       |                v                   v
       |
       |         +--------------------------------------+
       |         |                                      |
       |         |   Backend for Frontend Proxy (BFF)   |
    (B)|         |                                      |
       |         +--------------------------------------+
       |
       |           ^     ^     +          ^    +
       |        (A)|  (C)|  (E)|       (F)|    |(H)
       v           v     +     v          +    v

+-------------------------------------------------+
|                                                 |
|                   Browser                       |
|                                                 |
+-------------------------------------------------+
]]></artwork>
        <t>In this architecture, commonly referred to as "backend for frontend" or "BFF", the JavaScript code is loaded from a dynamic BFF Proxy (A) that has the ability to execute code and handle the full authentication flow itself. This enables the ability to keep
the call to actually get an access token outside the JavaScript application.</t>
        <t>Note that this BFF Proxy is not the Resource Server, it is the OAuth client and would be accessing data at a separate resource server.</t>
        <t>In this case, the BFF Proxy initiates the OAuth flow itself, by redirecting the browser to the authorization endpoint (B). When the user is redirected back, the browser delivers the authorization code to the BFF Proxy (C), where it can then exchange it for an access token at the token endpoint (D) using its client secret and PKCE code verifier.
The BFF Proxy then keeps the access token and refresh token stored internally, and creates a separate session with the browser-based app via a
traditional browser cookie (E).</t>
        <t>When the JavaScript application in the browser wants to make a request to the Resource Server,
it instead makes the request to the BFF Proxy (F), and the BFF Proxy will
make the request with the access token to the Resource Server (G), and forward the response (H)
back to the browser.</t>
        <t>(Common examples of this architecture are an Angular front-end with a .NET backend, or
a React front-end with a Spring Boot backend.)</t>
        <t>The BFF Proxy SHOULD be considered a confidential client, and issued its own client secret. The BFF Proxy 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>
        <t>In this scenario, the connection between the browser and BFF Proxy SHOULD be a
session cookie provided by the BFF Proxy.</t>
        <section anchor="security-considerations">
          <name>Security considerations</name>
          <t>Security of the connection between code running in the browser and this BFF Proxy is
assumed to utilize browser-level protection mechanisms. Details are out of scope of
this document, but many recommendations can be found in the OWASP Cheat Sheet series (https://cheatsheetseries.owasp.org/),
such as setting an HTTP-only and <tt>Secure</tt> cookie to authenticate the session between the
browser and BFF Proxy. Additionally, cookies MUST be protected from leakage by other means, such as logs.</t>
          <t>In this architecture, tokens are never sent to the front-end and are never accessible by any JavaScript code, so it fully protects against XSS attackers stealing tokens. However, an XSS attacker may still be able to make authenticated requests to the BFF Proxy which will in turn make requests to the resource server including the user's legitimate token. While the attacker is unable to extract and use the access token elsewhere, they can still effectively make authenticated requests to the resource server.</t>
        </section>
      </section>
      <section anchor="token-mediating-backend">
        <name>Token Mediating Backend</name>
        <t>An alternative to a full BFF where all resource requests go through the backend is to use a token mediating backend which obtains the tokens and then forwards the tokens to the browser.</t>
        <artwork><![CDATA[
+-------------+  +--------------+ +---------------+
|             |  |              | |               |
|Authorization|  |    Token     | |   Resource    |
|  Endpoint   |  |   Endpoint   | |    Server     |
|             |  |              | |               |
+-------------+  +--------------+ +---------------+

       ^                ^                      ^
       |             (D)|                      |
       |                v                      |
       |                                       |
       |    +-------------------------+        |
       |    |                         |        |
       |    | Token Mediating Backend |        |
    (B)|    |                         |        |
       |    +-------------------------+        |
       |                                       |
       |           ^     ^     +               |
       |        (A)|  (C)|  (E)|            (F)|
       v           v     +     v               +

+-------------------------------------------------+
|                                                 |
|                   Browser                       |
|                                                 |
+-------------------------------------------------+
]]></artwork>
        <t>The frontend code makes a request to the Token Mediating Backend (A), and the backend initiates the OAuth flow itself, by redirecting the browser to the authorization endpoint (B). When the user is redirected back, the browser delivers the authorization code to the application server (C), where it can then exchange it for an access token at the token endpoint (D) using its client secret and PKCE code verifier. The backend delivers the tokens to the browser (E), which stores them for later use. The browser makes requests to the resource server directly (F) including the token it has stored.</t>
        <t>The main advantage this architecture provides over the full BFF architecture previously described is that the backend service is only involved in the acquisition of tokens, and doesn't have to proxy every request in the future. Routing every API call through a backend can be expensive in terms of performance and latency, and can create challenges in deploying the application across many regions. Instead, routing only the token acquisition through a backend means fewer requests are made to the backend. This improves the performance and reduces the latency of requests from the frontend, and reduces the amount of infrastructure needed in the backend.</t>
        <t>Similar to the previously described BFF Proxy pattern, The Token Mediating Backend SHOULD be considered a confidential client, and issued its own client secret. 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>
        <t>In this scenario, the connection between the browser and Token Mediating Backend SHOULD be a session cookie provided by the backend.</t>
        <t>The Token Mediating Backend SHOULD cache tokens it obtains from the authorization server such that when the frontend needs to obtain new tokens, it can do so without the additional round trip to the authorization server if the tokens are still valid.</t>
        <t>The frontend SHOULD NOT persist tokens in local storage or similar mechanisms; instead, the frontend SHOULD store tokens only in memory, and make a new request to the backend if no tokens exist. This provides fewer attack vectors for token exfiltration should an XSS attack be successful.</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>
        <!-- TODO: Reference TMI BFF if the draft is picked up again https://www.ietf.org/archive/id/draft-bertocci-oauth2-tmi-bff-01.html -->

<section anchor="security-considerations-1">
          <name>Security Considerations</name>
          <t>If the backend caches tokens from the authorization server, it presents scopes elevation risks if applied indiscriminately. If the token cached by the authorization server features a superset of the scopes requested by the frontend, the backend SHOULD NOT return it to the frontend; instead it SHOULD perform a new request with the smaller set of scopes to the authorization server.</t>
          <t>In the case of a successful XSS attack, the attacker may be able to access the tokens if the tokens are persisted in the frontend, but is less likely to be able to access the tokens if they are stored only in memory. However, a successful XSS attack will also allow the attacker to call the Token Mediating Backend itself to retrieve the cached token or start a new OAuth flow.</t>
        </section>
      </section>
      <section anchor="javascript-applications-obtaining-tokens-directly">
        <name>JavaScript Applications obtaining tokens directly</name>
        <t>This section describes the architecture of a JavaScript application obtaining tokens from the authorization itself, with no intermediate proxy server.</t>
        <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 issue it a client secret in this model.</t>
        <t>The code in the browser initiates the Authorization Code flow with the PKCE
extension (described in <xref target="authorization_code_flow"/>) (B) above, and obtains an
access token via a POST request (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.</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. It includes the access token in the request (D)
and receives the Resource Server's response (E).</t>
        <t>In this scenario, the Authorization Server and Resource Server MUST support
the necessary CORS headers to enable the JavaScript code to make these POST requests
from the domain on which the script is executing. (See <xref target="cors"/> for additional details.)</t>
        <t>Besides the general risks of XSS, if tokens are stored or handled by the browser, XSS poses an additional risk of token exfiltration. In this architecture, the JavaScript application is storing the access token so that it can make requests directly to the resource server. There are two primary methods by which the application can store the token, with different security considerations of each.</t>
        <section anchor="storing-tokens-in-local-or-session-storage">
          <name>Storing Tokens in Local or Session Storage</name>
          <t>If the JavaScript in the DOM will be making requests directly to the resource server, the simplest mechanism is to store the tokens somewhere accessible to the DOM.</t>
          <t>In case of a successful XSS attack, the injected code will have full access to the stored tokens and can exfiltrate them to the attacker.</t>
        </section>
        <section anchor="service-worker-as-the-oauth-client">
          <name>Service Worker as the OAuth Client</name>
          <t>In this scenario, a <eref target="https://developer.mozilla.org/en-US/docs/Web/API/Service_Worker_API">Service Worker</eref> is responsible for obtaining tokens from the authorization server and making requests to the resource server.</t>
          <t>Service workers are run in a separate context from the DOM, have no access to the DOM, and the DOM has no access to the service worker. This makes service workers the most secure place to store tokens, as an XSS attack is unable to exfiltrate the tokens.</t>
          <t>In this architecture, a service worker intercepts calls from the frontend to the resource server. As such, it completely isolates calls to the authorization server from XSS attack surface, as all tokens are safely kept in the service worker context without any access from other JavaScript contexts. The service worker is then solely responsible for adding the token in the authorization header to calls to 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>
          <section anchor="implementation-guidelines">
            <name>Implementation Guidelines</name>
            <ul spacing="normal">
              <li>The service worker MUST initiate the OAuth 2.0 Authorization Code grant with PKCE itself.</li>
              <li>The service worker MUST intercept the authorization code when the <em>authorization server</em> redirects to the application.</li>
              <li>The service worker implementation MUST then initiate the token request itself.</li>
              <li>The service worker MUST not transmit tokens, authorization codes or PKCE secrets (e.g. code verifier) to the frontend application.</li>
              <li>The service worker MUST block authorization requests and token requests initiating from the frontend application in order to avoid any front-end side-channel for getting credentials: the only way of starting the authorization flow is through the service worker. This protects against re-authorization from XSS-injected code.</li>
              <li>The application MUST register the Service Worker before running any code interacting with the user.</li>
            </ul>
          </section>
          <section anchor="security-considerations-2">
            <name>Security Considerations</name>
            <t>A successful XSS attack on an application using this Service Worker pattern would be unable to exfiltrate existing tokens stored by the application. However, an XSS attacker may still be able to cause the Service Worker to make authenticated requests to the resource server including the user's legitimate token.</t>
            <t>In case of a vulnerability leading to the Service Worker not being registered, an XSS attack would result in the attacker being able to initiate a new OAuth flow to obtain new tokens itself.</t>
            <t>To prevent the Service Worker from being unregistered, the Service Worker registration must happen as first step of the application start, and before any user interaction. Starting the Service worker before the rest of the application, and the fact that <eref target="https://www.w3.org/TR/service-workers/#navigator-service-worker-unregister">there is no way to remove a Service Worker from an active application</eref>, reduces the risk of an XSS attack being able to prevent the Service Worker from being registered.</t>
          </section>
        </section>
      </section>
    </section>
    <section anchor="authorization_code_flow">
      <name>Authorization Code Flow</name>
      <t>Browser-based applications that are public clients and use the Authorization Code grant type described in
Section 4.1 of OAuth 2.0 <xref target="RFC6749"/> MUST also follow these additional requirements
described in this section.</t>
      <section anchor="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>
        <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>using PKCE, and confirming that the authorization server supports PKCE</li>
          <li>using a unique value for the OAuth 2.0 "state" parameter</li>
          <li>if the application is using OpenID Connect, by using the OpenID Connect "nonce" parameter</li>
        </ul>
      </section>
      <section anchor="auth_code_redirect">
        <name>Handling the Authorization Code Redirect</name>
        <t>Authorization servers MUST require an exact match of a registered redirect URI.
As described in <xref target="oauth-security-topics"/> Section 4.1.1. this helps to prevent attacks targeting the authorization code.</t>
      </section>
    </section>
    <section anchor="refresh_tokens">
      <name>Refresh Tokens</name>
      <t>Refresh tokens provide a way for applications to obtain a new access token when the
initial access token expires. With public clients, 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>Javascript-accessible storage mechanisms like <em>Local Storage</em> provide an attacker with several opportunities by which a
refresh token can be leaked, just as with access tokens. As such, these mechanisms
are considered a higher risk for handling refresh tokens.</t>
      <t>Authorization servers may choose whether or not to issue refresh tokens to browser-based
applications. <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>MUST either rotate refresh tokens on each use OR use sender-constrained refresh tokens as described in <xref target="oauth-security-topics"/> Section 4.13.2</li>
        <li>MUST either set a maximum lifetime on refresh tokens OR expire if the refresh token has not been used within some amount of time</li>
        <li>MUST NOT extend the lifetime of the new refresh token beyond the lifetime of the initial refresh token</li>
        <li>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</li>
      </ul>
      <t>For example:</t>
      <ul spacing="normal">
        <li>A user authorizes an application, issuing an access token that lasts 1 hour, and a refresh token that lasts 24 hours</li>
        <li>After 1 hour, the initial access token expires, so the application uses the refresh token to get a new access token</li>
        <li>The authorization server returns a new access token that lasts 1 hour, and a new refresh token that lasts 23 hours</li>
        <li>This continues until 24 hours pass from the initial authorization</li>
        <li>At this point, when the application attempts to use the refresh token after 24 hours, the request will fail and the application will have to involve the user in a new authorization request</li>
      </ul>
      <t>By limiting the overall refresh token lifetime to the lifetime of the initial refresh token, this ensures a stolen refresh token cannot be used indefinitely.</t>
      <t>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="security-considerations-3">
      <name>Security Considerations</name>
      <section anchor="cross-site-scripting">
        <name>Cross-Site Scripting Attacks (XSS)</name>
        <t>For all known architectures, all precautions MUST be taken to prevent cross-site scripting (XSS) attacks.
In general, XSS attacks are a huge risk, and can lead to full compromise of the application.</t>
        <t>If tokens are handled or accessible by the browser, there is a risk that a XSS attack can lead to token exfiltration.</t>
        <t>Even if tokens are never sent to the frontend and are never accessible by any JavaScript code, an XSS attacker may still be able to make authenticated requests to the resource server by mimicking legitimate code in the DOM. For example, the attacker may make a request to the BFF Proxy which will in turn make requests to the resource server including the user's legitimate token. In the Service Worker example, the attacker may make an API call to the Service Worker which will then turn around and make a request to the resource server with the legitimate token. While the attacker is unable to extract and use the access token elsewhere, they can still effectively make authenticated requests to the resource server to steal or modify data.</t>
      </section>
      <section anchor="token-exfiltration">
        <name>Reducing the Impact of Token Exfiltration</name>
        <t>If tokens are ever accessible to the browser or to any JavaScript code, there is always a risk of token exfiltration. The particular risk may change depending on the architecture chosen. Regardless of the particular architecture chosen, these additional security considerations limit the impact of token exfiltration:</t>
        <ul spacing="normal">
          <li>The authorization server SHOULD restrict access tokens to strictly needed resources, to avoid escalating the scope of the attack.</li>
          <li>To avoid information disclosure from ID Tokens, the authorization server SHOULD NOT include any ID token claims that aren't used by the frontend.</li>
          <li>Refresh tokens should be used in accordance with the guidance in <xref target="refresh_tokens"/>.</li>
        </ul>
      </section>
      <section anchor="client_registration">
        <name>Registration of Browser-Based Apps</name>
        <t>Browser-based applications (with no backend) 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.</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 little value beyond
client identification which is already provided by the client_id request 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>
      <section anchor="csrf_protection">
        <name>Cross-Site Request Forgery Protections</name>
        <t>Clients MUST prevent Cross-Site Request Forgery (CSRF) attacks against their redirect URI.
Clients can accomplish this by either ensuring the authorization server supports
PKCE and relying on the CSRF protection that PKCE provides, or if the client is also an
OpenID Connect client, using the OpenID Connect "nonce" parameter, or by using the
"state" parameter to carry one-time-use CSRF tokens as described in <xref target="auth_code_request"/>.</t>
        <t>See Section 2.1 of <xref target="oauth-security-topics"/> for additional details.</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 "iss" response
parameter, as defined in <xref target="oauth-iss-auth-resp"/>, or by using the "iss" Claim of the ID token
when OpenID Connect is used.</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="cors">
        <name>Cross-Domain Requests</name>
        <t>To complete the Authorization Code flow, the browser-based application will
need to exchange the authorization code for an access token at the token endpoint.
If the authorization server provides additional endpoints to the application, such
as metadata URLs, dynamic client registration, revocation, introspection, discovery or
user info endpoints, these endpoints may also be accessed by the browser-based app.
Since these requests will be made from a browser, authorization servers MUST support
the necessary CORS headers (defined in <xref target="Fetch"/>) to allow the browser to make the
request.</t>
        <t>This specification does not include guidelines for deciding whether a CORS policy
for the token endpoint should be a wildcard origin or more restrictive. Note,
however, that the browser will attempt to GET or POST to the API endpoint before
knowing any CORS policy; it simply hides the succeeding or failing result from
JavaScript if the policy does not allow sharing.</t>
      </section>
      <section anchor="csp">
        <name>Content Security Policy</name>
        <t>A browser-based application that wishes to use either long-lived refresh tokens or
privileged scopes SHOULD restrict its JavaScript execution to a set of statically
hosted scripts via a Content Security Policy (<xref target="CSP2"/>) or similar mechanism. A
strong Content Security Policy can limit the potential attack vectors for malicious
JavaScript to be executed on the page.</t>
      </section>
      <section anchor="implicit_flow">
        <name>OAuth Implicit Flow</name>
        <t>The OAuth 2.0 Implicit flow (defined in Section 4.2 of
OAuth 2.0 <xref target="RFC6749"/>) works by the authorization server issuing an access token in the
authorization response (front channel) without the code exchange step. In this case, the access
token is returned in the fragment part of the redirect URI, providing an attacker
with several opportunities to intercept and steal the access token.</t>
        <t>Authorization servers MUST NOT issue access tokens in the authorization response, and MUST issue
access tokens only from the token endpoint.</t>
        <section anchor="attacks-on-the-implicit-flow">
          <name>Attacks on the Implicit Flow</name>
          <t>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 man-in-the-middle attacks 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="countermeasures">
          <name>Countermeasures</name>
          <t>In addition to the countermeasures described by <xref target="RFC6819"/> and <xref target="oauth-security-topics"/>,
using the Authorization Code flow with PKCE extension prevents the attacks described above by
avoiding returning the access token in the redirect response at all.</t>
          <t>When PKCE is used, if an authorization code is stolen in transport, the attacker is
unable to do anything with the authorization code.</t>
        </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>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.</li>
            <li>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.</li>
            <li>Supporting the Implicit flow requires additional code, more upkeep and
understanding of the related security considerations, while limiting the
authorization server to just the Authorization Code flow reduces the attack surface
of the implementation.</li>
            <li>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.</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. Additionally,
in many cases an application will request both an ID token and an access token, so it is
simplier and provides fewer attack vectors to obtain both via the Authorization Code flow.</t>
        </section>
        <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.</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. This means modern browser-based apps can
use the unmodified OAuth 2.0 Authorization Code flow, since they have the ability to
remove the authorization code from the query string without triggering a page reload
thanks to the Session History API.</t>
        </section>
      </section>
      <section anchor="additional-security-considerations">
        <name>Additional Security Considerations</name>
        <t>The OWASP Foundation (https://www.owasp.org/) maintains a set of security
recommendations and best practices for web applications, and it is RECOMMENDED
to follow these best practices when creating an OAuth 2.0 Browser-Based application.</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>
        <name>Normative References</name>
        <reference anchor="RFC2119" target="https://www.rfc-editor.org/info/rfc2119" xml:base="https://bib.ietf.org/public/rfc/bibxml/reference.RFC.2119.xml">
          <front>
            <title>Key words for use in RFCs to Indicate Requirement Levels</title>
            <author fullname="S. Bradner" initials="S." surname="Bradner"/>
            <date month="March" year="1997"/>
            <abstract>
              <t>In many standards track documents several words are used to signify the requirements in the specification.  These words are often capitalized.  This document defines these words as they should be interpreted in IETF documents.  This document specifies an Internet Best Current Practices for the Internet Community, and requests discussion and suggestions for improvements.</t>
            </abstract>
          </front>
          <seriesInfo name="BCP" value="14"/>
          <seriesInfo name="RFC" value="2119"/>
          <seriesInfo name="DOI" value="10.17487/RFC2119"/>
        </reference>
        <reference anchor="RFC6749" target="https://www.rfc-editor.org/info/rfc6749" xml:base="https://bib.ietf.org/public/rfc/bibxml/reference.RFC.6749.xml">
          <front>
            <title>The OAuth 2.0 Authorization Framework</title>
            <author fullname="D. Hardt" initials="D." role="editor" surname="Hardt"/>
            <date month="October" year="2012"/>
            <abstract>
              <t>The OAuth 2.0 authorization framework enables a third-party application to obtain limited access to an HTTP service, either on behalf of a resource owner by orchestrating an approval interaction between the resource owner and the HTTP service, or by allowing the third-party application to obtain access on its own behalf.  This specification replaces and obsoletes the OAuth 1.0 protocol described in RFC 5849. [STANDARDS-TRACK]</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="6749"/>
          <seriesInfo name="DOI" value="10.17487/RFC6749"/>
        </reference>
        <reference anchor="RFC6750" target="https://www.rfc-editor.org/info/rfc6750" xml:base="https://bib.ietf.org/public/rfc/bibxml/reference.RFC.6750.xml">
          <front>
            <title>The OAuth 2.0 Authorization Framework: Bearer Token Usage</title>
            <author fullname="M. Jones" initials="M." surname="Jones"/>
            <author fullname="D. Hardt" initials="D." surname="Hardt"/>
            <date month="October" year="2012"/>
            <abstract>
              <t>This specification describes how to use bearer tokens in HTTP requests to access OAuth 2.0 protected resources.  Any party in possession of a bearer token (a "bearer") can use it to get access to the associated resources (without demonstrating possession of a cryptographic key).  To prevent misuse, bearer tokens need to be protected from disclosure in storage and in transport. [STANDARDS-TRACK]</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="6750"/>
          <seriesInfo name="DOI" value="10.17487/RFC6750"/>
        </reference>
        <reference anchor="RFC6819" target="https://www.rfc-editor.org/info/rfc6819" xml:base="https://bib.ietf.org/public/rfc/bibxml/reference.RFC.6819.xml">
          <front>
            <title>OAuth 2.0 Threat Model and Security Considerations</title>
            <author fullname="T. Lodderstedt" initials="T." role="editor" surname="Lodderstedt"/>
            <author fullname="M. McGloin" initials="M." surname="McGloin"/>
            <author fullname="P. Hunt" initials="P." surname="Hunt"/>
            <date month="January" year="2013"/>
            <abstract>
              <t>This document gives additional security considerations for OAuth, beyond those in the OAuth 2.0 specification, based on a comprehensive threat model for the OAuth 2.0 protocol.  This document is not an Internet Standards Track specification; it is published for informational purposes.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="6819"/>
          <seriesInfo name="DOI" value="10.17487/RFC6819"/>
        </reference>
        <reference anchor="RFC7636" target="https://www.rfc-editor.org/info/rfc7636" xml:base="https://bib.ietf.org/public/rfc/bibxml/reference.RFC.7636.xml">
          <front>
            <title>Proof Key for Code Exchange by OAuth Public Clients</title>
            <author fullname="N. Sakimura" initials="N." role="editor" surname="Sakimura"/>
            <author fullname="J. Bradley" initials="J." surname="Bradley"/>
            <author fullname="N. Agarwal" initials="N." surname="Agarwal"/>
            <date month="September" year="2015"/>
            <abstract>
              <t>OAuth 2.0 public clients utilizing the Authorization Code Grant are susceptible to the authorization code interception attack.  This specification describes the attack as well as a technique to mitigate against the threat through the use of Proof Key for Code Exchange (PKCE, pronounced "pixy").</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="7636"/>
          <seriesInfo name="DOI" value="10.17487/RFC7636"/>
        </reference>
        <reference anchor="RFC8252" target="https://www.rfc-editor.org/info/rfc8252" xml:base="https://bib.ietf.org/public/rfc/bibxml/reference.RFC.8252.xml">
          <front>
            <title>OAuth 2.0 for Native Apps</title>
            <author fullname="W. Denniss" initials="W." surname="Denniss"/>
            <author fullname="J. Bradley" initials="J." surname="Bradley"/>
            <date month="October" year="2017"/>
            <abstract>
              <t>OAuth 2.0 authorization requests from native apps should only be made through external user-agents, primarily the user's browser.  This specification details the security and usability reasons why this is the case and how native apps and authorization servers can implement this best practice.</t>
            </abstract>
          </front>
          <seriesInfo name="BCP" value="212"/>
          <seriesInfo name="RFC" value="8252"/>
          <seriesInfo name="DOI" value="10.17487/RFC8252"/>
        </reference>
        <reference anchor="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="CSP2">
          <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="Fetch">
          <front>
            <title>Fetch</title>
            <author initials="" surname="whatwg" fullname="whatwg">
              <organization/>
            </author>
            <date year="2018"/>
          </front>
        </reference>
        <reference anchor="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>
        <reference anchor="oauth-iss-auth-resp">
          <front>
            <title>OAuth 2.0 Authorization Server Issuer Identifier in Authorization Response</title>
            <author initials="K." surname="Meyer zu Selhausen" fullname="Karsten Meyer zu Selhausen">
              <organization>Hackmanit</organization>
            </author>
            <author initials="D." surname="Fett" fullname="Daniel Fett">
              <organization>yes.com</organization>
            </author>
            <date year="2021" month="January"/>
          </front>
        </reference>
      </references>
      <references>
        <name>Informative References</name>
        <reference anchor="HTML">
          <front>
            <title>HTML</title>
            <author initials="" surname="whatwg" fullname="whatwg">
              <organization/>
            </author>
            <date year="2020"/>
          </front>
        </reference>
        <reference anchor="tmi-bff">
          <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>
      </references>
    </references>
    <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>Require "https" scheme redirect URIs.</li>
        <li>Require exact matching of registered redirect URIs.</li>
        <li>Support PKCE <xref target="RFC7636"/>. Required to protect authorization code
grants sent to public clients. See <xref target="auth_code_request"/></li>
        <li>Support cross-domain requests at the token endpoint in order to allow browsers
to make the authorization code exchange request. See <xref target="cors"/></li>
        <li>Not assume that browser-based clients can keep a secret, and SHOULD NOT issue
secrets to applications of this type.</li>
        <li>Not support the Resource Owner Password grant for browser-based clients.</li>
        <li>Follow the <xref target="oauth-security-topics"/> recommendations on refresh tokens, as well
as the additional requirements described in <xref target="refresh_tokens"/>.</li>
      </ol>
    </section>
    <section anchor="document-history">
      <name>Document History</name>
      <t>[[ To be removed from the final specification ]]</t>
      <t>-11</t>
      <ul spacing="normal">
        <li>Added a new architecture pattern: Token Mediating Backend</li>
        <li>Revised and added clarifications for the Service Worker pattern</li>
        <li>Editorial improvements in descriptions of the different architectures</li>
        <li>Rephrased headers</li>
      </ul>
      <t>-10</t>
      <ul spacing="normal">
        <li>Revised the names of the architectural patterns</li>
        <li>Added a new pattern using a service worker as the OAuth client to manage tokens</li>
        <li>Added some considerations when storing tokens in Local or Session Storage</li>
      </ul>
      <t>-09</t>
      <ul spacing="normal">
        <li>Provide additional context for the same-domain architecture pattern</li>
        <li>Added reference to draft-ietf-httpbis-rfc6265bis to clarify that SameSite is not the only CSRF protection measure needed</li>
        <li>Editorial improvements</li>
      </ul>
      <t>-08</t>
      <ul spacing="normal">
        <li>Added a note to use the "Secure" cookie attribute in addition to SameSite etc</li>
        <li>Updates to bring this draft in sync with the latest Security BCP</li>
        <li>Updated text for mix-up countermeasures to reference the new "iss" extension</li>
        <li>Changed "SHOULD" for refresh token rotation to MUST either use rotation or sender-constraining to match the Security BCP</li>
        <li>Fixed references to other specs and extensions</li>
        <li>Editorial improvements in descriptions of the different architectures</li>
      </ul>
      <t>-07</t>
      <ul spacing="normal">
        <li>Clarify PKCE requirements apply only to issuing access tokens</li>
        <li>Change "MUST" to "SHOULD" for refresh token rotation</li>
        <li>Editorial clarifications</li>
      </ul>
      <t>-06</t>
      <ul spacing="normal">
        <li>Added refresh token requirements to AS summary</li>
        <li>Editorial clarifications</li>
      </ul>
      <t>-05</t>
      <ul spacing="normal">
        <li>Incorporated editorial and substantive feedback from Mike Jones</li>
        <li>Added references to "nonce" as another way to prevent CSRF attacks</li>
        <li>Updated headers in the Implicit Flow section to better represent the relationship between the paragraphs</li>
      </ul>
      <t>-04</t>
      <ul spacing="normal">
        <li>Disallow the use of the Password Grant</li>
        <li>Add PKCE support to summary list for authorization server requirements</li>
        <li>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</li>
        <li>Updated recommendations on using state to reflect the Security BCP</li>
        <li>Updated server support checklist to reflect latest changes</li>
        <li>Updated the same-domain JS architecture section to emphasize the architecture rather than domain</li>
        <li>Editorial clarifications in the section that talks about OpenID Connect ID tokens</li>
      </ul>
      <t>-03</t>
      <ul spacing="normal">
        <li>Updated the historic note about the fragment URL clarifying that the Session History API means browsers can use the unmodified authorization code flow</li>
        <li>Rephrased "Authorization Code Flow" intro paragraph to better lead into the next two sections</li>
        <li>Softened "is likely a better decision to avoid using OAuth entirely" to "it may be..." for common-domain deployments</li>
        <li>Updated abstract to not be limited to public clients, since the later sections talk about confidential clients</li>
        <li>Removed references to avoiding OpenID Connect for same-domain architectures</li>
        <li>Updated headers to better describe architectures (Apps Served from a Static Web Server -&gt; JavaScript Applications without a Backend)</li>
        <li>Expanded "same-domain architecture" section to better explain the problems that OAuth has in this scenario</li>
        <li>Referenced Security BCP in implicit flow attacks where possible</li>
        <li>Minor typo corrections</li>
      </ul>
      <t>-02</t>
      <ul spacing="normal">
        <li>Rewrote overview section incorporating feedback from Leo Tohill</li>
        <li>Updated summary recommendation bullet points to split out application and server requirements</li>
        <li>Removed the allowance on hostname-only redirect URI matching, now requiring exact redirect URI matching</li>
        <li>Updated Section 6.2 to drop reference of SPA with a backend component being a public client</li>
        <li>Expanded the architecture section to explicitly mention three architectural patterns available to JS apps</li>
      </ul>
      <t>-01</t>
      <ul spacing="normal">
        <li>Incorporated feedback from Torsten Lodderstedt</li>
        <li>Updated abstract</li>
        <li>Clarified the definition of browser-based apps to not exclude applications cached in the browser, e.g. via Service Workers</li>
        <li>Clarified use of the state parameter for CSRF protection</li>
        <li>Added background information about the original reason the implicit flow was created due to lack of CORS support</li>
        <li>Clarified the same-domain use case where the SPA and API share a cookie domain</li>
        <li>Moved historic note about the fragment URL into the Overview</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,
George Fletcher, Hannes Tschofenig, Janak Amarasena, John Bradley, Joseph Heenan,
Justin Richer, Karl McGuinness, Karsten Meyer zu Selhausen, Leo Tohill, Mike Jones,
Philippe De Ryck, Tomek Stojecki, Torsten Lodderstedt, Vittorio Bertocci and Yannick Majoros.</t>
    </section>
  </back>
  <!-- ##markdown-source:
H4sIAAAAAAAAA+19a3fb1pXod/wKXOVDpYakbeXRVG2zRpatWKkV60rKZLq6
OskhcCiiAgEOAEpmHP/3u1/nCYCS3dzMmrVGnYklEjiPffb7dabTadIVXamP
0jfHm26ZHs6epou6SZ839X2rm+lz1eo8PV6v2ySvs0qt4Mm8UYtuWuhuMa0V
vDSdy8NzfHiq4OHps2dJUqybo7RrNm13+PTpH58eJqrR6ii90tmmKbptcl83
tzdNvVkfpT/oeYrz103xs+qKukovmrqrs7pMbu+P0rOq002lu+kLnDrJVHeU
zrN1kmR1XlQ3R+mmnao2K4pkXRwlaQpvHqVb3cKvbd10jV609u/tyv2ZKJoT
X5nC/6dpUcE3x7P0Apaa3Rb0GW/6WDW4Ku/zuoGJ39x2iv7SK1WUR6nCx/5t
zY/NsnpFX8J+j9Jl163boydP6JHwCW/yF7P0B1V02pv6hborcu9TmvgC9p2e
5brqEJTeCnJ8+t9UeavKotLTti43CNCWpkqqulkBgO807vny9OTw2bM/yq9f
/uFz9+sXT82vX9kH/vDlZ1/Kr18dfnGIv3qogNubF+20WWRfHn75Bfx6RMsS
9No7qevbQsMOX11fX6RXnep0eq4qdaNXsIn0XGdLVRXtao/eyuFrgG7W1XPd
pIdPD58JIEsHyK6uy3aGk88AJE+K/MnO5Uyf/nG27FYlDeQOHqAvcH49S0+W
uqLPBMrf1PVNqdPXr0+CJ69m6csKvliqJu/858/rn4uyVMHD53Ciuu0eMey3
8GRRqirXjf80UF+pJ0AEGXx6cnVxGAD2pAbiAAAaskov6rLItqO7PC9utb8g
wrrRNZpp+yfy7Kv+idzf38/uP6PTuL58Akv97Ak8dKq7bBmsmT7prdDg+/1S
dfc3/vK8T3gZw9MvcNhZu9bZjN+glcBzzKZagdC0q9dFFqKn434Wjs8BIOnJ
pmkQuheNyroi06Ngva6bFs4hfV3ncHzwax4A+Ho28A3BGfiQ5RMWEeplBSxY
5aXe+qMAgoSf0gh/28yLrA4GOK7yRm/T12q+AbbZ+mMAd4s+pkFOVabnQKLB
MC+AInWJxxVsBniU91FvF3xEx+umKB9HuUiVT3pSJToue4xFC8wef2l0ux45
xFCWXOnmDnD2rG03+A8xzUUBvxZV9OQlDAm8cvyY/6r4mM/1Ft7/eQNjl0u1
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
6i8g4Ck3Ppw1oWxoq2zHxQ3wsacxzcJ8y1GRnUjTcWvTYNeDk4tBheuDrklL
BveADDz6RJGuTiUlO+9L6LeTHdyQuyuC7+h4xLUKby4fd63CQIfLRzDaz2aH
0YoefR8DLCy4jyFiGUH2PDX4REIauaXBu+SCu2/TgG5ynoCTrv1J5npbjzxs
+G7IN0G+r0ks85UYSg4gAubkN1rOOOQUCjzQ2pW5uJNALelrdK/FKd2HQc1p
uH2nNG400ac28qNM3KYjlZP0o1Kha+JZCuy7ESU6lgHuscPP6Tm8vuQYr/O0
7/k7HRJ4E85q0ZGDx7YHimQO9dvqiRzjwBrS5swtYgMSeXSb/XP0t/qZ3Srr
pCIxMUjf4eW8AgrqYu6ciRYIgcsbwCUdwKhYdeK8vEFxYdfp1boL7i0K10d3
qNqpTZ98E68oy3RBN2oMpD66bBTy4FDlpvU3pU6VGfKkgpq/BbxeFVbtqkm+
xkhtUV/cUI8iBblV0Vw5pYb1EBDR0v1X7nyRy+WwnGRUdT3+GzE1l8BEd4DR
fWwDUoDIBI2kiVs4m22WAB+4cYquC5HeeJyWECp4qJomY47RUZ8HX4WGfZTT
K9sK+1i0YW6J/e4T1y97avtlP0b5Z3aCRyn3+oYt4vEL4EeZ2ng2HRwC3+/s
aecP9uuGzYOclAy9iedhMrfHLDc3rPy62lz0auIklD+FwAUiK1o94HCbcSqZ
E90mua+OO+gEqX7WJadYTWM3hu/+8pcxkPiXJC/ldrSHm/t8VG+fX6stT+xz
hvlWQNAZZV15vmY/IxmT31JP2gzUIg0nzf5mPYCkhiryRD603MqrJh/0l3ur
pjAZrVtYhldOGe063oMNi/wP6l3EWWqaszVXdY5uJOwvyUZ1vsm82yNxgUCJ
XKT10i//fPcJrXLqk8oHeCFjWo5pJerKUHOMboh6HH2XYMhbMh9J4kXdwiny
/CgbYdSNItdrIGG5rZVOxK/iyvD6ZxjkUt+oJqeSOmFT3pADbxhL0rO5xtJs
SQKzILXQ7+/jKNmlJkk9o7lrOrLo6fTl4lsp9bc9wCcuEgrGhiqdq9q0jfMQ
mmKN5vGCTDleBlaClnztKalMZy/ESTMZd9R5RZuSR0+nDa+KblCqYuV80Nhn
gpSEqBIU1xT5eaJbEArSj+smJ1eppd+bTcGfkG0VuZLeM2l48SgAxMCdLikK
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
kfw/XQclkEDSAAA=

-->

</rfc>
