Lookup for vulnerable packages by Package URL.

Purlpkg:npm/drizzle-orm@0.23.6-26ec506
Typenpm
Namespace
Namedrizzle-orm
Version0.23.6-26ec506
Qualifiers
Subpath
Is_vulnerabletrue
Next_non_vulnerable_version0.45.2
Latest_non_vulnerable_version1.0.0-beta.20
Affected_by_vulnerabilities
0
url VCID-tfcs-rdgv-ffdz
vulnerability_id VCID-tfcs-rdgv-ffdz
summary
Drizzle ORM has SQL injection via improperly escaped SQL identifiers
### Summary

Drizzle 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.

As 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.

### Affected components

The issue affects the identifier escaping logic used by the PostgreSQL, MySQL, SQLite, SingleStore, and Gel dialects.

### Impact

This 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.

Depending 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.

Applications that use only static schema objects, or that strictly map user input through an allowlist of known column or alias names, are not affected.

### Details

In affected versions, `escapeName()` wrapped the identifier but did not escape the quote delimiter inside the identifier value:

- PostgreSQL / SQLite / Gel: `"` was not doubled to `""`
- MySQL / SingleStore: `` ` `` was not doubled to `` `` ``

Because of this, crafted input containing the dialect-specific identifier delimiter could break out of the quoted identifier and be interpreted as SQL syntax.

A representative vulnerable pattern is dynamic sorting using untrusted input:

```ts
const sortField = req.query.sort || 'id';

const rows = await db
  .select()
  .from(users)
  .orderBy(sql.identifier(sortField));
references
0
reference_url https://api.first.org/data/v1/epss?cve=CVE-2026-39356
reference_id
reference_type
scores
0
value 0.00017
scoring_system epss
scoring_elements 0.04473
published_at 2026-06-09T12:55:00Z
1
value 0.00017
scoring_system epss
scoring_elements 0.04511
published_at 2026-06-05T12:55:00Z
2
value 0.00017
scoring_system epss
scoring_elements 0.045
published_at 2026-06-06T12:55:00Z
3
value 0.00017
scoring_system epss
scoring_elements 0.04488
published_at 2026-06-07T12:55:00Z
4
value 0.00017
scoring_system epss
scoring_elements 0.04454
published_at 2026-06-08T12:55:00Z
url https://api.first.org/data/v1/epss?cve=CVE-2026-39356
1
reference_url https://github.com/drizzle-team/drizzle-orm
reference_id
reference_type
scores
0
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
1
value HIGH
scoring_system generic_textual
scoring_elements
url https://github.com/drizzle-team/drizzle-orm
2
reference_url https://github.com/drizzle-team/drizzle-orm/security/advisories/GHSA-gpj5-g38j-94v9
reference_id
reference_type
scores
0
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
1
value HIGH
scoring_system cvssv3.1_qr
scoring_elements
2
value HIGH
scoring_system generic_textual
scoring_elements
3
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
3
reference_url https://nvd.nist.gov/vuln/detail/CVE-2026-39356
reference_id
reference_type
scores
0
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
1
value HIGH
scoring_system generic_textual
scoring_elements
url https://nvd.nist.gov/vuln/detail/CVE-2026-39356
4
reference_url https://github.com/advisories/GHSA-gpj5-g38j-94v9
reference_id GHSA-gpj5-g38j-94v9
reference_type
scores
0
value HIGH
scoring_system cvssv3.1_qr
scoring_elements
url https://github.com/advisories/GHSA-gpj5-g38j-94v9
fixed_packages
0
url pkg:npm/drizzle-orm@0.45.2
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
1
url pkg:npm/drizzle-orm@1.0.0-beta.20
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 4.0
exploitability 0.5
weighted_severity 8.0
resource_url http://public2.vulnerablecode.io/vulnerabilities/VCID-tfcs-rdgv-ffdz
Fixing_vulnerabilities
Risk_score4.0
Resource_urlhttp://public2.vulnerablecode.io/packages/pkg:npm/drizzle-orm@0.23.6-26ec506