Description
A flaw in Node.js node:sqlite allows a stale StatementSyncIterator created through DatabaseSync#createTagStore() to continue executing a cached prepared statement after it has been reset and rebound with new parameters. SQLTagStore resets cached statements using sqlite3_reset() directly, bypassing the iterator invalidation mechanism introduced for StatementSync in recent releases

This vulnerability affects Node.js **22.x**, **24.x**, and **26.x**.
Published: 2026-08-04
Score: 5.3 Medium
EPSS: < 1% Very Low
KEV: No
Impact: n/a
Action: n/a
AI Analysis

Impact

The flaw allows a stale StatementSyncIterator to continue executing a cached prepared SQL statement even after the statement has been reset and rebound with different parameters. This bypasses the iterator invalidation mechanism introduced for StatementSync. As a result, a query can run with unintended parameters, potentially exposing sensitive data or modifying data in ways not intended by the application. The weakness is a form of iterator misuse (CWE‑367) that can undermine database integrity and confidentiality.

Affected Systems

Node.js running versions 22.x, 24.x, and 26.x are affected. The vulnerability is present in the node:sqlite component of the Node.js runtime.

Risk and Exploitability

The assigned CVSS score of 5.3 indicates a medium impact. No EPSS score is available, and the issue is not listed in the CISA KEV catalog, suggesting that known exploitation is not documented. The likely attack vector is local or within an application that runs with sufficient privileges to execute code that resets sqlite statements, such as a web application server. An attacker with code execution authority could trigger the stale iterator to run queries with injected parameters, leading to unauthorized data access or modification.

Generated by OpenCVE AI on August 4, 2026 at 09:26 UTC.

Remediation

No vendor fix or workaround currently provided.

OpenCVE Recommended Actions

  • Update Node.js to the latest release that includes the fix for the stale StatementSyncIterator issue.
  • Refactor code that uses DatabaseSync#createTagStore() to ensure cached statements are not reset while iterators are still active; consider performing a manual iterator invalidation or avoiding use of stale iterators.
  • Audit sqlite interactions for patterns that may trigger reset during iterator usage and add defensive checks or wrap accesses in transactions that enforce iterator state consistency.

Generated by OpenCVE AI on August 4, 2026 at 09:26 UTC.

Tracking

Sign in to view the affected projects.

Advisories

No advisories yet.

History

Tue, 11 Aug 2026 00:15:00 +0000

Type Values Removed Values Added
Title Stale Prepared Statement Execution After Reset in Node.js SQLite nodejs: Node.js node:sqlite: Unintended data modification due to stale statement iterator
References
Metrics threat_severity

None

cvssV3_1

{'score': 5.3, 'vector': 'CVSS:3.1/AV:N/AC:H/PR:N/UI:R/S:U/C:N/I:H/A:N'}

threat_severity

Moderate


Fri, 07 Aug 2026 10:00:00 +0000

Type Values Removed Values Added
First Time appeared Nodejs
Nodejs nodejs
Vendors & Products Nodejs
Nodejs nodejs

Tue, 04 Aug 2026 16:30:00 +0000

Type Values Removed Values Added
Metrics ssvc

{'options': {'Automatable': 'no', 'Exploitation': 'none', 'Technical Impact': 'partial'}, 'version': '2.0.3'}


Tue, 04 Aug 2026 09:45:00 +0000

Type Values Removed Values Added
Title Stale Prepared Statement Execution After Reset in Node.js SQLite

Tue, 04 Aug 2026 01:00:00 +0000

Type Values Removed Values Added
Description A flaw in Node.js node:sqlite allows a stale StatementSyncIterator created through DatabaseSync#createTagStore() to continue executing a cached prepared statement after it has been reset and rebound with new parameters. SQLTagStore resets cached statements using sqlite3_reset() directly, bypassing the iterator invalidation mechanism introduced for StatementSync in recent releases This vulnerability affects Node.js **22.x**, **24.x**, and **26.x**.
Weaknesses CWE-367
References
Metrics cvssV3_0

{'score': 5.3, 'vector': 'CVSS:3.0/AV:N/AC:H/PR:N/UI:R/S:U/C:N/I:H/A:N'}


cve-icon MITRE

Status: PUBLISHED

Assigner: hackerone

Published:

Updated: 2026-08-04T15:04:06.975Z

Reserved: 2026-06-27T15:00:00.780Z

Link: CVE-2026-58041

cve-icon Vulnrichment

Updated: 2026-08-04T14:19:43.393Z

cve-icon NVD

Status : Received

Published: 2026-08-04T01:16:19.987

Modified: 2026-08-04T16:16:25.827

Link: CVE-2026-58041

cve-icon Redhat

Severity : Moderate

Publid Date: 2026-08-04T00:49:58Z

Links: CVE-2026-58041 - Bugzilla

cve-icon OpenCVE Enrichment

Updated: 2026-08-07T09:45:07Z

Weaknesses
  • CWE-367

    Time-of-check Time-of-use (TOCTOU) Race Condition