CVE-2026-23950 Details
Description
node-tar,a Tar for Node.js, has a race condition vulnerability in versions up to and including 7.5.3. This is due to an incomplete handling of Unicode path collisions in the `path-reservations` system. On case-insensitive or normalization-insensitive filesystems (such as macOS APFS, In which it has been tested), the library fails to lock colliding paths (e.g., `ß` and `ss`), allowing them to be processed in parallel. This bypasses the library's internal concurrency safeguards and permits Symlink Poisoning attacks via race conditions. The library uses a `PathReservations` system to ensure that metadata checks and file operations for the same path are serialized. This prevents race conditions where one entry might clobber another concurrently. This is a Race Condition which enables Arbitrary File Overwrite. This vulnerability affects users and systems using node-tar on macOS (APFS/HFS+). Because of using `NFD` Unicode normalization (in which `ß` and `ss` are different), conflicting paths do not have their order properly preserved under filesystems that ignore Unicode normalization (e.g., APFS (in which `ß` causes an inode collision with `ss`)). This enables an attacker to circumvent internal parallelization locks (`PathReservations`) using conflicting filenames within a malicious tar archive. The patch in version 7.5.4 updates `path-reservations.js` to use a normalization form that matches the target filesystem's behavior (e.g., `NFKD`), followed by first `toLocaleLowerCase('en')` and then `toLocaleUpperCase('en')`. As a workaround, users who cannot upgrade promptly, and who are programmatically using `node-tar` to extract arbitrary tarball data should filter out all `SymbolicLink` entries (as npm does) to defend against arbitrary file writes via this file system entry name collision issue.
A race condition vulnerability has been identified in node-tar versions through 7.5.3. This issue arises from inadequate management of Unicode path collisions within the path-reservations system. On case-insensitive or normalization-insensitive filesystems, such as macOS APFS, the library does not properly lock conflicting paths, like 'ß' and 'ss', allowing them to be processed simultaneously. This oversight bypasses the library's internal concurrency controls and opens the door to Symlink Poisoning attacks via race conditions. The vulnerability exploits the fact that node-tar uses 'NFD' Unicode normalization, which treats 'ß' and 'ss' as distinct, leading to conflicts on filesystems that disregard this normalization. As a result, an attacker can manipulate filenames within a malicious tar archive to evade internal locks and cause unintended file overwrites.
Users should update to node-tar version 7.5.4 or later, which addresses the vulnerability by normalizing Unicode in a way that aligns with the target filesystem's behavior. For those unable to upgrade immediately, it is recommended to filter out symbolic link entries when using node-tar to extract tarball data, as npm does, to prevent arbitrary file writes caused by this collision issue.
Metrics
CVSS 4.0 Severity and Vector Strings:
No CVSS 4.0 data is available for this CVE.
CVSS 3.x Severity and Vector Strings:
No data available for CVSS Version 2.0 on this CVE.
CISA-ADP
Assessed Jan 21, 2026References to Advisories, Solutions, and Tools
By selecting these links, you will be leaving this site. These are references gathered from the official CVE record and are not endorsed by Volerion.
| URL | Source(s) | Tag(s) |
|---|---|---|
| https://access.redhat.com/errata/RHSA-2026:18480 | redhat-SADP | |
| https://access.redhat.com/errata/RHSA-2026:18868 | redhat-SADP | |
| https://access.redhat.com/errata/RHSA-2026:2144 | redhat-SADP | |
| https://access.redhat.com/errata/RHSA-2026:2926 | redhat-SADP | |
| https://access.redhat.com/errata/RHSA-2026:6192 | redhat-SADP | |
| https://access.redhat.com/security/cve/CVE-2026-23950 | redhat-SADP | |
| https://bugzilla.redhat.com/show_bug.cgi?id=2431036 | redhat-SADP | |
| https://security.access.redhat.com/data/csaf/v2/vex/2026/cve-2026-23950.json | redhat-SADP | |
| https://github.com/isaacs/node-tar/commit/3b1abfae650056edfabcbe0a0df5954d390521e6 | [email protected] | Patch |
| https://github.com/isaacs/node-tar/security/advisories/GHSA-r6q2-hw4h-h46w | [email protected] | ExploitMitigationVendor Advisory |
Weakness Enumeration
| CWE-ID | CWE Name | Source |
|---|---|---|
| CWE-176 | Improper Handling of Unicode Encoding | [email protected] |
| CWE-352 | Cross-Site Request Forgery (CSRF) | [email protected] |
| CWE-367 | Time-of-check Time-of-use (TOCTOU) Race Condition | redhat-SADP |
| CWE-367 | Time-of-check Time-of-use (TOCTOU) Race Condition | [email protected] |
| CWE-367 | Time-of-check Time-of-use (TOCTOU) Race Condition | [email protected] |
Affected Products
| Product | Versions |
|---|---|
| isaacs tar | < 7.5.4 |
CPE
Remediation
| |
Change History
7 change records found show changes
| Date | Action | Recorded By |
|---|---|---|
| Aug 24, 2026 | CVE Modified | redhat-SADP |
| Jul 15, 2026 | CVE Modified | redhat-SADP |
| Jun 30, 2026 | CVE Modified | redhat-SADP |
| Jun 17, 2026 | CVE Modified | CISA-ADP |
| Jun 17, 2026 | CVE Modified | [email protected] |
| Feb 18, 2026 | Initial Analysis | [email protected] |
| Jan 20, 2026 | New CVE Received | [email protected] |