Summary
CVE-2026-74764 is a critical path traversal vulnerability in Pandora, the file-analysis framework maintained by pandora-analysis (CIRCL). The flaw exists in Pandora’s TAR archive extraction functionality, which fails to sanitize member names before extracting them to disk, allowing crafted archive entries to be written outside the intended extraction directory. The issue affects all Pandora versions from the beginning of the project through 1.12.5 and has been assigned a maximum CVSS score of 10.0.
Technical details
- Root cause: Pandora’s extractor worker (
pandora/workers/extractor.py) calls Python’starfile.TarFile.extract()on submitted TAR archive members without applying a safe extraction filter, so member paths containing../sequences or absolute paths are extracted as-is. - Trigger condition: An attacker submits a specially crafted TAR archive (e.g., via Pandora’s file submission/analysis workflow) containing archive entries with malicious relative or absolute paths.
- Attack vector: Network — no authentication or user interaction beyond submitting a file for analysis is required to trigger extraction.
- Impact: Files extracted from the malicious archive can be written outside the designated extraction directory, potentially overwriting sensitive files, planting files in locations that lead to code execution, or causing denial of service. CVSS impact metrics rate confidentiality, integrity, and availability impact as High.
Affected software
- Product: Pandora (pandora-analysis)
- Repository: pandora-analysis/pandora
- Affected versions: All versions from initial release through 1.12.5 (inclusive)
Severity
- CVSS v4.0 Base Score: 10.0 (Critical)
- Vector:
CVSS:4.0/AV:N/AC:L/AT:N/PR:N/UI:N/VC:H/VI:H/VA:H/SC:H/SI:H/SA:L - CWE: CWE-22 (Improper Limitation of a Pathname to a Restricted Directory / Path Traversal)
Mitigation and recommended actions
- Immediate: Upgrade Pandora to a version that includes the fix applied in commit
186b58d41e04248a154d274fffb5813e7fa2012e, which addsfilter='data'to thetar.extract()call inextractor.py, causing dangerous TAR members (path traversal entries, device files, etc.) to be rejected during extraction. Confirm the deployed version is newer than 1.12.5 and includes this patch. - If unable to patch immediately:
- Restrict or disable the TAR/archive extraction worker in Pandora deployments that do not require archive analysis.
- Run Pandora’s analysis workers with minimal filesystem privileges and in an isolated/containerized environment so that any unintended file writes cannot affect the host system or other services.
- Monitor extraction directories and worker logs for unexpected files written outside expected analysis output paths.
- Restrict network exposure of the Pandora submission interface to trusted users/networks until patched.

