GHSA-2mf3-mr2r-r4vf

Suggest an improvement
Source
https://github.com/advisories/GHSA-2mf3-mr2r-r4vf
Import Source
https://github.com/github/advisory-database/blob/main/advisories/github-reviewed/2026/08/GHSA-2mf3-mr2r-r4vf/GHSA-2mf3-mr2r-r4vf.json
JSON Data
https://api.osv.dev/v1/vulns/GHSA-2mf3-mr2r-r4vf
Published
2026-08-18T16:31:16Z
Modified
2026-08-18T17:15:16Z
Severity
  • 7.5 (High) CVSS_V3 - CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:N/A:N CVSS Calculator
Summary
@rhinostone/swig: arbitrary local file read via include/extends path traversal
Details

Overview

@rhinostone/swig is a maintained fork of the abandoned swig template engine and inherited the directory-traversal vulnerability tracked upstream as CVE-2023-25345 / GHSA-2rq5-699j-x7p6. The {% include %}, {% extends %}, and {% import %} tags resolve their target path through the filesystem loader without confining the result to the configured template root. A path that traverses upward (../) escapes the root and reads an arbitrary file from the host filesystem, whose contents are emitted into the rendered output.

Attack scenario

The dangerous case does not require the attacker to control template source — only template data (the locals passed at render time). An application that renders a trusted template whose include / extends path is variable-driven is exposed:

// application code — a configured filesystem loader with a basepath
swig.renderFile('page.html', { partial: req.query.partial });
{# page.html — trusted template #}
{% include partial %}

Setting ?partial=../../../../etc/passwd makes the loader resolve and read that file, and its contents are rendered into the response. A literal in trusted source is equally affected: {% include "../../../etc/passwd" %}.

Impact

Arbitrary local file disclosure (confidentiality). An attacker able to influence an include / extends / import path — directly, or via untrusted locals — can read files outside the template directory: application configuration, credentials, source code, /etc/passwd, and so on. There is no integrity or availability impact.

Affected & patched

Every published version up to and including 2.7.0 is affected — @rhinostone/swig, and the shared @rhinostone/swig-core loader, hence @rhinostone/swig-twig, @rhinostone/swig-jinja2, and @rhinostone/swig-django as well.

Fixed in 2.7.1: the filesystem loader now rejects any include / extends / import path that resolves outside the configured basepath root, including paths supplied through an untrusted runtime variable. A new allowOutsideRoot loader option is available for the rare case of intentionally reading files from outside the root.

Upgrade to 2.7.2 or later: 2.7.1 fixed the vulnerability but introduced a regression — a relative basepath wrongly rejected every in-root template path. 2.7.2 resolves the basepath to an absolute path before the check and restores correct in-root resolution.

Workarounds

  • Upgrade to 2.7.2 (or later).
  • If you cannot upgrade immediately: configure the filesystem loader with an explicit basepath, and never pass untrusted data into an {% include %} / {% extends %} / {% import %} path.

References

Database specific
{
    "cwe_ids": [
        "CWE-22"
    ],
    "github_reviewed": true,
    "github_reviewed_at": "2026-08-18T16:31:16Z",
    "nvd_published_at": null,
    "severity": "HIGH"
}
References

Affected packages

npm
@rhinostone/swig

Package

Name
@rhinostone/swig
View open source insights on deps.dev
Purl
pkg:npm/%40rhinostone/swig

Affected ranges

Type
SEMVER
Events
Introduced
0 Unknown introduced version / All previous versions are affected
Fixed
2.7.1

Database specific

source
"https://github.com/github/advisory-database/blob/main/advisories/github-reviewed/2026/08/GHSA-2mf3-mr2r-r4vf/GHSA-2mf3-mr2r-r4vf.json"
@rhinostone/swig-core

Package

Name
@rhinostone/swig-core
View open source insights on deps.dev
Purl
pkg:npm/%40rhinostone/swig-core

Affected ranges

Type
SEMVER
Events
Introduced
0 Unknown introduced version / All previous versions are affected
Fixed
2.7.1

Database specific

source
"https://github.com/github/advisory-database/blob/main/advisories/github-reviewed/2026/08/GHSA-2mf3-mr2r-r4vf/GHSA-2mf3-mr2r-r4vf.json"
@rhinostone/swig-twig

Package

Name
@rhinostone/swig-twig
View open source insights on deps.dev
Purl
pkg:npm/%40rhinostone/swig-twig

Affected ranges

Type
SEMVER
Events
Introduced
0 Unknown introduced version / All previous versions are affected
Fixed
2.7.1

Database specific

source
"https://github.com/github/advisory-database/blob/main/advisories/github-reviewed/2026/08/GHSA-2mf3-mr2r-r4vf/GHSA-2mf3-mr2r-r4vf.json"
@rhinostone/swig-jinja2

Package

Name
@rhinostone/swig-jinja2
View open source insights on deps.dev
Purl
pkg:npm/%40rhinostone/swig-jinja2

Affected ranges

Type
SEMVER
Events
Introduced
0 Unknown introduced version / All previous versions are affected
Fixed
2.7.1

Database specific

source
"https://github.com/github/advisory-database/blob/main/advisories/github-reviewed/2026/08/GHSA-2mf3-mr2r-r4vf/GHSA-2mf3-mr2r-r4vf.json"
@rhinostone/swig-django

Package

Name
@rhinostone/swig-django
View open source insights on deps.dev
Purl
pkg:npm/%40rhinostone/swig-django

Affected ranges

Type
SEMVER
Events
Introduced
0 Unknown introduced version / All previous versions are affected
Fixed
2.7.1

Database specific

source
"https://github.com/github/advisory-database/blob/main/advisories/github-reviewed/2026/08/GHSA-2mf3-mr2r-r4vf/GHSA-2mf3-mr2r-r4vf.json"