<?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.39 (Ruby 3.4.9) -->
<?rfc comments="yes"?>
<?rfc docmapping="yes"?>
<?rfc inline="yes"?>
<?rfc rfcedstyle="yes"?>
<?rfc strict="yes"?>
<?rfc text-list-symbols="-o*+"?>
<?rfc tocindent="yes"?>
<rfc xmlns:xi="http://www.w3.org/2001/XInclude" ipr="trust200902" docName="draft-ietf-oauth-rfc8725bis-05" category="bcp" consensus="true" submissionType="IETF" obsoletes="8725" updates="7519" tocInclude="true" sortRefs="true" symRefs="true" version="3">
  <!-- xml2rfc v2v3 conversion 3.33.0 -->
  <front>
    <title abbrev="JWT BCP">JSON Web Token Best Current Practices</title>
    <seriesInfo name="Internet-Draft" value="draft-ietf-oauth-rfc8725bis-05"/>
    <author initials="Y." surname="Sheffer" fullname="Yaron Sheffer">
      <organization>Intuit</organization>
      <address>
        <email>yaronf.ietf@gmail.com</email>
      </address>
    </author>
    <author initials="D." surname="Hardt" fullname="Dick Hardt">
      <organization/>
      <address>
        <email>dick.hardt@gmail.com</email>
      </address>
    </author>
    <author initials="M." surname="Jones" fullname="Michael B. Jones">
      <organization>Self-Issued Consulting</organization>
      <address>
        <email>michael_b_jones@hotmail.com</email>
        <uri>https://self-issued.info/</uri>
      </address>
    </author>
    <date year="2026" month="June" day="18"/>
    <area>Security</area>
    <workgroup>Web Authorization Protocol</workgroup>
    <keyword>JSON Web Token</keyword>
    <keyword>JWT</keyword>
    <keyword>JSON Object Signing and Encryption</keyword>
    <keyword>JOSE</keyword>
    <keyword>JSON Web Signature</keyword>
    <keyword>JWS</keyword>
    <keyword>JSON Web Encryption</keyword>
    <keyword>JWE</keyword>
    <keyword>attacks</keyword>
    <keyword>Claims</keyword>
    <keyword>Security</keyword>
    <keyword>Cryptography</keyword>
    <abstract>
      <?line 176?>

<t>JSON Web Tokens, also known as JWTs, are URL-safe JSON-based security
 tokens that contain a set of claims that can be signed and/or encrypted.
 JWTs are being widely used and deployed as a simple security token
 format in numerous protocols and applications, both in the area of
 digital identity and in other application areas.  This Best Current
 Practices (BCP) specification updates RFC 7519 to provide actionable guidance
 leading to secure implementation and deployment of JWTs.</t>
      <t>This BCP specification furthermore obsoletes the existing JWT BCP
 specification RFC 8725 to provide additional actionable guidance
 covering threats and attacks that have been discovered
 since RFC 8725 was published.</t>
    </abstract>
    <note removeInRFC="true">
      <name>About This Document</name>
      <t>
        Status information for this document may be found at <eref target="https://datatracker.ietf.org/doc/draft-ietf-oauth-rfc8725bis/"/>.
      </t>
      <t>
        Discussion of this document takes place on the
        Web Authorization Protocol Working Group mailing list (<eref target="mailto:oauth@ietf.org"/>),
        which is archived at <eref target="https://mailarchive.ietf.org/arch/browse/oauth/"/>.
        Subscribe at <eref target="https://www.ietf.org/mailman/listinfo/oauth/"/>.
      </t>
      <t>Source for this draft and an issue tracker can be found at
        <eref target="https://github.com/oauth-wg/draft-ietf-oauth-rfc8725bis"/>.</t>
    </note>
  </front>
  <middle>
    <?line 193?>

<section anchor="introduction">
      <name>Introduction</name>
      <t>JSON Web Tokens, also known as JWTs  <xref target="RFC7519"/>, are URL-safe JSON-based security tokens
that contain a set of claims that can be signed and/or encrypted.
The JWT specification has seen rapid adoption because it encapsulates
security-relevant information in one easy-to-protect location, and because
it is easy to implement using widely available tools.
One application area in which JWTs are commonly used is
representing authorization information, such as OAuth 2.0 access tokens <xref target="RFC9068"/>,
and identity information, such as OpenID Connect ID Tokens <xref target="OpenID.Core"/>.
The details of these uses are application- and deployment-specific.</t>
      <t>Since the JWT specification was published, there have been several widely published
attacks on implementations and deployments.
Such attacks are the result of under-specified security mechanisms, as well as incomplete
implementations and incorrect usage by applications.</t>
      <t>The goal of this document is to facilitate secure implementation and deployment of JWTs.
Many of the recommendations in this document are about
implementation and use of the cryptographic mechanisms underlying JWTs that are defined by
JSON Web Signature (JWS)  <xref target="RFC7515"/>,
JSON Web Encryption (JWE)  <xref target="RFC7516"/>, and
JSON Web Algorithms (JWA)  <xref target="RFC7518"/>.
Others are about use of the JWT claims themselves.</t>
      <t>These are intended to be minimum recommendations for the use of JWTs
in the vast majority of implementation
and deployment scenarios. Other specifications that reference this document can have
stricter requirements related to one or more aspects of the format, based on their
particular circumstances; when that is the case, implementers are advised to adhere
to those stricter requirements. Furthermore, this document provides a floor, not a ceiling,
so stronger options are always allowed (e.g., depending on differing evaluations of the
importance of cryptographic strength vs. computational load).</t>
      <t>Community knowledge about the strength of various algorithms and feasible attacks can
change quickly, and experience shows that a Best Current Practice (BCP) document about
security is a point-in-time statement. Readers are advised to seek out any errata or
updates that apply to this document.</t>
      <section anchor="target-audience">
        <name>Target Audience</name>
        <t>The intended audiences of this document are:</t>
        <ul spacing="normal">
          <li>
            <t>Implementers of JWT libraries (and the JWS and JWE libraries
 used by those libraries),</t>
          </li>
          <li>
            <t>Implementers of code that uses such libraries (to the extent that some mechanisms may
not be provided by libraries, or until they are), and</t>
          </li>
          <li>
            <t>Developers of specifications that rely on JWTs, both inside and
 outside the IETF.</t>
          </li>
        </ul>
      </section>
      <section anchor="conventions-used-in-this-document">
        <name>Conventions Used in this Document</name>
        <t>The key words "<bcp14>MUST</bcp14>", "<bcp14>MUST NOT</bcp14>", "<bcp14>REQUIRED</bcp14>", "<bcp14>SHALL</bcp14>", "<bcp14>SHALL
NOT</bcp14>", "<bcp14>SHOULD</bcp14>", "<bcp14>SHOULD NOT</bcp14>", "<bcp14>RECOMMENDED</bcp14>", "<bcp14>NOT RECOMMENDED</bcp14>",
"<bcp14>MAY</bcp14>", and "<bcp14>OPTIONAL</bcp14>" in this document are to be interpreted as
described in BCP 14 <xref target="RFC2119"/> <xref target="RFC8174"/> when, and only when, they
appear in all capitals, as shown here.</t>
        <?line -18?>

</section>
    </section>
    <section anchor="threats-and-vulnerabilities">
      <name>Threats and Vulnerabilities</name>
      <t>This section lists some known and possible problems with JWT
 implementations and deployments.
Each problem description is followed by references to one or more mitigations to those problems.</t>
      <section anchor="weak-signatures-and-insufficient-signature-validation">
        <name>Weak Signatures and Insufficient Signature Validation</name>
        <t>Signed JSON Web Tokens carry an explicit indication of the signing algorithm,
in the form of the "alg" Header Parameter, to facilitate cryptographic agility.
This, in conjunction with design flaws in some libraries and applications,
 has led to several attacks:</t>
        <ul spacing="normal">
          <li>
            <t>The algorithm can be changed to "none" by an attacker, and some libraries would trust
this value and "validate" the JWT without checking any signature.</t>
          </li>
          <li>
            <t>An "RS256" (RSA, 2048 bit) parameter value can be changed into
"HS256" (HMAC, SHA-256), and some libraries
would try to validate the signature using HMAC-SHA256 and using the RSA public key as the
HMAC shared secret (see  <xref target="McLean"/> and
  <xref target="CVE-2015-9235"/>).</t>
          </li>
        </ul>
        <t>For mitigations, see <xref target="algorithm-verification"/> and <xref target="appropriate-algorithms"/>.</t>
      </section>
      <section anchor="weak-symmetric-keys">
        <name>Weak Symmetric Keys</name>
        <t>In addition, some applications use a keyed Message Authentication
 Code (MAC) algorithm, such as
"HS256", to sign tokens but supply a weak symmetric key with
insufficient entropy (such as a human-memorable password). Such keys
are vulnerable to offline brute-force or dictionary attacks once an
attacker gets hold of such a token  <xref target="Langkemper"/><xref target="JWT-Cracker"/>.</t>
        <t>For mitigations, see  <xref target="key-entropy"/>.</t>
      </section>
      <section anchor="incorrect-composition-of-encryption-and-signature">
        <name>Incorrect Use and Composition of Encryption and Signature</name>
        <t>Most authentication use cases only require a simple signed JWT as their token. However verifiers don't always check that the received JWT is a JWS (a signed JWT) as opposed to a JWE (a JWT with encrypted structure). This can result in vulnerabilities when the verifier's library does not distinguish between successful decryption and successful signature validation <xref target="CVE-2023-51774"/>.</t>
        <t>In the more complicated use cases where confidentiality is required, some libraries that decrypt a JWE-encrypted JWT to obtain a JWS-signed object
do not always validate the internal signature.</t>
        <t>For mitigations, see  <xref target="validate-crypto"/>.</t>
      </section>
      <section anchor="plaintext-leakage-through-analysis-of-ciphertext-length">
        <name>Plaintext Leakage through Analysis of Ciphertext Length</name>
        <t>Many encryption algorithms leak information about the length of the
 plaintext, with a varying amount of
leakage depending on the algorithm and mode of operation. JWEs are vulnerable to this leakage. This problem is exacerbated
when the plaintext is initially compressed, because the length of the
compressed plaintext and, thus,
the ciphertext
depends not only on the length of the original plaintext but also
on its content.
Compression attacks are particularly
powerful when there is attacker-controlled data in the same compression
space as secret data, which is the case for some attacks on HTTPS.</t>
        <t>See  <xref target="Kelsey"/> for general background
on compression and encryption and  <xref target="Alawatugoda"/> for a specific example of attacks on HTTP cookies.</t>
        <t>For mitigations, see  <xref target="no-compression"/>.</t>
      </section>
      <section anchor="insecure-use-of-elliptic-curve-encryption">
        <name>Insecure Use of Elliptic Curve Encryption</name>
        <t>Per  <xref target="Sanso"/>, several Javascript
 Object Signing and Encryption (JOSE) libraries
 fail to validate their inputs correctly
when performing elliptic curve key agreement (the "ECDH-ES" algorithm).
An attacker that is able to send JWEs of its choosing that use invalid curve points and
observe the cleartext outputs resulting from decryption with the invalid curve points
can use this vulnerability to recover the recipient's private key.</t>
        <t>For mitigations, see  <xref target="validate-inputs"/>.</t>
      </section>
      <section anchor="multiplicity-of-json-encodings">
        <name>Multiplicity of JSON Encodings</name>
        <t>Previous versions of the JSON format, such as the obsoleted  <xref target="RFC7159"/>,
allowed several different character
encodings: UTF-8, UTF-16, and UTF-32. This is not the case anymore, with the latest
standard  <xref target="RFC8259"/> only allowing UTF-8 except
for internal use within a "closed ecosystem".
This ambiguity, where older implementations and those used within closed environments may generate
non-standard encodings, may result in the JWT being
misinterpreted by its recipient. This, in turn, could be used by a malicious sender to bypass
the recipient's validation checks.</t>
        <t>For mitigations, see  <xref target="use-utf8"/>.</t>
      </section>
      <section anchor="substitution">
        <name>Substitution Attacks</name>
        <t>There are attacks in which one recipient will be given a JWT that was intended for it
and will attempt to use it at a different recipient for which that JWT was not intended.
For instance, if an OAuth 2.0  <xref target="RFC6749"/> access
token is legitimately presented to an
OAuth 2.0 protected resource for which it is intended, that protected resource might then present
that same access token to a different protected resource for which the access token is not intended,
in an attempt to gain access. If such situations are not caught, this can result in
the attacker gaining access to resources that it is not entitled to access.</t>
        <t>For mitigations, see Sections  <xref format="counter" target="validate-iss-sub"/> and  <xref format="counter" target="use-aud"/>.</t>
      </section>
      <section anchor="cross-jwt-confusion">
        <name>Cross-JWT Confusion</name>
        <t>As JWTs are used by more protocols in diverse ways, it becomes increasingly
important to prevent JWT tokens that have been issued for one purpose
being used for another.
Note that this is a specific type of substitution attack.
If the JWT could be used in an application context in which it could be
confused with other kinds of JWTs,
then mitigations can be employed to prevent these substitution attacks.</t>
        <t>For mitigations, see Sections  <xref format="counter" target="validate-iss-sub"/>,  <xref format="counter" target="use-aud"/>,  <xref format="counter" target="use-typ"/>, and  <xref format="counter" target="preventing-confusion"/>.</t>
      </section>
      <section anchor="indirect-attacks-on-the-server">
        <name>Indirect Attacks on the Server</name>
        <t>Various JWT claims are used by the recipient to perform lookup operations,
such as database and Lightweight Directory Access Protocol (LDAP) searches.
Others include URLs that are similarly looked up by the server. Any of these claims can be used by
an attacker as vectors for injection attacks or server-side request forgery (SSRF) attacks.</t>
        <t>For mitigations, see  <xref target="do-not-trust-claims"/>.</t>
      </section>
      <section anchor="unreasonable-iterations">
        <name>Computation Cost of Unreasonable Number of Hash Iterations</name>
        <t>The <tt>p2c</tt> (PBES2 Count) header parameter for the PBES2 encryption algorithms
specifies the number of iterative hash computations to be performed.
Attackers can use a very large count,
thereby imposing an unreasonable computational burden on recipients.</t>
        <t>For mitigations, see <xref target="limit-iterations"/>.</t>
      </section>
      <section anchor="autogen-algorithm-verification-code-not-defensively-written">
        <name>Algorithm Verification Code Not Defensively Written</name>
        <t>Some JWT implementations included a list of disallowed algorithm names,
e.g., do not use "none".
These same applications misinterpreted
the JOSE specifications when parsing the token, reading algorithm values
as if they were case-insensitive. The end result was that an attacker
could change the "alg" value to "noNE" and bypass the security check.</t>
        <t>For mitigations, see <xref target="algorithm-verification"/>.</t>
      </section>
      <section anchor="autogen-jwe-decompression-bomb-attack">
        <name>JWE Decompression Bomb Attack</name>
        <t>JWE supports the optional compression of the plaintext prior to encryption via the "zip" header parameter as defined in <xref target="RFC7516"/> Section 4.1.3. Upon decryption, recipients are expected to decompress the payload before further processing. However, if the recipient does not enforce limits on the size of the decompressed output, an attacker can craft a malicious JWE with a highly compressed, arbitrarily large payload. This can cause excessive resource consumption (CPU, memory), resulting in Denial of Service (DoS).</t>
        <t>For mitigation, see <xref target="limit-decompression"/>.</t>
      </section>
      <section anchor="autogen-jwt-format-confusion">
        <name>JWT Format Confusion</name>
        <t>Some JWS implementations support both the Compact and JSON Serializations. While JWTs must use the Compact Serialization, if an application by mistake verifies a JWT using the JSON Serialization but extracts claims by parsing it as a JWT using the Compact Serialization (e.g., via string splitting), an attacker can craft a valid JSON JWS with a forged payload. This mismatch in format handling can lead to authentication bypass or impersonation.</t>
        <t>For mitigations, see <xref target="token-format"/>.</t>
      </section>
    </section>
    <section anchor="BP">
      <name>Best Practices</name>
      <t>The best practices listed below should be applied by practitioners
to mitigate the threats listed in the preceding section.</t>
      <section anchor="algorithm-verification">
        <name>Perform Algorithm Verification</name>
        <t>Libraries <bcp14>MUST</bcp14> provide a mechanism that enables developers to explicitly restrict
the set of algorithms permitted for use and <bcp14>MUST NOT</bcp14> employ any algorithms outside
this configured set when performing cryptographic operations.</t>
        <t>The library <bcp14>MUST</bcp14> verify that the algorithm specified in the "alg" or "enc" header parameter
is consistent with the algorithm associated with the key identified by the
corresponding identifier (e.g., "kid") during key lookup.</t>
        <t>When a recipient receives a JWT signed by a particular issuer, it <bcp14>MUST</bcp14>
determine which algorithms are permitted for itself and that issuer
and ensure that the received JWT complies with those requirements.
It must likewise validate that the algorithms used by encrypted JWTs
are among those supported by the intended recipient.</t>
        <t>In accordance with established cryptographic best practices, each key <bcp14>MUST</bcp14> be used with
exactly one algorithm. Compliance with this requirement <bcp14>MUST</bcp14> be enforced and
validated at the time the cryptographic operation is executed.</t>
        <t>Libraries <bcp14>SHOULD</bcp14> opt for defensive security policies to cope
with potential issues in the underlying infrastructure, such
as the JSON parser.
In particular, libraries <bcp14>SHOULD</bcp14> use allowlists for critical
parameters such as "alg" instead of blocklists, because blocklists
cannot anticipate every unsafe or misspelled value an attacker might use.</t>
      </section>
      <section anchor="appropriate-algorithms">
        <name>Use Appropriate Algorithms</name>
        <t>As  Section 5.2 of <xref target="RFC7515"/> says,
"it is an application decision which algorithms may
be used in a given context. Even if a JWS can be successfully
validated, unless the algorithm(s) used in the JWS are acceptable to
the application, it  <bcp14>SHOULD</bcp14> consider the JWS to be invalid."</t>
        <t>Therefore, applications  <bcp14>MUST</bcp14> only allow the use of
 cryptographically current algorithms
that meet the security requirements of the application.
This set will vary over time as new algorithms are introduced
and existing algorithms are deprecated due to discovered cryptographic weaknesses.
Applications  <bcp14>MUST</bcp14> therefore be designed to enable cryptographic agility.</t>
        <t>The "none" algorithm should only be used when the JWT is cryptographically protected by other means.
JWTs using "none" are often used in application contexts in which the content is optionally signed.
The URL-safe claims representation and processing in this context can be the same in both
the signed and unsigned cases.
JWT libraries  <bcp14>SHOULD NOT</bcp14> generate JWTs using "none" unless
explicitly requested to do so by the caller.
Similarly, JWT libraries  <bcp14>SHOULD NOT</bcp14> consume JWTs using "none"
 unless explicitly requested by the caller.</t>
        <t>Applications  <bcp14>SHOULD</bcp14> follow these algorithm-specific recommendations,
because deviating from them may re-enable known attacks on the listed algorithms
unless an application-specific threat analysis shows the risk is acceptable:</t>
        <ul spacing="normal">
          <li>
            <t>Avoid all RSA-PKCS1 v1.5 encryption algorithms (<xref target="RFC8017"/>, Section 7.2), preferring
 RSAES-OAEP
 (<xref target="RFC8017"/>, Section 7.1).</t>
          </li>
          <li>
            <t>Elliptic Curve Digital Signature Algorithm (ECDSA) signatures  <xref target="ANSI-X962-2005"/> require a unique random value for
every message
 that is signed.
If even just a few bits of the random value are predictable across multiple messages, then
the security of the signature scheme may be compromised. In the worst case,
the private key may be recoverable by an attacker. To counter these attacks,
JWT libraries  <bcp14>SHOULD</bcp14> implement ECDSA using the deterministic
approach defined in  <xref target="RFC6979"/>.
This approach is completely compatible with existing ECDSA verifiers and so can be implemented
without new algorithm identifiers being required.</t>
          </li>
        </ul>
        <t>Readers are advised that <xref target="I-D.ietf-jose-deprecate-none-rsa15"/>
proposes deprecating the "none" and "RSA1_5" algorithms.</t>
      </section>
      <section anchor="validate-crypto">
        <name>Validate All Cryptographic Operations</name>
        <t>All cryptographic operations used in the JWT <bcp14>MUST</bcp14> be validated and the entire JWT <bcp14>MUST</bcp14> be rejected
if any of them fail to validate.
This is true not only of JWTs with a single set of Header Parameters
but also for Nested JWTs, as defined in <xref section="2" sectionFormat="of" target="RFC7519"/>,
in which both outer and inner operations <bcp14>MUST</bcp14> be validated
using the keys and algorithms supplied by the application.</t>
        <t>Libraries <bcp14>MUST</bcp14> allow the verifier to distinguish between signed JWTs (JWSes) and encrypted JWTs (JWEs).
This allows verifiers to easily establish a policy of only accepting signed JWTs.</t>
      </section>
      <section anchor="validate-inputs">
        <name>Validate Cryptographic Inputs</name>
        <t>Some cryptographic operations, such as Elliptic Curve Diffie-Hellman key agreement
("ECDH-ES"), take inputs that may contain invalid values. This includes points not on
the specified elliptic curve
or other invalid points (e.g.,  <xref target="Valenta"/>, Section 7.1).
The JWS/JWE library itself must validate these inputs before using them,
or it must use underlying cryptographic libraries that do so (or both!).</t>
        <t>Elliptic Curve Diffie-Hellman Ephemeral Static (ECDH-ES) ephemeral
 public key (epk) inputs should be validated
 according to the recipient's
chosen elliptic curve. For the NIST prime-order curves P-256, P-384, and P-521,
validation  <bcp14>MUST</bcp14>
be performed according to Section 5.6.2.3.4 (ECC Partial Public-Key Validation
Routine) of "Recommendation for Pair-Wise Key-Establishment Schemes Using Discrete Logarithm Cryptography"
<xref target="nist-sp-800-56a-r3"/>.
If the "X25519" or "X448"  <xref target="RFC8037"/> algorithms are used,
then the security considerations in  <xref target="RFC8037"/> apply.</t>
      </section>
      <section anchor="key-entropy">
        <name>Ensure Cryptographic Keys Have Sufficient Entropy</name>
        <t>The Key Entropy and Random Values advice in  Section 10.1 of <xref target="RFC7515"/>, the
 Password Considerations in  Section 8.8 of <xref target="RFC7518"/>, and PBKDF2 as specified in <xref target="RFC8018"/>
          <bcp14>MUST</bcp14> be followed.
In particular, human-memorizable passwords  <bcp14>MUST NOT</bcp14> be directly used
as the key to a keyed-MAC algorithm such as "HS256".
Moreover, passwords should only be used to perform key encryption, rather
than content encryption,
as described in  Section 4.8 of <xref target="RFC7518"/>.
Note that even when used for key encryption, password-based encryption is
 still subject to brute-force attacks.</t>
      </section>
      <section anchor="no-compression">
        <name>Avoid Compression of Encryption Inputs</name>
        <t>Compression of data <bcp14>SHOULD NOT</bcp14> be used when creating a JWE, because
such compressed data often reveals information about the plaintext,
as described in <xref target="Kelsey"/>.</t>
      </section>
      <section anchor="use-utf8">
        <name>Use UTF-8</name>
        <t><xref target="RFC7515"/>,  <xref target="RFC7516"/>, and  <xref target="RFC7519"/> all
 specify that UTF-8 be used for encoding and decoding JSON
used in Header Parameters and JWT Claims Sets. This is also in line with the
latest JSON specification  <xref target="RFC8259"/>.
Implementations and applications <bcp14>MUST</bcp14> do this and not use or allow the use of
other Unicode encodings for these purposes.</t>
      </section>
      <section anchor="validate-iss-sub">
        <name>Validate Issuer and Subject</name>
        <t>When a JWT contains an "iss" (issuer) claim, the application
  <bcp14>MUST</bcp14> validate that the cryptographic keys
used for the cryptographic operations in the JWT belong to the issuer.
If they do not, the application  <bcp14>MUST</bcp14> reject the JWT.</t>
        <t>The means of determining the keys owned by an issuer is application-specific.
As one example, OAuth 2.0 authorization server "issuer" values <xref target="RFC8414"/>
are "https" URLs
that reference a JSON metadata document that contains a "jwks_uri" value that is
an "https" URL from which the issuer's keys are retrieved as a JWK Set  <xref target="RFC7517"/>.
This same mechanism is used by OpenID Connect <xref target="OpenID.Core"/>.
Other applications may use different means of binding keys to issuers.</t>
        <t>Similarly, when the JWT contains a "sub" (subject) claim, the
 application  <bcp14>MUST</bcp14> validate that
the subject value corresponds to a valid subject and/or issuer-subject pair at the application.
This may include confirming that the issuer is trusted by the application.
In the OAuth context, <xref section="4.15" sectionFormat="of" target="RFC9700"/> discusses the possibility of
confusing user identifier and client ID values.
If the issuer, subject, or the pair are invalid, the application
  <bcp14>MUST</bcp14> reject the JWT.</t>
      </section>
      <section anchor="use-aud">
        <name>Use and Validate Audience</name>
        <t>If the same issuer can issue JWTs that are intended for use by more
 than one relying party or application, or may do so in the future,
the JWT  <bcp14>MUST</bcp14> contain an "aud" (audience) claim that can be used
to determine whether the JWT
is being used by an intended party or was substituted by an attacker.</t>
        <t>In such cases, the relying party or application <bcp14>MUST</bcp14> validate the audience value, and if no audience
value is present or none of the values are associated with the recipient, it <bcp14>MUST</bcp14> reject the JWT.</t>
      </section>
      <section anchor="do-not-trust-claims">
        <name>Carefully Evaluate Received Claims</name>
        <t>Treat claim values as being potentially attacker-provided input.</t>
        <t>The "kid" (key ID) header is used by the relying application to
 perform key lookup. Applications
should ensure that this does not create SQL or LDAP injection vulnerabilities by validating
and/or sanitizing the received value.</t>
        <t>Similarly, blindly following a "jku" (JWK set URL) or "x5u" (X.509 URL) header,
which may contain an arbitrary URL,
could result in server-side request forgery (SSRF) attacks. Applications <bcp14>SHOULD</bcp14> protect against such
attacks, e.g., by matching the URL to an allowlist of permitted locations
and ensuring no cookies are sent in the GET request.</t>
        <t>When such an allowlist is not available, the authorization server <bcp14>SHOULD</bcp14> check what a hostname resolves to
and avoid making a request if it resolves to a loopback or local IP address,
because otherwise an attacker-chosen URL can cause the server to fetch arbitrary content from within the security domain.
An example of this is when "attacker.example.com/etc/passwd" is used
as the "jwks_uri" value and there is a DNS entry for "attacker.example.com"
that resolves to "127.0.0.1" or other local IP address values.</t>
      </section>
      <section anchor="use-typ">
        <name>Use Explicit Typing</name>
        <t>When two different uses of JWTs share a common set of claims,
one kind of JWT can be confused for another.
If a particular
kind of JWT is subject to such confusion, that JWT can include an explicit
JWT type value, and the validation rules can specify checking the type.
This mechanism can prevent such confusion.
Explicit JWT typing is accomplished by using the "typ" Header Parameter.
For instance, the  <xref target="RFC8417"/> specification uses
the "application/secevent+jwt" media type
to perform explicit typing of Security Event Tokens (SETs).</t>
        <t>An example of an ad-hoc means of preventing confusion
between different kinds of JWTs is the requirement in
Logout Tokens <xref target="OpenID.Backchannel"/> prohibiting the inclusion of a "nonce" claim
so that Logout Tokens will fail the validation rules for ID Tokens <xref target="OpenID.Core"/>.
The use of explicit typing avoids the need for employing such ad-hoc mechanisms
when the validation rules for both kinds of JWTs include validating the "typ" values
and the acceptable "typ" values for the two kinds of JWTs are distinct.</t>
        <t>Per Section 4.1.9 of <xref target="RFC7515"/>, the "typ" Header Parameter declares the
media type of the complete JWS.
To keep header values compact, producers are <bcp14>RECOMMENDED</bcp14> to omit the
"application/" prefix from "typ" when no other "/" appears in the media type,
as specified in that section;
recipients using the media type value <bcp14>MUST</bcp14> treat a "typ" value with no "/"
as if "application/" were prepended.
When explicit typing is employed, implementations <bcp14>SHOULD</bcp14> register and use the
full media type name "application/example+jwt", where "example" identifies the
specific kind of JWT, and <bcp14>SHOULD</bcp14> set the corresponding "typ" value to
"example+jwt", because distinct types make cross-JWT substitution harder when
validators check "typ", and because misapplying the Section 4.1.9 prefix rule
can cause validators to reject otherwise valid tokens or accept the wrong type.
This pairing <bcp14>SHOULD</bcp14> be omitted only when the JWT cannot be confused with other
kinds of JWTs in its application context.
For example, for Security Event Tokens (SETs) <xref target="RFC8417"/>, the media type is
"application/secevent+jwt" and the "typ" value <bcp14>SHOULD</bcp14> be "secevent+jwt", because
SETs are often issued in contexts where they could otherwise be mistaken for
other kinds of JWTs.</t>
        <t>When applying explicit typing to a Nested JWT, the "typ" Header
 Parameter containing the explicit type value  <bcp14>MUST</bcp14> be present in the inner JWT of the Nested JWT (the JWT
whose payload is the JWT Claims Set).
In some cases, the same "typ" Header Parameter value will be present in the outer JWT as well,
to explicitly type the entire Nested JWT.</t>
        <t>Note that the use of explicit typing may not achieve disambiguation
 from existing kinds of JWTs,
as the validation rules for kinds of JWTs defined before
the guidance on explicit typing in <xref target="RFC8725"/> was available
often do not use the "typ" Header Parameter value.</t>
        <t>Also, note that attempting to retrofit mandatory explicit typing
into the validation rules for existing kinds of JWTs not already using it
would be a breaking change;
if a legacy implementation creates a JWT without the explicit type and
an updated implementation receiving it requires the explicit type,
the JWT will be rejected.  The implementations will not interoperate.
However, retrofitting a rule that if the JWT contains a "typ" value,
then it <bcp14>MUST</bcp14> be the expected explicit type, is not a breaking change.</t>
        <t>Another consideration for existing kinds of JWTs is that the use of
a "typ" value of "JWT", as originally recommended in <xref section="5.1" sectionFormat="of" target="RFC7519"/>,
does not constitute effective explicit typing.</t>
        <t>Explicit typing is <bcp14>RECOMMENDED</bcp14> for new uses of JWTs, because without it,
mutually exclusive validation rules are harder to enforce and cross-JWT
confusion becomes more likely.</t>
      </section>
      <section anchor="preventing-confusion">
        <name>Use Mutually Exclusive Validation Rules for Different Kinds of JWTs</name>
        <t>Each application of JWTs defines a profile specifying the required
 and optional JWT claims
and the validation rules associated with them.
If more than one kind of JWT can be issued by the same issuer,
the validation rules for those JWTs  <bcp14>MUST</bcp14> be written such that
they are mutually exclusive,
rejecting JWTs of the wrong kind.</t>
        <t>To prevent substitution of JWTs from one context into another,
application developers may employ a number of strategies:</t>
        <ul spacing="normal">
          <li>
            <t>Use explicit typing for different kinds of JWTs.
Then the distinct "typ" values can be used to differentiate between the
 different kinds of JWTs.</t>
          </li>
          <li>
            <t>Use different sets of required claims or different required claim values.
Then the validation rules for one kind of JWT will reject those with different
 claims or values.</t>
          </li>
          <li>
            <t>Use different sets of required Header Parameters or different
 required Header Parameter values.
Then the validation rules for one kind of JWT will reject those with different
 Header Parameters or values.</t>
          </li>
          <li>
            <t>Use different keys for different kinds of JWTs.
Then the keys used to validate one kind of JWT will fail to validate other kinds of JWTs.</t>
          </li>
          <li>
            <t>Use different "aud" values for different uses of JWTs from the same issuer.
Then audience validation will reject JWTs substituted into inappropriate contexts.</t>
          </li>
          <li>
            <t>Use different issuers for different kinds of JWTs.
Then the distinct "iss" values can be used to segregate the different kinds of JWTs.</t>
          </li>
        </ul>
        <t>Given the broad diversity of JWT usage and applications,
the best combination of types, required claims, values, Header Parameters, key usages, and issuers
to differentiate among different kinds of JWTs
will, in general, be application-specific.
As discussed in  <xref target="use-typ"/>, for new JWT
 applications, the use of explicit typing is
  <bcp14>RECOMMENDED</bcp14>.</t>
      </section>
      <section anchor="limit-iterations">
        <name>Limit Hash Iteration Count</name>
        <t>Implementations are <bcp14>RECOMMENDED</bcp14> to set a reasonable upper limit on
the number of hash iterations that can be performed
when validating encrypted content using PBES2 encryption algorithms,
so as to prevent attackers from imposing
an unreasonable computational burden on recipients.
As an example, <xref target="OWASP-Password-Storage"/> recommends 600,000 iterations (at time of publishing) when using
HMAC-SHA-256 in a FIPS-140 context.
Rejecting inputs with a <tt>p2c</tt> (PBES2 Count) value larger than twice that figure is <bcp14>RECOMMENDED</bcp14>,
unless threat analysis on the recipient side results in accepting a larger
number of iterations.</t>
      </section>
      <section anchor="token-format">
        <name>Check JWT Format Type</name>
        <t>Implementations <bcp14>MUST</bcp14> confirm the JWT is in a legal format while parsing it. Legal JWTs,
being dot-concatenated base64url strings, contain only the ASCII characters for letters, numbers, dash,
underscore, and period.  Content with any other characters - especially braces and quotation
marks - is not a JWT and <bcp14>MUST</bcp14> be rejected.</t>
      </section>
      <section anchor="limit-decompression">
        <name>Limit JWE Decompression Size</name>
        <t>Implementations are <bcp14>RECOMMENDED</bcp14> to set a reasonable upper limit on the decompressed size of a JWE such as 250 KB,
because without such a limit, decompression can impose an unreasonable memory or CPU burden on recipients.</t>
      </section>
    </section>
    <section anchor="security-considerations">
      <name>Security Considerations</name>
      <t>This entire document is about security considerations when
 implementing and deploying JSON Web Tokens.</t>
    </section>
    <section anchor="iana-considerations">
      <name>IANA Considerations</name>
      <t>This document has no IANA actions.</t>
    </section>
    <section anchor="acknowledgements">
      <name>Acknowledgements</name>
      <section anchor="autogen-acknowledgements-for-rfc-8725">
        <name>Acknowledgements for RFC 8725</name>
        <t>The following acknowledgements from <xref target="RFC8725"/>,
the text of which is incorporated into this specification, are retained.</t>
        <t>Thanks to  Antonio Sanso for bringing the
 "ECDH-ES" invalid point attack to the attention
of JWE and JWT implementers.  Tim McLean published the
RSA/HMAC confusion attack  <xref target="McLean"/>.
Thanks to  Nat Sakimura for advocating the use of
explicit typing. Thanks to  Neil Madden for his
numerous comments, and to Carsten Bormann, Brian Campbell, Brian Carpenter, Alissa Cooper, Roman Danyliw, Ben Kaduk,
Mirja Kühlewind, Barry Leiba,
Dan Moore,
Eric Rescorla, Adam Roach, Martin Vigoureux,
and Éric Vyncke
for their reviews.</t>
      </section>
      <section anchor="autogen-acknowledgements-for-this-specification-">
        <name>Acknowledgements for [[ this specification ]]</name>
        <t>We would like to thank
Brian Campbell,
Deb Cooley,
Jianjun Chen,
Dan Moore,
Aaron Parecki,
Filip Skokan,
Tom Tervoort,
Enze Wang,
and
Jesse Yang
for their contributions to the new content in this specification.</t>
      </section>
    </section>
  </middle>
  <back>
    <references anchor="sec-combined-references">
      <name>References</name>
      <references anchor="sec-normative-references">
        <name>Normative References</name>
        <reference anchor="RFC6979">
          <front>
            <title>Deterministic Usage of the Digital Signature Algorithm (DSA) and Elliptic Curve Digital Signature Algorithm (ECDSA)</title>
            <author fullname="T. Pornin" initials="T." surname="Pornin"/>
            <date month="August" year="2013"/>
            <abstract>
              <t>This document defines a deterministic digital signature generation procedure. Such signatures are compatible with standard Digital Signature Algorithm (DSA) and Elliptic Curve Digital Signature Algorithm (ECDSA) digital signatures and can be processed with unmodified verifiers, which need not be aware of the procedure described therein. Deterministic signatures retain the cryptographic security features associated with digital signatures but can be more easily implemented in various environments, since they do not need access to a source of high-quality randomness.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="6979"/>
          <seriesInfo name="DOI" value="10.17487/RFC6979"/>
        </reference>
        <reference anchor="RFC7515">
          <front>
            <title>JSON Web Signature (JWS)</title>
            <author fullname="M. Jones" initials="M." surname="Jones"/>
            <author fullname="J. Bradley" initials="J." surname="Bradley"/>
            <author fullname="N. Sakimura" initials="N." surname="Sakimura"/>
            <date month="May" year="2015"/>
            <abstract>
              <t>JSON Web Signature (JWS) represents content secured with digital signatures or Message Authentication Codes (MACs) using JSON-based data structures. Cryptographic algorithms and identifiers for use with this specification are described in the separate JSON Web Algorithms (JWA) specification and an IANA registry defined by that specification. Related encryption capabilities are described in the separate JSON Web Encryption (JWE) specification.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="7515"/>
          <seriesInfo name="DOI" value="10.17487/RFC7515"/>
        </reference>
        <reference anchor="RFC7516">
          <front>
            <title>JSON Web Encryption (JWE)</title>
            <author fullname="M. Jones" initials="M." surname="Jones"/>
            <author fullname="J. Hildebrand" initials="J." surname="Hildebrand"/>
            <date month="May" year="2015"/>
            <abstract>
              <t>JSON Web Encryption (JWE) represents encrypted content using JSON-based data structures. Cryptographic algorithms and identifiers for use with this specification are described in the separate JSON Web Algorithms (JWA) specification and IANA registries defined by that specification. Related digital signature and Message Authentication Code (MAC) capabilities are described in the separate JSON Web Signature (JWS) specification.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="7516"/>
          <seriesInfo name="DOI" value="10.17487/RFC7516"/>
        </reference>
        <reference anchor="RFC7518">
          <front>
            <title>JSON Web Algorithms (JWA)</title>
            <author fullname="M. Jones" initials="M." surname="Jones"/>
            <date month="May" year="2015"/>
            <abstract>
              <t>This specification registers cryptographic algorithms and identifiers to be used with the JSON Web Signature (JWS), JSON Web Encryption (JWE), and JSON Web Key (JWK) specifications. It defines several IANA registries for these identifiers.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="7518"/>
          <seriesInfo name="DOI" value="10.17487/RFC7518"/>
        </reference>
        <reference anchor="RFC7519">
          <front>
            <title>JSON Web Token (JWT)</title>
            <author fullname="M. Jones" initials="M." surname="Jones"/>
            <author fullname="J. Bradley" initials="J." surname="Bradley"/>
            <author fullname="N. Sakimura" initials="N." surname="Sakimura"/>
            <date month="May" year="2015"/>
            <abstract>
              <t>JSON Web Token (JWT) is a compact, URL-safe means of representing claims to be transferred between two parties. The claims in a JWT are encoded as a JSON object that is used as the payload of a JSON Web Signature (JWS) structure or as the plaintext of a JSON Web Encryption (JWE) structure, enabling the claims to be digitally signed or integrity protected with a Message Authentication Code (MAC) and/or encrypted.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="7519"/>
          <seriesInfo name="DOI" value="10.17487/RFC7519"/>
        </reference>
        <reference anchor="RFC8017">
          <front>
            <title>PKCS #1: RSA Cryptography Specifications Version 2.2</title>
            <author fullname="K. Moriarty" initials="K." role="editor" surname="Moriarty"/>
            <author fullname="B. Kaliski" initials="B." surname="Kaliski"/>
            <author fullname="J. Jonsson" initials="J." surname="Jonsson"/>
            <author fullname="A. Rusch" initials="A." surname="Rusch"/>
            <date month="November" year="2016"/>
            <abstract>
              <t>This document provides recommendations for the implementation of public-key cryptography based on the RSA algorithm, covering cryptographic primitives, encryption schemes, signature schemes with appendix, and ASN.1 syntax for representing keys and for identifying the schemes.</t>
              <t>This document represents a republication of PKCS #1 v2.2 from RSA Laboratories' Public-Key Cryptography Standards (PKCS) series. By publishing this RFC, change control is transferred to the IETF.</t>
              <t>This document also obsoletes RFC 3447.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="8017"/>
          <seriesInfo name="DOI" value="10.17487/RFC8017"/>
        </reference>
        <reference anchor="RFC8018">
          <front>
            <title>PKCS #5: Password-Based Cryptography Specification Version 2.1</title>
            <author fullname="K. Moriarty" initials="K." role="editor" surname="Moriarty"/>
            <author fullname="B. Kaliski" initials="B." surname="Kaliski"/>
            <author fullname="A. Rusch" initials="A." surname="Rusch"/>
            <date month="January" year="2017"/>
            <abstract>
              <t>This document provides recommendations for the implementation of password-based cryptography, covering key derivation functions, encryption schemes, message authentication schemes, and ASN.1 syntax identifying the techniques.</t>
              <t>This document represents a republication of PKCS #5 v2.1 from RSA Laboratories' Public-Key Cryptography Standards (PKCS) series. By publishing this RFC, change control is transferred to the IETF.</t>
              <t>This document also obsoletes RFC 2898.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="8018"/>
          <seriesInfo name="DOI" value="10.17487/RFC8018"/>
        </reference>
        <reference anchor="RFC8037">
          <front>
            <title>CFRG Elliptic Curve Diffie-Hellman (ECDH) and Signatures in JSON Object Signing and Encryption (JOSE)</title>
            <author fullname="I. Liusvaara" initials="I." surname="Liusvaara"/>
            <date month="January" year="2017"/>
            <abstract>
              <t>This document defines how to use the Diffie-Hellman algorithms "X25519" and "X448" as well as the signature algorithms "Ed25519" and "Ed448" from the IRTF CFRG elliptic curves work in JSON Object Signing and Encryption (JOSE).</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="8037"/>
          <seriesInfo name="DOI" value="10.17487/RFC8037"/>
        </reference>
        <reference anchor="RFC8259">
          <front>
            <title>The JavaScript Object Notation (JSON) Data Interchange Format</title>
            <author fullname="T. Bray" initials="T." role="editor" surname="Bray"/>
            <date month="December" year="2017"/>
            <abstract>
              <t>JavaScript Object Notation (JSON) is a lightweight, text-based, language-independent data interchange format. It was derived from the ECMAScript Programming Language Standard. JSON defines a small set of formatting rules for the portable representation of structured data.</t>
              <t>This document removes inconsistencies with other specifications of JSON, repairs specification errors, and offers experience-based interoperability guidance.</t>
            </abstract>
          </front>
          <seriesInfo name="STD" value="90"/>
          <seriesInfo name="RFC" value="8259"/>
          <seriesInfo name="DOI" value="10.17487/RFC8259"/>
        </reference>
        <reference anchor="nist-sp-800-56a-r3">
          <front>
            <title>Recommendation for pair-wise key-establishment schemes using discrete logarithm cryptography</title>
            <author fullname="Elaine Barker" initials="E." surname="Barker">
              <organization/>
            </author>
            <author fullname="Lily Chen" initials="L." surname="Chen">
              <organization/>
            </author>
            <author fullname="Allen Roginsky" initials="A." surname="Roginsky">
              <organization/>
            </author>
            <author fullname="Apostol Vassilev" initials="A." surname="Vassilev">
              <organization/>
            </author>
            <author fullname="Richard Davis" initials="R." surname="Davis">
              <organization/>
            </author>
            <date month="April" year="2018"/>
          </front>
          <seriesInfo name="DOI" value="10.6028/nist.sp.800-56ar3"/>
          <refcontent>National Institute of Standards and Technology</refcontent>
        </reference>
        <reference anchor="RFC2119">
          <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="RFC8174">
          <front>
            <title>Ambiguity of Uppercase vs Lowercase in RFC 2119 Key Words</title>
            <author fullname="B. Leiba" initials="B." surname="Leiba"/>
            <date month="May" year="2017"/>
            <abstract>
              <t>RFC 2119 specifies common key words that may be used in protocol specifications. This document aims to reduce the ambiguity by clarifying that only UPPERCASE usage of the key words have the defined special meanings.</t>
            </abstract>
          </front>
          <seriesInfo name="BCP" value="14"/>
          <seriesInfo name="RFC" value="8174"/>
          <seriesInfo name="DOI" value="10.17487/RFC8174"/>
        </reference>
      </references>
      <references anchor="sec-informative-references">
        <name>Informative References</name>
        <reference anchor="ANSI-X962-2005">
          <front>
            <title>Public Key Cryptography for the Financial Services Industry: the Elliptic Curve Digital Signature Algorithm (ECDSA)</title>
            <author>
              <organization>American National Standards Institute</organization>
            </author>
            <date year="2005" month="November"/>
          </front>
        </reference>
        <reference anchor="Alawatugoda">
          <front>
            <title>Protecting Encrypted Cookies from Compression Side-Channel Attacks</title>
            <author fullname="Janaka Alawatugoda" initials="J." surname="Alawatugoda">
              <organization/>
            </author>
            <author fullname="Douglas Stebila" initials="D." surname="Stebila">
              <organization/>
            </author>
            <author fullname="Colin Boyd" initials="C." surname="Boyd">
              <organization/>
            </author>
            <date year="2015"/>
          </front>
          <seriesInfo name="Lecture Notes in Computer Science" value="pp. 86-106"/>
          <seriesInfo name="DOI" value="10.1007/978-3-662-47854-7_6"/>
          <seriesInfo name="ISBN" value="[&quot;9783662478530&quot;, &quot;9783662478547&quot;]"/>
          <refcontent>Springer Berlin Heidelberg</refcontent>
        </reference>
        <reference anchor="CVE-2015-9235" target="https://nvd.nist.gov/vuln/detail/CVE-2015-9235">
          <front>
            <title>CVE-2015-9235 Detail</title>
            <author>
              <organization>NIST</organization>
            </author>
            <date year="2018" month="May"/>
          </front>
          <refcontent>National Vulnerability Database</refcontent>
        </reference>
        <reference anchor="CVE-2023-51774" target="https://nvd.nist.gov/vuln/detail/CVE-2023-51774">
          <front>
            <title>CVE-2023-51774 Detail</title>
            <author>
              <organization>NIST</organization>
            </author>
            <date year="2024" month="February"/>
          </front>
          <refcontent>National Vulnerability Database</refcontent>
        </reference>
        <reference anchor="JWT-Cracker" target="https://github.com/brendan-rius/c-jwt-cracker">
          <front>
            <title>JWT Cracker</title>
            <author initials="B." surname="Rius" fullname="Brendan Rius">
              <organization/>
            </author>
            <date>n.d.</date>
          </front>
        </reference>
        <reference anchor="Kelsey">
          <front>
            <title>Compression and Information Leakage of Plaintext</title>
            <author fullname="John Kelsey" initials="J." surname="Kelsey">
              <organization/>
            </author>
            <date year="2002"/>
          </front>
          <seriesInfo name="Lecture Notes in Computer Science" value="pp. 263-276"/>
          <seriesInfo name="DOI" value="10.1007/3-540-45661-9_21"/>
          <seriesInfo name="ISBN" value="[&quot;9783540440093&quot;, &quot;9783540456612&quot;]"/>
          <refcontent>Springer Berlin Heidelberg</refcontent>
        </reference>
        <reference anchor="Langkemper" target="https://www.sjoerdlangkemper.nl/2016/09/28/attacking-jwt-authentication/">
          <front>
            <title>Attacking JWT authentication</title>
            <author initials="S." surname="Langkemper" fullname="Sjoerd Langkemper">
              <organization/>
            </author>
            <date year="2016" month="September"/>
          </front>
        </reference>
        <reference anchor="McLean" target="https://auth0.com/blog/critical-vulnerabilities-in-json-web-token-libraries/">
          <front>
            <title>Critical vulnerabilities in JSON Web Token libraries</title>
            <author initials="T." surname="McLean" fullname="Tim McLean">
              <organization/>
            </author>
            <date year="2015" month="March"/>
          </front>
        </reference>
        <reference anchor="OpenID.Core" target="https://openid.net/specs/openid-connect-core-1_0.html">
          <front>
            <title>OpenID Connect Core 1.0 incorporating errata set 2</title>
            <author initials="N." surname="Sakimura" fullname="Nat Sakimura">
              <organization/>
            </author>
            <author initials="J." surname="Bradley" fullname="John Bradley">
              <organization/>
            </author>
            <author initials="M." surname="Jones" fullname="Michael B. Jones">
              <organization/>
            </author>
            <author initials="B." surname="de Medeiros" fullname="Breno de Medeiros">
              <organization/>
            </author>
            <author initials="C." surname="Mortimore" fullname="Chuck Mortimore">
              <organization/>
            </author>
            <date year="2023" month="December"/>
          </front>
        </reference>
        <reference anchor="OpenID.Backchannel" target="https://openid.net/specs/openid-connect-backchannel-1_0.html">
          <front>
            <title>OpenID Connect Back-Channel Logout 1.0 incorporating errata set 1</title>
            <author initials="M." surname="Jones" fullname="Michael B. Jones">
              <organization/>
            </author>
            <author initials="J." surname="Bradley" fullname="John Bradley">
              <organization/>
            </author>
            <date year="2023" month="December"/>
          </front>
        </reference>
        <reference anchor="RFC6749">
          <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="RFC7159">
          <front>
            <title>The JavaScript Object Notation (JSON) Data Interchange Format</title>
            <author fullname="T. Bray" initials="T." role="editor" surname="Bray"/>
            <date month="March" year="2014"/>
            <abstract>
              <t>JavaScript Object Notation (JSON) is a lightweight, text-based, language-independent data interchange format. It was derived from the ECMAScript Programming Language Standard. JSON defines a small set of formatting rules for the portable representation of structured data.</t>
              <t>This document removes inconsistencies with other specifications of JSON, repairs specification errors, and offers experience-based interoperability guidance.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="7159"/>
          <seriesInfo name="DOI" value="10.17487/RFC7159"/>
        </reference>
        <reference anchor="RFC7517">
          <front>
            <title>JSON Web Key (JWK)</title>
            <author fullname="M. Jones" initials="M." surname="Jones"/>
            <date month="May" year="2015"/>
            <abstract>
              <t>A JSON Web Key (JWK) is a JavaScript Object Notation (JSON) data structure that represents a cryptographic key. This specification also defines a JWK Set JSON data structure that represents a set of JWKs. Cryptographic algorithms and identifiers for use with this specification are described in the separate JSON Web Algorithms (JWA) specification and IANA registries established by that specification.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="7517"/>
          <seriesInfo name="DOI" value="10.17487/RFC7517"/>
        </reference>
        <reference anchor="RFC8414">
          <front>
            <title>OAuth 2.0 Authorization Server Metadata</title>
            <author fullname="M. Jones" initials="M." surname="Jones"/>
            <author fullname="N. Sakimura" initials="N." surname="Sakimura"/>
            <author fullname="J. Bradley" initials="J." surname="Bradley"/>
            <date month="June" year="2018"/>
            <abstract>
              <t>This specification defines a metadata format that an OAuth 2.0 client can use to obtain the information needed to interact with an OAuth 2.0 authorization server, including its endpoint locations and authorization server capabilities.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="8414"/>
          <seriesInfo name="DOI" value="10.17487/RFC8414"/>
        </reference>
        <reference anchor="RFC8417">
          <front>
            <title>Security Event Token (SET)</title>
            <author fullname="P. Hunt" initials="P." role="editor" surname="Hunt"/>
            <author fullname="M. Jones" initials="M." surname="Jones"/>
            <author fullname="W. Denniss" initials="W." surname="Denniss"/>
            <author fullname="M. Ansari" initials="M." surname="Ansari"/>
            <date month="July" year="2018"/>
            <abstract>
              <t>This specification defines the Security Event Token (SET) data structure. A SET describes statements of fact from the perspective of an issuer about a subject. These statements of fact represent an event that occurred directly to or about a security subject, for example, a statement about the issuance or revocation of a token on behalf of a subject. This specification is intended to enable representing security- and identity-related events. A SET is a JSON Web Token (JWT), which can be optionally signed and/or encrypted. SETs can be distributed via protocols such as HTTP.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="8417"/>
          <seriesInfo name="DOI" value="10.17487/RFC8417"/>
        </reference>
        <reference anchor="RFC8725">
          <front>
            <title>JSON Web Token Best Current Practices</title>
            <author fullname="Y. Sheffer" initials="Y." surname="Sheffer"/>
            <author fullname="D. Hardt" initials="D." surname="Hardt"/>
            <author fullname="M. Jones" initials="M." surname="Jones"/>
            <date month="February" year="2020"/>
            <abstract>
              <t>JSON Web Tokens, also known as JWTs, are URL-safe JSON-based security tokens that contain a set of claims that can be signed and/or encrypted. JWTs are being widely used and deployed as a simple security token format in numerous protocols and applications, both in the area of digital identity and in other application areas. This Best Current Practices document updates RFC 7519 to provide actionable guidance leading to secure implementation and deployment of JWTs.</t>
            </abstract>
          </front>
          <seriesInfo name="BCP" value="225"/>
          <seriesInfo name="RFC" value="8725"/>
          <seriesInfo name="DOI" value="10.17487/RFC8725"/>
        </reference>
        <reference anchor="RFC9068">
          <front>
            <title>JSON Web Token (JWT) Profile for OAuth 2.0 Access Tokens</title>
            <author fullname="V. Bertocci" initials="V." surname="Bertocci"/>
            <date month="October" year="2021"/>
            <abstract>
              <t>This specification defines a profile for issuing OAuth 2.0 access tokens in JSON Web Token (JWT) format. Authorization servers and resource servers from different vendors can leverage this profile to issue and consume access tokens in an interoperable manner.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="9068"/>
          <seriesInfo name="DOI" value="10.17487/RFC9068"/>
        </reference>
        <reference anchor="RFC9700">
          <front>
            <title>Best Current Practice for OAuth 2.0 Security</title>
            <author fullname="T. Lodderstedt" initials="T." surname="Lodderstedt"/>
            <author fullname="J. Bradley" initials="J." surname="Bradley"/>
            <author fullname="A. Labunets" initials="A." surname="Labunets"/>
            <author fullname="D. Fett" initials="D." surname="Fett"/>
            <date month="January" year="2025"/>
            <abstract>
              <t>This document describes best current security practice for OAuth 2.0. It updates and extends the threat model and security advice given in RFCs 6749, 6750, and 6819 to incorporate practical experiences gathered since OAuth 2.0 was published and covers new threats relevant due to the broader application of OAuth 2.0. Further, it deprecates some modes of operation that are deemed less secure or even insecure.</t>
            </abstract>
          </front>
          <seriesInfo name="BCP" value="240"/>
          <seriesInfo name="RFC" value="9700"/>
          <seriesInfo name="DOI" value="10.17487/RFC9700"/>
        </reference>
        <reference anchor="Sanso" target="https://auth0.com/blog/critical-vulnerability-in-json-web-encryption/">
          <front>
            <title>Critical Vulnerability in JSON Web Encryption</title>
            <author initials="A." surname="Sanso" fullname="Antonio Sanso">
              <organization/>
            </author>
            <date year="2017" month="March"/>
          </front>
        </reference>
        <reference anchor="Valenta" target="https://ia.cr/2018/298">
          <front>
            <title>In search of CurveSwap: Measuring elliptic curve implementations in the wild</title>
            <author initials="L." surname="Valenta" fullname="Luke Valenta">
              <organization/>
            </author>
            <author initials="N." surname="Sullivan" fullname="Nick Sullivan">
              <organization/>
            </author>
            <author initials="A." surname="Sanso" fullname="Antonio Sanso">
              <organization/>
            </author>
            <author initials="N." surname="Heninger" fullname="Nadia Heninger">
              <organization/>
            </author>
            <date year="2018" month="March"/>
          </front>
        </reference>
        <reference anchor="OWASP-Password-Storage" target="https://cheatsheetseries.owasp.org/cheatsheets/Password_Storage_Cheat_Sheet.html">
          <front>
            <title>Password Storage Cheat Sheet</title>
            <author>
              <organization>OWASP</organization>
            </author>
            <date year="2025"/>
          </front>
          <seriesInfo name="OWASP Cheat Sheet Series" value=""/>
        </reference>
        <reference anchor="I-D.ietf-jose-deprecate-none-rsa15">
          <front>
            <title>JOSE: Deprecate 'none' and 'RSA1_5'</title>
            <author fullname="Neil Madden" initials="N." surname="Madden">
              <organization>Hazelcast</organization>
            </author>
            <date day="2" month="March" year="2026"/>
            <abstract>
              <t>   This document updates [RFC7518] to deprecate the JWS algorithm "none"
   and the JWE algorithm "RSA1_5".  These algorithms have known security
   weaknesses.  It also updates the Review Instructions for Designated
   Experts to establish baseline security requirements that future
   algorithm registrations should meet.

              </t>
            </abstract>
          </front>
          <seriesInfo name="Internet-Draft" value="draft-ietf-jose-deprecate-none-rsa15-04"/>
        </reference>
      </references>
    </references>
    <?line 893?>

<section anchor="changes-from-rfc8725">
      <name>Changes from RFC 8725</name>
      <t>This document obsoletes RFC 8725 and provides several significant improvements and additions:</t>
      <ol spacing="normal" type="1"><li>
          <t>Algorithm Verification: Added defensive checking to address incorrect reading of <tt>alg</tt> values as being case-insensitive (<xref target="algorithm-verification"/>).</t>
        </li>
        <li>
          <t>Encryption-Signature Confusion: Added mitigation for attacks where verifiers don't distinguish between successful decryption and successful signature validation (<xref target="preventing-confusion"/>).</t>
        </li>
        <li>
          <t>PBES2 Count Limits: Added requirements to reject unreasonably large <tt>p2c</tt> (PBES2 Count) values to prevent DoS attacks (<xref target="limit-iterations"/>).</t>
        </li>
        <li>
          <t>JWT Format Confusion: Added mitigation for JWT serialization format confusion attacks (<xref target="token-format"/>).</t>
        </li>
        <li>
          <t>Compression DoS: Added mitigation for DoS attacks resulting from abuse of compression in JWE (<xref target="limit-decompression"/>).</t>
        </li>
        <li>
          <t>Described relationship between explicit typing and kinds of JWTs not already employing it.</t>
        </li>
      </ol>
    </section>
    <section anchor="autogen-document-history">
      <name>Document History</name>
      <t>[[Note to RFC Editor: please remove before publication.]]</t>
      <section anchor="autogen-draft-ietf-oauth-rfc8725bis-05">
        <name>draft-ietf-oauth-rfc8725bis-05</name>
        <ul spacing="normal">
          <li>
            <t>Applied suggestions by responsible AD Deb Cooley.</t>
          </li>
        </ul>
      </section>
      <section anchor="autogen-draft-ietf-oauth-rfc8725bis-04">
        <name>draft-ietf-oauth-rfc8725bis-04</name>
        <ul spacing="normal">
          <li>
            <t>Applied suggestions by document shepherd Hannes Tschofenig.</t>
          </li>
        </ul>
      </section>
      <section anchor="autogen-draft-ietf-oauth-rfc8725bis-03">
        <name>draft-ietf-oauth-rfc8725bis-03</name>
        <ul spacing="normal">
          <li>
            <t>Described relationship between explicit typing and kinds of JWTs not already employing it.</t>
          </li>
        </ul>
      </section>
      <section anchor="autogen-draft-ietf-oauth-rfc8725bis-02">
        <name>draft-ietf-oauth-rfc8725bis-02</name>
        <ul spacing="normal">
          <li>
            <t>Incorporated Aaron Parecki's review suggestions.</t>
          </li>
          <li>
            <t>Acknowledged contributors to the new content in this specification.</t>
          </li>
        </ul>
      </section>
      <section anchor="autogen-draft-ietf-oauth-rfc8725bis-01">
        <name>draft-ietf-oauth-rfc8725bis-01</name>
        <ul spacing="normal">
          <li>
            <t>Applied editorial suggestions by Dan Moore.</t>
          </li>
          <li>
            <t>Described changes relative to RFC 8725.</t>
          </li>
        </ul>
      </section>
      <section anchor="autogen-draft-ietf-oauth-rfc8725bis-00">
        <name>draft-ietf-oauth-rfc8725bis-00</name>
        <ul spacing="normal">
          <li>
            <t>Draft adopted, no textual changes</t>
          </li>
        </ul>
      </section>
      <section anchor="autogen-draft-sheffer-oauth-rfc8725bis-02">
        <name>draft-sheffer-oauth-rfc8725bis-02</name>
        <ul spacing="normal">
          <li>
            <t>Obsoletes RFC 8725 and updates RFC 7519.</t>
          </li>
        </ul>
      </section>
      <section anchor="autogen-draft-sheffer-oauth-rfc8725bis-01">
        <name>draft-sheffer-oauth-rfc8725bis-01</name>
        <ul spacing="normal">
          <li>
            <t>Mitigate encryption-signature confusion.</t>
          </li>
          <li>
            <t>Reject unreasonably large <tt>p2c</tt> (PBES2 Count) values.</t>
          </li>
          <li>
            <t>Defensive checking to address incorrect reading of <tt>alg</tt> values as being case-insensitive.</t>
          </li>
          <li>
            <t>Mitigate DoS attacks resulting from abuse of compression.</t>
          </li>
          <li>
            <t>Mitigate JWT serialization format confusion.</t>
          </li>
        </ul>
      </section>
      <section anchor="autogen-draft-sheffer-oauth-rfc8725bis-00">
        <name>draft-sheffer-oauth-rfc8725bis-00</name>
        <ul spacing="normal">
          <li>
            <t>Initial version, text is identical to RFC 8725.</t>
          </li>
        </ul>
      </section>
    </section>
  </back>
  <!-- ##markdown-source:
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

-->

</rfc>
