Summary
gix and gitoxide: unvalidated submodule name traverses out of .git/modules and redirects state() / open() to another repository
Summary
attachments:
pocs.zip
Submodule names coming from .gitmodules are exposed as unvalidated names and are later reused to derive the submodule git directory as:
<superproject common_dir>/modules/<submodule name>
Because the submodule name is joined directly as a filesystem path component, a name such as ../../../escaped-target.git escapes .git/modules after normalization. The current implementation then uses that escaped path in both state() and open().
The updated PoC demonstrates the real sink, not just string construction:
state()reportsrepository_exists=truefor the traversed path;open()returns a repository whose normalizedcommon_dir()matches the attacker-chosen repository outside.git/modules.
Root cause analysis
The relevant flow is:
gix-submodule/src/access.rsexposes unvalidated submodule names from configuration.gix/src/submodule/mod.rsderives the git directory by doingcommon_dir().join("modules").join(name)with no confinement check.gix/src/submodule/mod.rsuses that derived path during state resolution and repository opening.
There is no normalization-and-confinement step between “submodule name from configuration” and “filesystem path used for repository existence checks / open.” As a result, traversal segments in the submodule name directly influence which repository path is inspected and opened.
Reproduce steps
Use the attached PoC zip that contains the pocs/ workspace.
Unzip the PoC archive.
Enter
pocs/F002.Run:
cargo run --quietCompare the output with
pocs/F002/result.txt.
Key outputs are:
submodule_name=../../../escaped-target.gitderived_git_dir_raw=.../.git/modules/../../../escaped-target.gitderived_git_dir_normalized=.../artifacts/escaped-target.gitescaped_target=.../artifacts/escaped-target.gitrepository_exists=truesubmodule_opened=trueopened_common_dir_normalized=.../artifacts/escaped-target.gitnormalized_git_dir_matches_target=trueopened_common_dir_matches_target=truetarget_outside_modules_root=true
These outputs show that gitoxide is not only constructing a traversable path string. It is actually using the escaped path for repository existence checks and for opening a repository object.
Impact
Confirmed impact:
- a malicious submodule name can redirect submodule state inspection away from
.git/modules/<name>to an attacker-chosen repository path outside.git/modules; Submodule::state()can report repository existence for the wrong repository;Submodule::open()can return a repository object backed by that attacker-chosen path.
This is best described as a path-traversal / repository-confusion issue in submodule repository resolution.
This report does not claim command execution from this behavior alone. The demonstrated impact is repository redirection: callers that enumerate, inspect, or operate on submodules can be steered into using the wrong repository.
Recommended fix
Two complementary fixes are advisable:
- do not reuse raw submodule names as filesystem path fragments;
- either use a validated/sanitized name for filesystem derivation,
- or derive the storage path from a safe identifier instead of the user-controlled name;
- add an explicit confinement check after path derivation;
- normalize or canonicalize the candidate path,
- verify that the result stays under
<common_dir>/modules, - reject names that contain traversal segments, path separators, or any representation that can escape the modules root.
In short, submodule names may remain opaque configuration identifiers, but they should not be treated as trusted filesystem subpaths.
Impact
Input manipulates file paths to reach files outside the intended directory, such as configuration or credential files. Typical impact: unauthorized file read or write outside the intended directory.
Affected versions
Security releases
Kodem intelligence
Severity tells you how bad this could be in the worst case. It does not tell you whether you are exposed. Exploitability and impact are functions of runtime truth: whether the vulnerable code is present, reachable, and actually executes in your application. A vulnerable package can sit in your dependency tree and never run.
Kodem, an Intelligent Application Security platform, uses runtime intelligence to reveal which vulnerabilities actually execute in production, so teams prioritize the ones that genuinely matter. Kodem's runtime-powered SCA identifies whether this CVE is reachable in your applications.
Already deployed Kodem?
See it in your environmentNew to Kodem? Get a demo →Remediation advice
gitoxide to 0.52.1 or later; gix to 0.83.0 or later
Kodem Kai can prioritize this vulnerability in your dependency tree and generate a fix recommendation.
Frequently Asked Questions
- What is GHSA-FR8X-3VFX-F45H? GHSA-FR8X-3VFX-F45H is a high-severity path traversal vulnerability in gitoxide (rust), affecting versions <= 0.52.0. It is fixed in 0.52.1, 0.83.0. Input manipulates file paths to reach files outside the intended directory, such as configuration or credential files.
- Which packages are affected by GHSA-FR8X-3VFX-F45H?
gitoxide(rust) (versions <= 0.52.0)gix(rust) (versions < 0.83.0)
- Is there a fix for GHSA-FR8X-3VFX-F45H? Yes. GHSA-FR8X-3VFX-F45H is fixed in 0.52.1, 0.83.0. Upgrade to this version or later.
- Is GHSA-FR8X-3VFX-F45H exploitable, and should I be worried? Whether GHSA-FR8X-3VFX-F45H is exploitable in your environment depends on whether the vulnerable code is present and reachable. A CVSS score is a worst-case rating; it does not account for your specific deployment, configuration, or usage patterns. Kodem, an Intelligent Application Security platform, uses runtime intelligence to show which vulnerabilities actually execute in production, so you can focus on the ones that represent real risk. Get a demo
- What actually determines whether GHSA-FR8X-3VFX-F45H is exploitable, and how bad it is? Exploitability and impact are not fixed properties of a CVE. They depend on runtime truth: whether the vulnerable code is present, reachable, and actually executes in your application. A high CVSS score on a dependency that never runs is not the same as real risk. Kodem, an Intelligent Application Security platform, uses runtime intelligence to reveal which vulnerabilities actually execute in production, so teams prioritize the ones that genuinely matter.
- How do I fix GHSA-FR8X-3VFX-F45H?
- Upgrade
gitoxideto 0.52.1 or later - Upgrade
gixto 0.83.0 or later
- Upgrade