NoSQL Injection
NoSQL databases are a type of database where objects are used instead of SQL strings. MongoDB is common but more are vulnerable
While SQL Injection in the traditional sense may not be possible, there are still some new opportunities for vulnerabilities that NoSQL introduces in MongoDB (see Similar Injections for different databases). Mainly the ability for the user to specify their own objects in a request, which may make the NoSQL database interpret the request as more than just a string.
Often the goal is to bypass some login screen, by returning an always-true request. Sometimes you want to get more specific records or try to extract data.
JSON Injection
Pretty often, especially in JavaScript backends, the server accepts JSON as data for API requests. The backend expects a certain simple format, like:
But in reality, an attacker can make the values of username
or password
any JSON object. This may have interesting results, and for NoSQL, you can create an object like the following:
This creates a query that asks if the password is not equal to "wrong", with $ne
. If there is then a user named "admin" with a different password, it will let you through and return the record of the "admin" user, bypassing the Login screen.
Forcing JSON
Most websites don't use JSON by default for requests, but some may still accept JSON data if you give it some. To change the content type of your POST data, you can add a Content-Type
header:
Then simply put JSON instead of URL parameters in your body, to see if the server still accepts the request with data in that format. If this works, you can try some NoSQL Injection as seen above.
To quickly do this in a proxy like Burp Suite, you can install this extension to easily convert your POST data into JSON, and add the correct header as well:
Injection in URL
While this JSON conversion sometimes works, it is not always accepted by the server. However, in PHP and possibly other frameworks there is another way to create arbitrary objects and inject NoSQL syntax:
This example will create the following array in PHP, and might trip up NoSQL queries:
Extracting data
Get other data
Often in a NoSQL injection, you are returning an always-true response to get through a login screen. This will return the first true record, which is likely always the first user created. But sometimes you want to log in as the second user, or any other user.
To return specifically that user, you can provide a unique thing about that user if you know it, like a username, while keeping the password always true.
If you don't know anything about other users, you can also simply exclude any user you don't want with the $nin
(Not IN) keyword, and an array:
RegEx Binary Search
Logging in does not regularly respond with the password for example that we made always true. This results in us being logged in, but not knowing the actual password, while it might still be useful to know this.
A login action typically is a boolean response, resulting in a successful login, or an unsuccessful one. With the powerful NoSQL operators, we can abuse this feedback to slowly extract values from the query character by character, using $regex
. The RegEx pattern will match if there is a password with that pattern, and fail if there is not.
Full injections
Sometimes, you may have a larger injection where you control the whole query. You can recognize this commonly by a $match
key in your original input query that the application sends by itself. The server may have an API endpoint for easy querying of products:
Aggregate functions ($match
-> $lookup
)
$match
-> $lookup
)The front end may always use the $match
aggregation, but we as the attacker can use different keywords to perform different actions. A useful one is $lookup
which performs a JOIN operation between two collections. This means the response JSON will include extra keys you define from another collection.
The JOIN operation combines collections but does so conditionally. You need to provide one key from the original collection and one from the new collection. Where these keys are the same, all values of the new collection are added to the response. Often you want to do this with the _id
key if the products are numbered 1,2,3... and your users are as well. Then every n
th product will also include the n
th user:
In this attack we try to fetch from the users
collection where the product _id
matches with the users _id
The above method requires the collections to have a key in common, which is not always the case. However, there is another more advanced method to JOIN on any condition, using the "pipeline"
key. This allows you to write another custom query where you can match anything, like _id
not being empty in the new collection. In the leak, it will now contain every document in the collection at once:
Write data
You can do a lot with NoSQL Injection when you control the query. You might expect a query
to only retrieve data, but with large enough control over the query you can actually alter collections and write them out to the database. By combining multiple operators we can do the following:
$skip
: Get rid of any original response (products
), to create an empty list$unionWith
: Add all documents from theusers
collection to the response$set
: Alter specific keys in the response, and write our data$out
: Write the response to a collection, overwriting all data
All of these combined into a payload will allow you to go from a products
query, to overwriting any data in the users
collection. You could for example set the "password": "hacked"
for all users, including yourself:
The above query will create an altered users
collection and write it. Here is a step-by-step walkthrough of the response:
This can also be really useful in further attacks by inserting data some other system doesn't expect. Such as XSS, Insecure Deserialisation, or more injection attacks
Filter Bypass
In most examples above, I used the $ne
operator. But there are lots more ways to achieve an always-true result. For example:
$where
MongoDB is a popular NoSQL framework, but sometimes still allows for a string injection like regular SQL Injection. Sometimes your input will end up in a $where
clause with a condition similar to the following:
In the same way as SQL Injection, you can make this condition always true by injecting one of the following in the username
field:
Another simple way to make one statement true without many special characters:
For more payloads for the same idea see PayloadAllTheThings.
Note: While it seems we are injecting into server-side JavaScript code, this language from MongoDB is very restricted and in modern versions does not have much use for attackers. However, in very old versions it might be possible to get Remote Code Execution from this
Similar Injections
With these ORM solutions becoming more popular, and developers forgetting it's possible to create object structures in most frameworks with your request, many different databases are vulnerable in a similar way. While NoSQL Injection on MongoDB is the most well-known, the idea of using operators like $ne
or $regex
are not exclusive to it, and might exist just with different names. be sure to check out the documentation if you are unsure.
Apache CouchDB
See the Selector Syntax for a full guide. Anywhere the $
operators can be used just like with MongoDB, there is basically no difference in attacking:
Prisma
See Filter Conditions and Operators for a full list. Similar to MongoDB, the common Prisma ORM allows using operators anywhere in your query object. The naming scheme is plain and can only be used when Prisma expects it, like when you open brackets on what should be a string. The functionality is basically the same as MongoDB, just with some other names:
You can get creative with OR
and startsWith
operators to specify half of the possibilities like in RegEx Binary Search to achieve the optimized performance again
Last updated