WSTG - Latest | OWASP Foundation (2024)

Home>Latest>4-Web Application Security Testing>06-Session Management Testing

ID
WSTG-SESS-10

Summary

JSON Web Tokens (JWTs) are cryptographically signed JSON tokens, intended to share claims between systems. They are frequently used as authentication or session tokens, particularly on REST APIs.

JWTs are a common source of vulnerabilities, both in how they are in implemented in applications, and in the underlying libraries. As they are used for authentication, a vulnerability can easily result in a complete compromise of the application.

Test Objectives

  • Determine whether the JWTs expose sensitive information.
  • Determine whether the JWTs can be tampered with or modified.

How to Test

Overview

JWTs are made up of three components:

  • The header
  • The payload (or body)
  • The signature

Each component is base64 encoded, and they are separated by periods (.). Note that the base64 encoding used in a JWT strips out the equals signs (=), so you may need to add these back in to decode the sections.

Analyse the Contents

Header

The header defines the type of token (typically JWT), and the algorithm used for the signature. An example decoded header is shown below:

{ "alg": "HS256", "typ": "JWT"}

There are three main types of algorithms that are used to calculate the signatures:

Algorithm Description
HSxxx HMAC using a secret key and SHA-xxx.
RSxxx and PSxxx Public key signature using RSA.
ESxxx Public key signature using ECDSA.

There are also a wide range of other algorithms which may be used for encrypted tokens (JWEs), although these are less common.

Payload

The payload of the JWT contains the actual data. An example payload is shown below:

{ "username": "administrator", "is_admin": true, "iat": 1516239022, "exp": 1516242622}

The payload is it not usually encrypted, so review it to determine whether there is any sensitive of potentially inappropriate data included within it.

This JWT includes the username and administrative status of the user, as well as two standard claims (iat and exp). These claims are defined in RFC 5719, a brief summary of them is given in the table below:

Claim Full Name Description
iss Issuer The identity of the party who issued the token.
iat Issued At The Unix timestamp of when the token was issued.
nbf Not Before The Unix timestamp of earliest date that the token can be used.
exp Expires The Unix timestamp of when the token expires.

Signature

The signature is calculated using the algorithm defined in the JWT header, and then base64 encoded and appended to the token. Modifying any part of the JWT should cause the signature to be invalid, and the token to be rejected by the server.

Review Usage

As well as being cryptographically secure itself, the JWT also needs to be stored and sent in a secure manner. This should include checks that:

  • It is always sent over encrypted (HTTPS) connections.
  • If it is stored in a cookie, then it should be marked with appropriate attributes.

The validity of the JWT should also be reviewed, based on the iat, nbf and exp claims, to determine that:

  • The JWT has a reasonable lifespan for the application.
  • Expired tokens are rejected by the application.

Signature Verification

One of the most serious vulnerabilities encountered with JWTs is when the application fails to validate that the signature is correct. This usually occurs when a developer uses a function such as the NodeJS jwt.decode() function, which simply decodes the body of the JWT, rather than jwt.verify(), which verifies the signature before decoding the JWT.

This can be easily tested for by modifying the body of the JWT without changing anything in the header or signature, submitting it in a request to see if the application accepts it.

The None Algorithm

As well as the public key and HMAC-based algorithms, the JWT specification also defines a signature algorithm called none. As the name suggests, this means that there is no signature for the JWT, allowing it to be modified.

This can be tested by modifying the signature algorithm (alg) in the JWT header to none, as shown in the example below:

{ "alg": "none", "typ": "JWT"}

The header and payload are then re-encoded with base64, and the signature is removed (leaving the trailing period). Using the header above, and the payload listed in the payload section, this would give the following JWT:

eyJhbGciOiAibm9uZSIsICJ0eXAiOiAiSldUIn0K.eyJ1c2VybmFtZSI6ImFkbWluaW5pc3RyYXRvciIsImlzX2FkbWluIjp0cnVlLCJpYXQiOjE1MTYyMzkwMjIsImV4cCI6MTUxNjI0MjYyMn0.

Some implementations try and avoid this by explicitly blocking the use of the none algorithm. If this is done in a case-insensitive way, it may be possible to bypass by specifying an algorithm such as NoNe.

ECDSA “Psychic Signatures”

A vulnerability was identified in Java version 15 to 18 where they did not correctly validate ECDSA signatures in some circ*mstances (CVE-2022-21449, known as “psychic signatures”). If one of these vulnerable versions is used to parse a JWT using the ES256 algorithm, this can be used to completely bypass the signature verification by tampering the body and then replacing the signature with the following value:

MAYCAQACAQA

Resulting in a JWT which looks something like this:

eyJhbGciOiJFUzI1NiIsInR5cCI6IkpXVCJ9.eyJhZG1pbiI6InRydWUifQ.MAYCAQACAQA

Weak HMAC Keys

If the JWT is signed using a HMAC-based algorithm (such as HS256), the security of the signature is entirely reliant on the strength of the secret key used in the HMAC.

If the application is using off-the-shelf or open source software, the first step should be go investigate the code, and see whether there is default HMAC signing key that is used.

If there isn’t a default, then it may be possible to crack guess or brute-force they key. The simplest way to do this is to use the crackjwt.py script, which simply requires the JWT and a dictionary file.

A more powerful option is to convert the JWT into a format that can be used by John the Ripper using the jwt2john.py script. John can then be used to carry out much more advanced attacks against the key.

If the JWT is large, it may exceed the maximum size supported by John. This can be worked around by increasing the value of the SALT_LIMBS variable in /src/hmacSHA256_fmt_plug.c (or the equivalent file for other HMAC formats) and recompiling John, as discussed in the following GitHub issue.

If this key can be obtained, then it is possible to create and sign arbitrary JWTs, which usually results in a complete compromise of the application.

HMAC vs Public Key Confusion

If the application uses JWTs with public key based signatures, but does not check that the algorithm is correct, this can potentially exploit this in a signature type confusion attack. In order for this to be successful, the following conditions need to be met:

  1. The application must expect the JWT to be signed with a public key based algorithm (i.e, RSxxx or ESxxx).
  2. The application must not check which algorithm the JWT is actually using for the signature.
  3. The public key used to verify the JWT must be available to the attacker.

If all of these conditions are true, then an attacker can use the public key to sign the JWT using a HMAC based algorithm (such as HS256). For example, the Node.js jsonwebtoken library uses the same function for both public key and HMAC based tokens, as shown in the example below:

// Verify a JWT signed using RS256jwt.verify(token, publicKey);// Verify a JWT signed using HS256jwt.verify(token, secretKey);

This means that if the JWT is signed using publicKey as a secret key for the HS256 algorithm, the signature will be considered valid.

In order to exploit this issue, the public key must be obtained. The most common way this can happen is if the application re-uses the same key for both signing JWTs and as part of the TLS certificate. In this case, the key can be downloaded from the server using a command such as the following:

openssl s_client -connect example.org:443 | openssl x509 -pubkey -noout

Alternatively, the key may be available from a public file on the site at a common location such as /.well-known/jwks.json.

In order to test this, modify the contents of the JWT, and then use the previously obtained public key to sign the JWT using the HS256 algorithm. This is often difficult to perform when testing without access to the source code or implementation details, because the format of the key must be identical to the one used by the server, so issues such as empty space or CRLF encoding may result in the keys not matching.

Attacker Provided Public Key

The JSON Web Signature (JWS) standard (which defines the header and signatures used by JWTs) allows the key used to sign the token to be embedded in the header. If the library used to validate the token supports this, and doesn’t check the key against a list of approved keys, this allows an attacker to sign an JWT with an arbitrary key that they provide.

There are a variety of scripts that can be used to do this, such as jwk-node-jose.py or jwt_tool.

  • Testing for Sensitive Information Sent via Unencrypted Channels.
  • Testing for Cookie Attributes.
  • Testing Browser Storage.

Remediation

  • Use a secure and up to date library to handle JWTs.
  • Ensure that the signature is valid, and that it is using the expected algorithm.
  • Use a strong HMAC key or a unique private key to sign them.
  • Ensure that there is no sensitive information exposed in the payload.
  • Ensure that JWTs are securely stored and transmitted.
  • See the OWASP JSON Web Tokens Cheat Sheet.

References

WSTG - Latest | OWASP Foundation (2024)
Top Articles
Here's What Happens if You Retire Without Enough Retirement Savings
What is the difference between Bitcoin and Ethereum? | Learn about crypto and DeFi | Get Started with Bitcoin.com
Fernald Gun And Knife Show
Xre-02022
Trevor Goodwin Obituary St Cloud
Mawal Gameroom Download
Magic Mike's Last Dance Showtimes Near Marcus Cedar Creek Cinema
My Vidant Chart
National Office Liquidators Llc
National Weather Service Denver Co Forecast
Sonic Fan Games Hq
Gemita Alvarez Desnuda
iZurvive DayZ & ARMA Map
Union Ironworkers Job Hotline
Joann Ally Employee Portal
Allentown Craigslist Heavy Equipment
We Discovered the Best Snow Cone Makers for Carnival-Worthy Desserts
Poe Str Stacking
Craigslist Personals Jonesboro
Lisas Stamp Studio
A Cup of Cozy – Podcast
2021 MTV Video Music Awards: See the Complete List of Nominees - E! Online
Craig Woolard Net Worth
Best Middle Schools In Queens Ny
Speedstepper
Joann Fabrics Lexington Sc
Martins Point Patient Portal
Die wichtigsten E-Nummern
Fairwinds Shred Fest 2023
Rlcraft Toolbelt
Siskiyou Co Craigslist
Pch Sunken Treasures
Yoshidakins
Netherforged Lavaproof Boots
Pitco Foods San Leandro
Facebook Marketplace Marrero La
New Gold Lee
The Complete Guide To The Infamous "imskirby Incident"
Baywatch 2017 123Movies
Letter of Credit: What It Is, Examples, and How One Is Used
Actor and beloved baritone James Earl Jones dies at 93
COVID-19/Coronavirus Assistance Programs | FindHelp.org
Lamp Repair Kansas City Mo
Shipping Container Storage Containers 40'HCs - general for sale - by dealer - craigslist
Jamesbonchai
Sofia Franklyn Leaks
Levi Ackerman Tattoo Ideas
Tacos Diego Hugoton Ks
Vci Classified Paducah
Aznchikz
Big Brother 23: Wiki, Vote, Cast, Release Date, Contestants, Winner, Elimination
The Missile Is Eepy Origin
Latest Posts
Article information

Author: Greg Kuvalis

Last Updated:

Views: 5570

Rating: 4.4 / 5 (55 voted)

Reviews: 94% of readers found this page helpful

Author information

Name: Greg Kuvalis

Birthday: 1996-12-20

Address: 53157 Trantow Inlet, Townemouth, FL 92564-0267

Phone: +68218650356656

Job: IT Representative

Hobby: Knitting, Amateur radio, Skiing, Running, Mountain biking, Slacklining, Electronics

Introduction: My name is Greg Kuvalis, I am a witty, spotless, beautiful, charming, delightful, thankful, beautiful person who loves writing and wants to share my knowledge and understanding with you.