NodeJS - Parameter Binding
Last updated
Last updated
Now that the app is running let's go hacking!
Mass assignment is a computer vulnerability where an active record pattern in a web application is abused to modify data items that the user should not normally be allowed to access such as password, granted permissions, or administrator status.
Many web application frameworks offer an active record and object-relational mapping features, where external data in serialization formats is automatically converted on input into internal objects and, in turn, into database record fields. If the framework's interface for that conversion is too permissive and the application designer doesn't mark specific fields as immutable, it is possible to overwrite fields that were never intended to be modified from outside (e.g. admin permissions flag).
This attack is mostly really hard to recognize and identify since we can't tell by simply looking at an application that it might be utilizing an ORM framework.
Mostly for each popular programming language there is an ORM available
Programming language | ORM framework |
---|---|
Now, the summerization above just scratches the surface for all the different ORM that are out there in the wild.
This type of attack is also possible if the application is using an ODM (Object Document Mapping), the difference being ODM is used with NoSQL databases. A very popular ODM for nodeJs is mongoose, which is used for a MongoDB database.
In order to determine the stack that is running on the webserver we first need to do active reconnaissance on the webserver and application.
The fingerprinting is out of scope for this excersise but more information about the topic is found here:
https://www.owasp.org/index.php/Fingerprint_Web_Server_(OTG-INFO-002) https://www.owasp.org/index.php/Fingerprint_Web_Application_Framework_(OTG-INFO-008)
By inspecting the source code of the target application we find that it utlizes an ODM framework to write queries to the database.
Please take note of the following code in the UserRoutes.js . This line of code will prove critical for exploiting the parameter binding attack.
Now, let's examine the target application and determine the objective.
Let's log in with one of the credentials the application is suggesting.
If we logout and go back to the home page we see an option to register a new user.
Let's register a new user and check the request on Burp.
As we saw in this line of code:
The application is creating a new User using the OBM UserModel with req.body instead of using Object destructuring to extract only the username and password. Maybe if we add another parameter in the request this parameter will also pass to our new User.
Now if we login.
Bingo! We have now created a new user with Admin privileges.
Please refer to the OWASP cheat sheet for a full complete description about parameter binding attacks.
PHP laravel
Eloquent
Python
SQLAlchemy
Ruby
ActiveRecord
C#
Entity framework
Java
Hibernate