Description
The tarfile module's tar and data
extraction filters created directories outside the destination for
members whose name leaves the destination and returns to it, such as ../evil/../dest/sub/file. The containment check used the resolved path, but intermediate directories were created from the name as given.

Only
empty directories are created outside the destination. Member contents
are still extracted inside it. To return to the destination the member's
name must contain the destination directory's own final component, so
extraction into a secure randomised directory is not affected.

This affects POSIX platforms only. On Windows, .. components are collapsed before the path reaches the filesystem, so the directories outside the destination are never created.
Published: 2026-08-19
Score: 6.3 Medium
EPSS: n/a
KEV: No
Impact: n/a
Action: n/a
AI Analysis

Impact

The tarfile module’s extraction filters allow certain archive members to create empty directories outside the intended extraction destination when the member name is crafted to traverse the filesystem, for example "../evil/../dest/sub/file". The containment check uses the resolved path, but intermediate directories are created using the original name, enabling path traversal. Only empty directories are created outside the destination; the actual file contents are still extracted inside the destination. This flaw can be exploited to create arbitrary directory structures adjacent to the extraction target. The vulnerability is identified as a path traversal weakness (CWE‑22).

Affected Systems

This issue affects CPython implementations supplied by the Python Software Foundation that run on POSIX platforms (e.g., Linux, macOS). Windows systems are not impacted because the underlying operating system normalises ".." components before the filesystem operation, preventing directories outside the destination from being created.

Risk and Exploitability

The CVSS score of 6.3 indicates a moderate severity. The EPSS score is not available, and the vulnerability is not listed in the CISA KEV catalog, suggesting limited widespread exploitation. Exploitation requires a user to supply a crafted tar file and execute the extraction routine; therefore, it does not provide a remote attack vector unless the extraction is performed in a privileged or exposed context. The risk hinges on the potential for local privilege escalation or repository poisoning if the extraction location has sensitive permissions.

Generated by OpenCVE AI on August 19, 2026 at 17:16 UTC.

Remediation

No vendor fix or workaround currently provided.

OpenCVE Recommended Actions

  • Update CPython to a version that includes the tarfile extraction filter fix referenced in https://github.com/python/cpython/pull/156000
  • If upgrading is not immediately possible, avoid extracting untrusted archives into sensitive or privileged directories. Instead, first extract into a dedicated temporary location with restricted permissions, then move the desired files into the application directory.
  • Run extraction routines as a non‑privileged user to limit the impact of any directories created outside the intended destination.

Generated by OpenCVE AI on August 19, 2026 at 17:16 UTC.

Tracking

Sign in to view the affected projects.

Advisories

No advisories yet.

History

Wed, 19 Aug 2026 17:45:00 +0000

Type Values Removed Values Added
Weaknesses CWE-22

Wed, 19 Aug 2026 17:00:00 +0000

Type Values Removed Values Added
First Time appeared Python
Python cpython
Vendors & Products Python
Python cpython

Wed, 19 Aug 2026 15:45:00 +0000

Type Values Removed Values Added
Description The tarfile module's tar and data extraction filters created directories outside the destination for members whose name leaves the destination and returns to it, such as ../evil/../dest/sub/file. The containment check used the resolved path, but intermediate directories were created from the name as given. Only empty directories are created outside the destination. Member contents are still extracted inside it. To return to the destination the member's name must contain the destination directory's own final component, so extraction into a secure randomised directory is not affected. This affects POSIX platforms only. On Windows, .. components are collapsed before the path reaches the filesystem, so the directories outside the destination are never created.
Title tarfile extraction filter bypass allows creation of directories outside the destination
References
Metrics cvssV4_0

{'score': 6.3, 'vector': 'CVSS:4.0/AV:N/AC:L/AT:P/PR:N/UI:N/VC:N/VI:N/VA:N/SC:N/SI:L/SA:N'}


cve-icon MITRE

Status: PUBLISHED

Assigner: PSF

Published:

Updated: 2026-08-19T15:24:08.616Z

Reserved: 2026-08-12T21:17:15.148Z

Link: CVE-2026-19672

cve-icon Vulnrichment

No data.

cve-icon NVD

Status : Received

Published: 2026-08-19T16:17:06.593

Modified: 2026-08-19T16:17:06.593

Link: CVE-2026-19672

cve-icon Redhat

No data.

cve-icon OpenCVE Enrichment

Updated: 2026-08-19T17:30:16Z

Weaknesses
  • CWE-22

    Improper Limitation of a Pathname to a Restricted Directory ('Path Traversal')