NodeJS
The backend for running JavaScript as a server or application
# Related Pages
JavaScriptBunCode Execution
Template Injection (SSTI)
Similar to sqlmap, there is tplmap which aims to automate template injections by testing various templating engines, as many exist for NodeJS. Here is a simple example:
The tool also allows you to exploit the injection using arguments such as --os-shell
.
See the --help
page for more useful arguments.
Dependencies (package.json
)
package.json
)In every NodeJS project, there is a package.json
file which contains a lot of metadata information about the project, such as where the main file is, some description, and the dependencies. These are external pieces of code with a version number attached that are used throughout the project.
A possible problem is when these dependencies aren't regularly updated, and vulnerabilities might be found in those dependencies and be fixed in later versions. If the code keeps using the older version it may become vulnerable because of those dependencies.
A simple way to check for known vulnerabilities is by uploading the package.json
file to Snyk checker:
For attackers, this can give an idea of what vulnerabilities there might be. Of course, not all vulnerabilities this checker finds are actually exploitable, but you should find what parts/functions of the vulnerable code are used to see if it is.
mysqljs/mysql
library (latest) - SQL Injection using Objects
mysqljs/mysql
library (latest) - SQL Injection using ObjectsThis popular npm
library uses prepared statements to prevent SQL Injection using regular strings, but a code example like the following is surprisingly still vulnerable:
In this case the username
and password
variables are directly passed into the SQL query, but using prepared statements with ?
question marks as placeholders. Normally this would not be vulnerable to SQL Injection as the library handles separating code and data for you, which would be true if the variables were strings.
If the variables are objects, however, weird things start to happen. With web endpoints in Express like the above, you can use the Content-Type: application/json
to use JSON for your body, which may contain a more complex Object
like the following:
This is not a string anymore and mysql
will have to put it into the query somehow. Instead of simply stringifying the object, it does something unexpected where key-value pairs become key=value
pairs inside of the final query:
To understand what this weird new query does, we follow the code from left to right. The WHERE
clause makes sure username
is equal to 'admin'
, and then comes the messed-up syntax. What actually happens here is that the first part password = password
means "the password column equals the password column", which is always true! Then the last = 1
simply tests if the previous expression is equal to one. Due to type coercion, TRUE
is the same as 1
, so this condition will also be true.
This results in only the username being checked, which in theory could also be injected in the same way by providing an object for the username, if the administrator username is not known and we want to simply log in as the first user.
Tip: JSON is not the only way to create an Object
instead of a String
, as some frameworks also accept the ?name[key]=value
syntax in query or body parameters. The above login bypass would look like this with the new syntax:
Successful protections against this technique are:
The alternative
mysql2
libraryWrapping parameters in
String(...)
to stringify themThe
stringifyObjects: true
option while setting up withcreateConnection
:
Last updated