Research
Security News
Malicious npm Package Targets Solana Developers and Hijacks Funds
A malicious npm package targets Solana developers, rerouting funds in 2% of transactions to a hardcoded address.
perfect-express-sanitizer
Advanced tools
a complete package to control user input data to prevent Cross Site Scripting (XSS) ,Sql injection and no Sql injection attack
perfect-express-sanitizer
is a comprehensive package that helps you control user input data to prevent Cross-Site Scripting (XSS), SQL injection, and NoSQL injection attacks. It can sanitize the body, query, and header of requests to remove any potentially harmful data.
You can install perfect-express-sanitizer
via NPM:
npm install perfect-express-sanitizer
You can use perfect-express-sanitizer in any JavaScript project, not just with Express. Here’s an example of how to use the prepareSanitize method to sanitize a string:
const perfectExpressSanitizer = require("perfect-express-sanitizer");
const input = "<script>alert('test')</script> bob miler";
const options = { xss: true, noSql: true, sql: true, level: 5 };
const sanitizedInput = perfectExpressSanitizer.sanitize.prepareSanitize(
input,
options
);
console.log(sanitizedInput);
// Output: " bob miler"
You can also use perfect-express-sanitizer
as a middleware in an Express app to automatically sanitize all incoming requests. Here’s an example of how to set it up:
const sanitizer = require("perfect-express-sanitizer");
app.use(
sanitizer.clean({
xss: true,
noSql: true,
sql: true,
})
);
customizeFile
, which allows you to define custom keywords to sanitize sensitive data. This is perfect for cases where you want to avoid false positives and ensure that your real data is not wrongly lost.
customizeFile
To use this feature, simply follow these steps:
[
{
"keyword": "deleteCustom"
},
{
"keyword": "dropCustom"
}
]
customizeFile
option when setting up the middleware.
Here's an example:
app.use(
sanitizer.clean({
xss: true,
noSql: true,
sql: true,
customizeFile: './custom_file.json'
})
);
perfect-express-sanitizer
allows you to define custom keywords to sanitize from sensitive data. You can specify these keywords as strings or regular expressions in the forbiddenTags option when setting up the middleware. Here’s an example of how to define a custom keyword as a string:
In this example, the .execute
keyword is added to the list of forbidden tags, so it will be removed from any data that is sanitized by the middleware.
sanitizer.clean({
xss: true,
noSql: true,
level: 5,
forbiddenTags: [".execute"],
});
You can also use regular expressions to define more complex patterns for forbidden tags. Here’s an example of how to use a regular expression to remove any instances of a digit followed by an equals sign followed by another digit
In this example, the regular expression /\d=\d/gm
is added to the list of forbidden tags, so any matches will be removed from the data.
sanitizer.clean({
xss: true,
noSql: true,
level: 5,
forbiddenTags: [/\d=\d/gm,".execute"],
})
If you want to skip sanitization for certain routes, you can specify a whitelist of routes when setting up the middleware:
const whiteList = ["/users", "/users/list", "/users/search?age"];
app.use(
sanitizer.clean(
{
xss: true,
noSql: true,
sql: true,
},
whiteList
)
);
By default, perfect-express-sanitizer
sanitizes all parts of the request (body, query, and header). If you only want to sanitize specific parts of the request, you can specify them when setting up the middleware:
app.use(
sanitizer.clean(
{
xss: true,
noSql: true,
sql: true,
},
whiteList = [],
only = ["body", "query"]
)
);
For an option that sanitizes keys, you could consider the following option sanitizeKeys: true
example:
app.use(
sanitizer.clean(
{
xss: true,
noSql: true,
sanitizeKeys: true,
},
whiteList = [],
only = ["body", "query"]
)
);
You can set different levels of sanitization for SQL and NoSQL injections by specifying the sqlLevel and noSqlLevel options when setting up the middleware. The levels range from 1 to 5, with higher levels providing more comprehensive sanitization.
app.use(sanitizer.clean({
xss: true,
noSql: true,
sql: true,
sqlLevel: 5,
noSqlLevel: 5
}));
You can also specify a list of allowed keys that should be skipped during sanitization. Here’s an example of how to allow the name key:
app.use(
sanitizer.clean({
xss: true,
noSql: true,
sql: true,
sqlLevel: 5,
noSqlLevel: 5,
allowedKeys: ["name"],
})
);
In addition to sanitizing user input, perfect-express-sanitizer also provides methods for detecting dangerous keywords in user input. These methods can be used to check for XSS, SQL injection, and NoSQL injection attempts. Here are some examples of how to use these methods:
const perfectExpressSanitizer = require("perfect-express-sanitizer");
// Detecting XSS attempts:
const hasXss = await perfectExpressSanitizer.detectXss('bob try to <"alert(1)');
console.log(hasXss); // Output: true
// Detecting SQL injection attempts:
const hasSqlInjection = await perfectExpressSanitizer.detectSqlInjection('bob try to create table', 5);
console.log(hasSqlInjection); // Output: true
// Detecting NoSQL injection attempts:
const hasNoSqlInjection = await perfectExpressSanitizer.detectNoSqlInjection('bob try to findOne', 5);
console.log(hasNoSqlInjection); // Output: true
Pull requests are always welcome! Please base pull requests against the main branch and follow the contributing guide.
if your pull requests makes documentation changes, please update readme file.
This project is licensed under the terms of the MIT license
FAQs
a complete package to control user input data to prevent Cross Site Scripting (XSS) ,Sql injection and no Sql injection attack
The npm package perfect-express-sanitizer receives a total of 5,992 weekly downloads. As such, perfect-express-sanitizer popularity was classified as popular.
We found that perfect-express-sanitizer demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Research
Security News
A malicious npm package targets Solana developers, rerouting funds in 2% of transactions to a hardcoded address.
Security News
Research
Socket researchers have discovered malicious npm packages targeting crypto developers, stealing credentials and wallet data using spyware delivered through typosquats of popular cryptographic libraries.
Security News
Socket's package search now displays weekly downloads for npm packages, helping developers quickly assess popularity and make more informed decisions.