CVE-2026-32711 is a high-severity (CVSS 7.8) Path Traversal vulnerability in pydicom. A fix is available for pydicom — see the affected versions and patch details below.
pydicom: Path traversal in FileSet/DICOMDIR ReferencedFileID allows file access outside the File-set root
Exploitation Status
Proof-of-concept exploit code exists
- CISA’s SSVC triage found public proof-of-concept exploit code for this CVE, though no confirmed active exploitation.
- A successful exploit gives an attacker total control of the affected component, not partial access.
Exploitation and automatability from CISA’s SSVC triage for CVE-2026-32711.
EPSS Exploitation Probability
EPSS (Exploit Prediction Scoring System) is a daily probability model maintained by FIRST.org. It estimates the likelihood a CVE will be exploited in production environments within the next 30 days, derived from real-world threat intelligence signals.
How urgent is this, really
CVE-2026-32711 plotted by exploitation likelihood (EPSS) against impact (CVSS). The shaded corner — EPSS 50%+ and CVSS 7.0+ — is where this CVE doesn't sit, though severity or exploitability alone can still warrant action.
Where this sits among everything scored
Of 377,636 CVEs with a current EPSS score, this one falls in the < 10% band (highlighted). Real counts from FIRST.org, not a sample — log-scaled since the landscape is heavily right-skewed.
Real-World Exposure
pydicom🐍pydicomReal-time download stats are indexed for npm and PyPI packages. This vulnerability affects PyPI packages — download data is not available via public APIs for these ecosystems.
Description
Summary
A crafted DICOMDIR can set ReferencedFileID to a path outside the File-set root. pydicom resolves the path only to confirm that it exists, but does not verify that the resolved path remains under the File-set root. Subsequent public FileSet operations such as copy(), write(), and remove()+write(use_existing=True) use that unchecked path in file I/O operations. This allows arbitrary file read/copy and, in some flows, move/delete outside the File-set root.
Details
Verified on pydicom 3.1.0.dev0.
Relevant logic is in src/pydicom/fileset.py:
RecordNode._file_idconvertsReferencedFileIDdirectly toPath(...)FileSet.load()checks only(root / file_id).resolve(strict=True)to confirm existenceFileSet.load()does not verify that the final resolved path is contained within the File-set rootFileInstance.pathreturnsself.file_set.path / self.node._file_idFileSet.copy()usesshutil.copyfile(instance.path, dst)FileSet.write()usesPath(instance.path).unlink()andshutil.move(...)
Because there is no containment check such as resolved.relative_to(root.resolve(strict=True)), a malicious DICOMDIR can reference:
- absolute paths such as
/etc/passwd - traversal paths such as
../... - syntactically conformant file IDs that escape via symlinks
This is not limited to obviously invalid VR input. Even when pydicom emits warnings for invalid ReferencedFileID values, the operation is not blocked. I also confirmed a symlink-based variant using a conformant file ID.
A realistic server-side scenario is:
- a user uploads a DICOM File-set zip
- the server loads the uploaded
DICOMDIRusingFileSet - the server re-exports or reorganizes the File-set using
FileSet.copy()orFileSet.write() - a server-local file referenced by the malicious
DICOMDIRis included in the exported result
PoC
Minimal reproduction:
- Copy a sample File-set that contains a valid
DICOMDIR - Modify one
DirectoryRecordSequenceitem so thatReferencedFileID = "/etc/passwd"(or/tmp/secret.txt) - Load it with
FileSet(ds)orFileSet(path_to_dicomdir) - Call
FileSet.copy(new_root) - Observe that the exported File-set contains the contents of the referenced external file
Example:
from pathlib import Path
from tempfile import mkdtemp
import shutil
from pydicom import dcmread
from pydicom.fileset import FileSet
base = Path("src/pydicom/data/test_files/dicomdirtests")
root = Path(mkdtemp(prefix="fsroot_"))
out = Path(mkdtemp(prefix="fsout_"))
shutil.copy2(base / "DICOMDIR", root / "DICOMDIR")
for d in ("77654033", "98892003", "98892001"):
shutil.copytree(base / d, root / d)
ds = dcmread(root / "DICOMDIR")
item = next(x for x in ds.DirectoryRecordSequence if "ReferencedFileID" in x)
item.ReferencedFileID = "/etc/passwd"
fs = FileSet(ds)
fs.copy(out)
I also verified the issue in a simple web import/export demo where an uploaded malicious File-set caused /etc/passwd to be copied into the exported result.
If useful, I can provide the exact malicious sample and the demo environment separately.
Impact
This is a path traversal / root containment bypass in FileSet handling.
Observed impact:
arbitrary file read/copy outside the File-set root via FileSet.copy() arbitrary file move outside the File-set root via FileSet.write() arbitrary file delete outside the File-set root via FileSet.remove(...); write(use_existing=True) Affected applications are those that accept untrusted DICOMDIR / File-set input and then call public FileSet workflows such as load(), copy(), write(), or remove().
A realistic impact is server-side file disclosure in import/export workflows.
Affected Packages
| Ecosystem | Package | Vulnerable range | Fix |
|---|---|---|---|
| 🐍PyPI | pydicom | ≥ 3.0.0&&< 3.0.2 | 3.0.2pip install --upgrade 'pydicom==3.0.2' |
| 🐍PyPI | pydicom | all versions | 2.4.5pip install --upgrade 'pydicom==2.4.5' |
Detection & mitigation playbook
Open-source dependencyDetect
Scan your dependency tree (package-lock.json, pnpm-lock.yaml, requirements.txt, go.sum, etc.) for pydicom, including transitive dependencies — a direct dependency you never call can still pull in a vulnerable version.
Fix
Update pydicom to 3.0.2 or later, then make sure no transitive (indirect) dependency still pins the vulnerable range — O3 confirms CVE-2026-32711 is resolved across your whole dependency graph.
Workarounds
If you can't upgrade right away: gate or disable the affected feature, validate untrusted input at the boundary, and avoid passing attacker-controlled data into the vulnerable path. O3's runtime protection blocks exploitation in production as an interim safeguard until the upgrade lands.
How O3 protects you
O3 Security's impact-aware SCA analyses which vulnerable code paths your application actually calls, so a match like CVE-2026-32711 can be triaged on real exposure rather than presence alone.
Tailored to CVE-2026-32711. Runtime protection reduces exposure until a permanent patch is applied and verified — it complements patching, it doesn't replace it.
Frequently Asked Questions
Is CVE-2026-32711 in your dependencies?
O3 Security finds CVE-2026-32711 across PyPI dependencies, including transitive ones, and its impact-aware SCA ranks findings by whether your code actually calls the vulnerable path.