---
id: CVE-2026-39245
title: >-
  decompress before 4.2.2 contains an improper path containment check that
  enables directory traversal and arbitrary file write
summary: >-
  decompress before 4.2.2 contains an improper path containment check that
  enables directory traversal and arbitrary file write. The safeMakeDir function
  (index.js line 29) and the extraction path validation (index.js line 106) use
  String.…
severity: medium
cvss: 6.2
cvssVector: 'CVSS:3.1/AV:L/AC:L/PR:N/UI:N/S:U/C:N/I:H/A:N'
cwe:
  - CWE-22
vendor: decompress_project
product: decompress
affected:
  - decompress <= 4.2.1
published: '2026-07-09'
updated: '2026-07-13'
source: NVD
sourceUrl: 'https://nvd.nist.gov/vuln/detail/CVE-2026-39245'
references:
  - url: 'https://github.com/kevva/decompress'
    label: cve@mitre.org
  - url: 'https://github.com/kevva/decompress/issues/115'
    label: cve@mitre.org
  - url: 'https://nvd.nist.gov/vuln/detail/CVE-2020-12265'
    label: cve@mitre.org
  - url: 'https://www.npmjs.com/package/decompress'
    label: cve@mitre.org
  - url: 'https://github.com/kevva/decompress/issues/115'
    label: 134c704f-9b21-4f2e-91b3-4a467353bcc0
tags:
  - nvd
epss: 0.00375
epssPercentile: 0.28643
ingestedAt: '2026-07-13T13:27:18.455Z'
---

## Overview

decompress before 4.2.2 contains an improper path containment check that enables directory traversal and arbitrary file write. The safeMakeDir function (index.js line 29) and the extraction path validation (index.js line 106) use String.indexOf() to verify the resolved path is within the output directory: realDestinationDir.indexOf(realOutputPath) !== 0. This check is flawed because it does not enforce a path separator boundary. For example, "/tmp/app_config".indexOf("/tmp/app") returns 0, incorrectly passing the check even though /tmp/app_config is outside /tmp/app. Combined with the unvalidated symlink creation in the same package, an attacker can write arbitrary files to directories adjacent to the extraction target. This is a bypass of the fix for CVE-2020-12265. The correct check requires appending a path separator: realParentPath.indexOf(realOutputPath + path.sep) !== 0.

## Affected

- `decompress <= 4.2.1`

## Remediation

Refer to the linked advisories for vendor-supplied fixes and affected version ranges.
