Loading...
Skip to main content

CVE-2026-22860

HIGH

Rack has a Directory Traversal via Rack:Directory

Published February 17, 2026Updated February 24, 2026Source: osv

Summary

## Summary `Rack::Directory`’s path check used a string prefix match on the expanded path. A request like `/../root_example/` can escape the configured root if the target path starts with the root string, allowing directory listing outside the intended root. ## Details In `directory.rb`, `File.expand_path(File.join(root, path_info)).start_with?(root)` does not enforce a path boundary. If the server root is `/var/www/root`, a path like `/var/www/root_backup` passes the check because it shares the same prefix, so `Rack::Directory` will list that directory also. ## Impact Information disclosure via directory listing outside the configured root when `Rack::Directory` is exposed to untrusted clients and a directory shares the root prefix (e.g., `public2`, `www_backup`). ## Mitigation * Update to a patched version of Rack that correctly checks the root prefix. * Don't name directories with the same prefix as one which is exposed via `Rack::Directory`.

Remediation

Upgrade to the fixed version using your package manager.

Bundler
Update rack to 3.1.20 or later
gem install rack -v 3.1.20
Bundler
Update rack to 2.2.22 or later
gem install rack -v 2.2.22
Bundler
Update rack to 3.2.5 or later
gem install rack -v 3.2.5

After upgrading, run your dependency scanner again to confirm the vulnerability is resolved.

Affected Packages (3)

PackageEcosystemAffectedFixed In
rack
rubygems
3.0.0, 3.0.0.beta1, 3.0.0.rc1, 3.0.1 (+41 more)3.1.20
rack
rubygems
0.1.0, 0.2.0, 0.3.0, 0.4.0 (+118 more)2.2.22
rack
rubygems
3.2.0, 3.2.1, 3.2.2, 3.2.3 (+1 more)3.2.5

Vulnerability Classification

Common Weakness Enumeration (CWE) identifiers for this vulnerability type.

CVSS Score Breakdown

What the CVSS (Common Vulnerability Scoring System) 7.5 score means for each attack dimension.

Attack Vector
Network
Attack Complexity
Low
Privileges Required
None
User Interaction
None
Scope
Unchanged
Confidentiality
High
Integrity
None
Availability
None

CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:N/A:N

Frequently Asked Questions

What is CVE-2026-22860?
Rack has a Directory Traversal via Rack:Directory This vulnerability has been assigned a severity rating of HIGH (CVSS score: 7.5/10).
How do I check if my project is affected by CVE-2026-22860?
CVE-2026-22860 affects rack. Use GeekWala's free vulnerability scanner to check your dependencies against CVE-2026-22860 and 200,000+ other known vulnerabilities.

Severity & Exploitability

CVSS Score
7.5

High exploitability or significant impact. Prioritize remediation within days.

Also Known As

GHSA-mxw3-3hh2-x2mh

Related CVEs

  • CVE-2026-34230
    HIGH

    Rack has quadratic complexity in Rack::Utils.select_best_encoding via wildcard Accept-Encoding header

  • CVE-2026-34827
    HIGH

    Rack's multipart header parsing allows Denial of Service via escape-heavy quoted parameters

  • CVE-2026-34831
    MEDIUM

    Rack has Content-Length mismatch in Rack::Files error responses

  • CVE-2026-34786
    MEDIUM

    Rack:: Static header_rules bypass via URL-encoded paths

  • CVE-2026-32762
    MEDIUM

    Rack: Forwarded Header semicolon injection enables Host and Scheme spoofing

  • CVE-2026-34830
    MEDIUM

    Rack::Sendfile header-based X-Accel-Mapping regex injection enables unauthorized X-Accel-Redirect

  • CVE-2025-61780
    MEDIUM

    Rack has a Possible Information Disclosure Vulnerability

  • CVE-2026-26962
    MEDIUM

    Rack's improper unfolding of folded multipart headers preserves CRLF in parsed parameter values

Check if you're affected

Scan your dependencies to see if this vulnerability affects your projects.

Scan Your Dependencies