no-unsafe-query
Prevent SQL injection by disallowing string concatenation or interpolated template literals in SQLite statements.
CWE: CWE-89 OWASP: A03:2021 – Injection
Detects SQL injection in SQLite raw queries. This rule is part of eslint-plugin-sqlite-security.
💼 This rule is set to error in the recommended config.
Quick Summary
| Aspect | Details |
|---|---|
| CWE Reference | CWE-89 (SQL Injection) |
| Severity | Critical (CVSS 9.8) |
| Auto-Fix | ❌ No auto-fix available |
| Category | Security |
Rule Details
Reports three shapes when they reach a raw-SQL sink:
- String concatenation —
db.prepare('SELECT ... ' + value) - Template interpolation —
db.prepare(`SELECT ... ${value}`) - A variable tainted by either, including via
+=, then passed to a sink
Sinks
.prepare(), .exec(), .run(), .all() and .get(). Several of these are common method names outside SQLite, so a finding also requires a SQL keyword in the static text.
Because several of these are common method names outside SQLite, a finding additionally requires a SQL keyword (SELECT, INSERT, UPDATE, DELETE, FROM, WHERE, VALUES, …) in the static part of the string.
❌ Incorrect
await db.prepare(`SELECT * FROM users WHERE id = ${userId}`);
await db.prepare('SELECT * FROM users WHERE email = ' + email);
let sql = 'SELECT * FROM products WHERE 1=1';
sql += ` AND name = '${name}'`;
await db.prepare(sql);✅ Correct
db.prepare('SELECT * FROM users WHERE id = ?').get(userId);Known limitations
- Only identifier member access is matched, so
db['prepare'](...)is a false negative. - Taint tracking is single-scope and name-based — it does not follow a query string across function boundaries.
Implementation
The detection is shared across the driver plugins via createSqlInjectionRule
in @interlace/eslint-devkit; this rule supplies SQLite's sinks and
remediation copy. Install the plugin matching your stack and you get exactly
one finding per line.
Further Reading
Did this rule catch something? Star the repo to get new CWE coverage as we ship it — or follow the AI-code-security benchmarks behind these rules.