GHSA-2m67-cxxq-c3h8

Suggest an improvement
Source
https://github.com/advisories/GHSA-2m67-cxxq-c3h8
Import Source
https://github.com/github/advisory-database/blob/main/advisories/github-reviewed/2026/03/GHSA-2m67-cxxq-c3h8/GHSA-2m67-cxxq-c3h8.json
JSON Data
https://api.osv.dev/v1/vulns/GHSA-2m67-cxxq-c3h8
Aliases
Published
2026-03-12T16:37:49Z
Modified
2026-03-14T01:56:22Z
Severity
  • 8.8 (High) CVSS_V4 - CVSS:4.0/AV:N/AC:L/AT:N/PR:N/UI:N/VC:H/VI:H/VA:N/SC:N/SI:N/SA:N/E:P CVSS Calculator
Summary
ZeptoClaw: Path boundary checks bypass via symlink, TOCTOU, and hardlink
Details

Summary

Workspace boundary enforcement currently has three related bypass risks. This issue tracks fixing all three in one pull request.

Details

R1 - Dangling Symlink Component Bypass

  • What happens: Path validation can miss dangling symlink components during traversal checks.
  • Why it matters: A symlink that is unresolved at validation time can later resolve to an external location.
  • Impact: Read and write operations may escape workspace boundaries.
  • Affected area: src/security/path.rs (check_symlink_escape).

R2 - TOCTOU Between Validation and Use

  • What happens: The path is validated first, then used later for filesystem operations.
  • Why it matters: A concurrent filesystem change can swap path components after validation but before open/write.
  • Impact: Race-based workspace escape is possible.
  • Affected area: Filesystem and file-consuming tools that call validate_path_in_workspace before I/O.

R3 - Hardlink Alias Bypass

  • What happens: A file inside workspace can be a hardlink to an inode outside the intended workspace trust boundary.
  • Why it matters: Prefix and symlink checks can pass while data access still mutates or reads external content.
  • Impact: Policy bypass for read/write operations.
  • Affected area: Any tool that reads or writes via validated paths.

Risk Matrix

ID Risk Severity Likelihood Impact
R1 Dangling symlink component bypass High Medium Workspace boundary escape for read/write
R2 Validate/use TOCTOU race High Medium Race-based boundary escape during file I/O
R3 Hardlink alias bypass Medium Low-Medium External inode read/write through in-workspace path

PoC

R1 - Dangling symlink component bypass

  1. Create a symlink inside workspace pointing to a missing target.
  2. Validate a path traversing that symlink.
  3. Create the target directory outside workspace after validation.
  4. Perform file operation and observe potential boundary escape if not fail-closed.

R2 - TOCTOU between validation and use

  1. Validate a candidate in-workspace path.
  2. Before open/write, replace an intermediate component with a link to external location.
  3. Continue with the file operation.
  4. Observe boundary escape if operation trusts only stale validation result.

R3 - Hardlink alias bypass

  1. Place a hardlink inside workspace that points to an external inode.
  2. Validate the in-workspace hardlink path.
  3. Read or write through this path.
  4. Observe external inode access through a path that appears in-scope.

Impacts

Unauthorized cross path boundary

Credit

@zpbrent

Patch

f50c17e11ae3e2d40c96730abac41974ef2ee2a8

Database specific
{
    "cwe_ids":  [
        "CWE-22",
        "CWE-62"
    ],
    "github_reviewed":  true,
    "github_reviewed_at":  "2026-03-12T16:37:49Z",
    "nvd_published_at":  "2026-03-12T19:16:17Z",
    "severity":  "HIGH"
}
References

Affected packages

crates.io / zeptoclaw

Package

Name
zeptoclaw
View open source insights on deps.dev
Purl
pkg:cargo/zeptoclaw

Affected ranges

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

Database specific

last_known_affected_version_range
"<= 0.7.5"
source
"https://github.com/github/advisory-database/blob/main/advisories/github-reviewed/2026/03/GHSA-2m67-cxxq-c3h8/GHSA-2m67-cxxq-c3h8.json"