arrow-left

All pages
gitbookPowered by GitBook
1 of 1

Loading...

Java - JWT Null

hashtag
Running the app on Docker

circle-check

Now that the app is running let's go hacking!

hashtag
Reconnaissance

hashtag
Step1

The application let us authenticate an user and see its privileges.

First thing we need to do know is to do more investigation on the requests that are being made. We do this by setting up our intercepting proxy so we can gain more understanding of the application under test.

After we set up our favourite intercepting proxy we are going to look at the traffic between the server and the front-end. Enter the credentials: username: user | password:user

The first thing to notice is after sucessful logon, the response contains an access token.

The image above shows the access-token contains three base64 encoded splitted with two dots (.) separators, which indicates it's a JSON Web Token (JWT):

hashtag
Header

hashtag
Claims

hashtag
Signature

Last encrypted part, containing the digital signature for the token..

hashtag
Exploitation

hashtag
Step 1

A potential attacker can now decode the token in website to check its content.

As shown in the above picture, there are 2 points which can be tampered.

  • alg header: contains the information of which algorithm is being used for digital signature of the token.

  • indentity: this information is used by the application to identify which user ID is currently authenticated.

How about checking if the server is blindly accepting the digital signature algorithm as stored by token. Of course, changing the signature would also change the token signature, but, what if the server accepts NONE algorithm?

The NONE algorithm means signature is not required, so the token can be tampered and will be accepted by the server.

=======

hashtag
Step 2

hashtag
Header tampering

Now, let's play with the identity:

As the signature is not required, the new tampered JWT token will look like this:

eyJ0eXAiOiJKV1QiLCJhbGciOiJub25lIn0=.eyJpZGVudGl0eSI6IDJ9.

hashtag
Step 2

Open the local storage tab within the browser and replace the original token:

Now hit the Admin button and check if the tampered token was accepted.

Yes! The server accepted the tampered access-token. Can we check if there are more users available which can be impersonated?

hashtag
Additional Resources

Please refer to the JWT.io information for more information regarding JWT.

Also consider OWASP JWT Cheat Sheet as reference.

$ sudo docker pull blabla1337/owasp-skf-lab:java-jwt-null
$ sudo docker run -ti -p 127.0.0.1:5000:5000 blabla1337/owasp-skf-lab:java-jwt-null
http://jwt.ioarrow-up-right
{
 "alg": "HS256",
 "typ": "JWT"
}
{
 "identity": 1
}
{
  "typ": "JWT",
  "alg": "none"
}
#base64 eyJ0eXAiOiJKV1QiLCJhbGciOiJub25lIn0= 
{
  "identity": 2
}
JWT.IO - JSON Web Tokens IntroductionJSON Web Tokens - jwt.iochevron-right
https://github.com/OWASP/CheatSheetSeries/blob/master/cheatsheets/JSON_Web_Token_Cheat_Sheet_for_Java.mdgithub.comchevron-right
Logo