fbpx

Get Your Hands Dirty With JWT

Hi there! Wondering how to exploit vulnerabilities arising because of the flawed implementation of JWT, let’s go.

Starting with a small introduction to JWT and its structure as they are the primary things we should keep in mind while exploiting their mechanism.

Introduction

JSON Web Token (JWT) is an open standard that defines a compact and self-contained way for securely transmitting information between parties as a JSON object. This information can be verified and trusted because it is digitally signed. JWTs are often used to authenticate users. They can be signed using a secret (with the HMAC algorithm) or a public/private key pair using RSA.

Purpose
JWTs are used for a variety of purposes, including:
1. Allowing the server to authenticate the user and maintain a user session.
2. Allowing the client to authenticate the server.
3. Allowing the server to transmit information about the user to the client.
JWTs are used in many different applications and are often associated with OAuth2, which is an open standard for authorization.

Structure

The three parts of the JWT are separated by dots (.). The first part is the header, the second part is the payload, and the third part is the signature.


Header

The header typically consists of two parts: the type of the token, which is JWT, and the signing algorithm being used, such as HMAC SHA256 or RSA.

Payload

The second part of the token is the payload, which contains the claims(user details). Claims are statements about an entity (typically, the user) and additional data. There are three types of claims: registered, public, and private claims.

Signature

The third part of the token is the signature, which is used to verify that the sender of the JWT is who it says it is and to ensure that the message wasn’t changed along the way.

As we discussed the formation of JWT, we will head toward its exploitation.

There are several ways that vulnerabilities can arise in JSON Web Tokens (JWTs):

  1. Weak or compromised secret keys
  2. Insufficient JWT expiration time
  3. Using unencrypted JWTs
  4. Not properly validating JWT claims
  5. Allowing JWTs to be used in cross-site request forgery (CSRF) attacks
  6. Using JWTs with custom payloads, and many more

But here, we will see about how to exploit fallacious signature verification of JWT.

Pre-requirements: Install Burp Suite and use its default burp browser for intercepting the request or alternatively you can also configure Burp proxy to work with an external browser.

Case 1: Unverified signature

Firstly, I have intercepted the request of my-account having a JWT token. You can see the decoded JWT in the Inspector panel of Burp Suite and we can clearly observe that the current token we are seeing is of user wiener

So, what I have done is change the ‘sub’ parameter of the JWT payload section from wiener → administrator.

[NOTE: Payload section of JWT will change by changing any of the parameters]

Change the path from /my-account → /admin and send the request and ta-da we get the access to the administrator’s account.

Case 2: Flawed signature verification

Again, I have intercepted the request of my-account and noticed the ‘sub’ parameter and changed it from wiener → administrator.

Now jump to the header part of the token and observe the ‘alg’ parameter, it must be having some value. Change that parameter value to “none”. Send the request.



Nothing happened, we are still out. Remove the signature section of the token and replace it with trailing dots, send the request again and voila we got the access.



This is not it. Coming soon with another blog of the exploitation techniques using JWT header parameter injection. Till then eat, exploit, sleep and repeat.


Surat

Certbar Security

Contact

Office No.

Work Inquiries

Interested in working with us?

Career

Looking for a job opportunity?

Register With:

Work Inquiries

Interested in working with us?

Career

Looking for a job opportunity?

Surat

Certbar Security

Contact

Office No.

Work Inquiries

Interested in working with us?

Career

Looking for a job opportunity?

Register With:

© 2016-[year], Certbar Security. All rights reserved.

© 2016-[year], Certbar Security. All rights reserved.

Please enable JavaScript in your browser to complete this form.
Please enable JavaScript in your browser to complete this form.
Join As:
Interested In Batch:
I agree to bring my own laptop
Please enable JavaScript in your browser to complete this form.
Please enable JavaScript in your browser to complete this form.
Please enable JavaScript in your browser to complete this form.
Please enable JavaScript in your browser to complete this form.
Please enable JavaScript in your browser to complete this form.