In a few clicks we can analyze your entire application and see what components are vulnerable in your application, and suggest you quick fixes.
Test your applicationsUpgrade to version 3.17.0 or greater.
sequelize
versions prior to 3.17.0 are vulnerable to SQL Injection attacks if untrusted user input is passed into the order
or limit
parameters.
models.User.findAll({
limit: '1; DELETE FROM "Users" WHERE 1=1; --',
}).then(function (users) {
console.log(users);
});