CVE-2026-74764: Path Traversal in TAR Archive Extraction Allows Arbitrary File Write in Pandora
Pandora contains a path traversal vulnerability in its TAR archive extraction functionality. When processing a submitted TAR archive, the extractor passed archive member names directly to Python's tarfile.TarFile.extract() without applying an extraction filter.
An attacker able to submit a specially crafted TAR archive containing malicious member paths, such as paths using ../ sequences or absolute paths, could cause extracted files to be written outside the intended extraction directory. This may allow the attacker to overwrite files accessible to the Pandora worker process and could potentially result in application compromise, arbitrary code execution, or denial of service depending on the files targeted and the privileges of the Pandora process.
The vulnerability is corrected by using Python's filter='data' extraction filter, which rejects or sanitizes dangerous TAR members, including paths that escape the destination directory and unsafe link targets.
The weakness corresponds to MITRE's general path traversal category, which includes archive extraction cases where attacker-controlled filenames cause files to be written outside the intended directory.
Affected Software
Event History
Frequently Asked Questions
What is the severity of CVE-2026-74764?
The severity of CVE-2026-74764 is rated as 65.
How do I fix CVE-2026-74764?
To fix CVE-2026-74764, ensure that the TAR archive extractor applies proper validation and filtering on archive member names.
What type of vulnerability is CVE-2026-74764?
CVE-2026-74764 is categorized as a path traversal vulnerability.
What can an attacker do with CVE-2026-74764?
An attacker can exploit CVE-2026-74764 to perform arbitrary file writes by submitting a specially crafted TAR archive.
In which software is CVE-2026-74764 found?
CVE-2026-74764 is found in OpenAI Pandora.