0xma Cyber Security Articles




February 15, 2022

NoSQL Authentication Bypass

In this tutorial we will see how to bypass NoSQL authentication. The server is running Node.js (Express) and it prompts us for a username and password.

This is the main page of the website. We click on Login.

Main page of the website.

We use "admin" for the username and "secret" for the password.

Login page with credentials.

We capture the login request in Burp Intercept. Note that the "Content-Type" is "application/x-www-form-urlencoded".

Capture of the login request in Burp Intercept.

Since the credentials are wrong, we are presented with the "Invalid Password" response.

Invalid credentials response.

This GitHub page contains some really good payloads for NoSQL injections.

NoSQL Injection GitHub payloads. NoSQL Injection GitHub payloads.

After capturing the login request in Burp Intercept, we add "[$ne]" operator in the password field. This operator is used to display all users that have the username "admin" whose password is not "secret".

Injection of NoSQL payload into the login credentials.

Unfortunately, we get the "Invalid Password" response again.

Invalid credentials response.

Let's try sending our credentials in JSON format. Note that the "Content-Type" is set to "application/json".

Injection of NoSQL payload into the login credentials in JSON format.

This technique worked and we managed to gain access to the web application.

Successful login by using NoSQL injection.

You can follow me on Twitter mujtabareads.