CVE Catalog

CVE-2026-74764

CriticalCVSS 10.0
Published: Translated: NVD NIST

Summary

Pandora contains a path traversal vulnerability in its TAR archive extraction functionality. When processing a TAR archive, member names are passed directly to Python's tarfile.TarFile.extract() without an extraction filter. An attacker can submit a crafted TAR archive with malicious paths, allowing files to be written outside the intended directory.

Risk Assessment

An attacker can overwrite files accessible to the Pandora worker process, potentially leading to application compromise, arbitrary code execution, or denial of service depending on file targets and process privileges.

Recommendation

Apply the fix that uses Python's 'data' extraction filter to reject or sanitize dangerous TAR members, including paths that escape the destination directory.

Original NVD description (English source)

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.

Vulnerability data from NVD (NIST) · CISA KEV · EPSS