Research
Security News
Threat Actor Exposes Playbook for Exploiting npm to Build Blockchain-Powered Botnets
A threat actor's playbook for exploiting the npm ecosystem was exposed on the dark web, detailing how to build a blockchain-powered botnet.
@capriza/eslint-plugin-safe-sql
Advanced tools
ESLint plugin with rule for using the `SQL` template tag on raw SQL queries
ESLint plugin to enforce the use of the SQL
template tag from the library https://github.com/capriza/safe-sql.
The SQL
template tag from safe-sql
transforms the sql query in a template to a safe sql query with bound parameters for use with Sequelize.
$ npm install --save-dev @capriza/eslint-plugin-safe-sql
Add the following to your .eslint.json
file:
"plugins": ["@capriza/safe-sql"],
"rules": {"@capriza/safe-sql/no-unsafe-sql": "error"}
no-unsafe-sql
ruleForbids the use of raw SQL in string literals or untagged templates, requiring the use of the SQL
template tag.
const SQL = require("safe-sql");
const table = "users";
var query = "SELECT * FROM " + table; // this will generate eslint error
sequelize.query(`SELECT * FROM ${table}`); // this will generate eslint error
sequelize.query(SQL`SELECT * FROM ${table}`); // this will NOT generate eslint error
FAQs
ESLint plugin with rule for using the `SQL` template tag on raw SQL queries
The npm package @capriza/eslint-plugin-safe-sql receives a total of 4 weekly downloads. As such, @capriza/eslint-plugin-safe-sql popularity was classified as not popular.
We found that @capriza/eslint-plugin-safe-sql demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 14 open source maintainers 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 threat actor's playbook for exploiting the npm ecosystem was exposed on the dark web, detailing how to build a blockchain-powered botnet.
Security News
NVD’s backlog surpasses 20,000 CVEs as analysis slows and NIST announces new system updates to address ongoing delays.
Security News
Research
A malicious npm package disguised as a WhatsApp client is exploiting authentication flows with a remote kill switch to exfiltrate data and destroy files.