{"url":"http://public2.vulnerablecode.io/api/packages/985085?format=json","purl":"pkg:npm/drizzle-orm@0.23.9","type":"npm","namespace":"","name":"drizzle-orm","version":"0.23.9","qualifiers":{},"subpath":"","is_vulnerable":true,"next_non_vulnerable_version":"0.45.2","latest_non_vulnerable_version":"1.0.0-beta.20","affected_by_vulnerabilities":[{"url":"http://public2.vulnerablecode.io/api/vulnerabilities/15775?format=json","vulnerability_id":"VCID-k4z8-9ka4-jbaz","summary":"Drizzle ORM has SQL injection via improperly escaped SQL identifiers\n### Summary\n\nDrizzle ORM improperly escaped quoted SQL identifiers in its dialect-specific `escapeName()` implementations. In affected versions, embedded identifier delimiters were not escaped before the identifier was wrapped in quotes or backticks.\n\nAs a result, applications that pass attacker-controlled input to APIs that construct SQL identifiers or aliases, such as `sql.identifier()`, `.as()`, may allow an attacker to terminate the quoted identifier and inject SQL.\n\n### Affected components\n\nThe issue affects the identifier escaping logic used by the PostgreSQL, MySQL, SQLite, SingleStore, and Gel dialects.\n\n### Impact\n\nThis issue only affects applications that pass untrusted runtime input into identifier or alias construction. Common examples include dynamic sorting, dynamic report builders, and CTE or alias names derived from request parameters.\n\nDepending on the database dialect, query context, and database permissions, successful exploitation may enable blind or direct data disclosure, schema enumeration, query manipulation, privilege escalation, or destructive operations.\n\nApplications that use only static schema objects, or that strictly map user input through an allowlist of known column or alias names, are not affected.\n\n### Details\n\nIn affected versions, `escapeName()` wrapped the identifier but did not escape the quote delimiter inside the identifier value:\n\n- PostgreSQL / SQLite / Gel: `\"` was not doubled to `\"\"`\n- MySQL / SingleStore: `` ` `` was not doubled to `` `` ``\n\nBecause of this, crafted input containing the dialect-specific identifier delimiter could break out of the quoted identifier and be interpreted as SQL syntax.\n\nA representative vulnerable pattern is dynamic sorting using untrusted input:\n\n```ts\nconst sortField = req.query.sort || 'id';\n\nconst rows = await db\n  .select()\n  .from(users)\n  .orderBy(sql.identifier(sortField));","references":[{"reference_url":"https://api.first.org/data/v1/epss?cve=CVE-2026-39356","reference_id":"","reference_type":"","scores":[{"value":"0.00017","scoring_system":"epss","scoring_elements":"0.046","published_at":"2026-05-29T12:55:00Z"}],"url":"https://api.first.org/data/v1/epss?cve=CVE-2026-39356"},{"reference_url":"https://github.com/drizzle-team/drizzle-orm","reference_id":"","reference_type":"","scores":[{"value":"7.5","scoring_system":"cvssv3.1","scoring_elements":"CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:N/A:N"},{"value":"HIGH","scoring_system":"generic_textual","scoring_elements":""}],"url":"https://github.com/drizzle-team/drizzle-orm"},{"reference_url":"https://github.com/drizzle-team/drizzle-orm/security/advisories/GHSA-gpj5-g38j-94v9","reference_id":"","reference_type":"","scores":[{"value":"7.5","scoring_system":"cvssv3.1","scoring_elements":"CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:N/A:N"},{"value":"HIGH","scoring_system":"generic_textual","scoring_elements":""},{"value":"Track","scoring_system":"ssvc","scoring_elements":"SSVCv2/E:N/A:Y/T:P/P:M/B:A/M:M/D:T/2026-04-08T14:33:41Z/"}],"url":"https://github.com/drizzle-team/drizzle-orm/security/advisories/GHSA-gpj5-g38j-94v9"},{"reference_url":"https://nvd.nist.gov/vuln/detail/CVE-2026-39356","reference_id":"","reference_type":"","scores":[{"value":"7.5","scoring_system":"cvssv3.1","scoring_elements":"CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:N/A:N"},{"value":"HIGH","scoring_system":"generic_textual","scoring_elements":""}],"url":"https://nvd.nist.gov/vuln/detail/CVE-2026-39356"},{"reference_url":"https://github.com/advisories/GHSA-gpj5-g38j-94v9","reference_id":"GHSA-gpj5-g38j-94v9","reference_type":"","scores":[],"url":"https://github.com/advisories/GHSA-gpj5-g38j-94v9"}],"fixed_packages":[{"url":"http://public2.vulnerablecode.io/api/packages/46554?format=json","purl":"pkg:npm/drizzle-orm@0.45.2","is_vulnerable":false,"affected_by_vulnerabilities":[],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:npm/drizzle-orm@0.45.2"},{"url":"http://public2.vulnerablecode.io/api/packages/46555?format=json","purl":"pkg:npm/drizzle-orm@1.0.0-beta.20","is_vulnerable":false,"affected_by_vulnerabilities":[],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:npm/drizzle-orm@1.0.0-beta.20"}],"aliases":["CVE-2026-39356","GHSA-gpj5-g38j-94v9"],"risk_score":null,"exploitability":null,"weighted_severity":null,"resource_url":"http://public2.vulnerablecode.io/vulnerabilities/VCID-k4z8-9ka4-jbaz"}],"fixing_vulnerabilities":[],"risk_score":null,"resource_url":"http://public2.vulnerablecode.io/packages/pkg:npm/drizzle-orm@0.23.9"}