Description
In Eclipse Jetty, an HTTP URI of this form:





/public;/../admin/secret.txt








results in an unresolved path of:





/public/../admin/secret.txt








instead of the expected:





/admin/secret.txt








Jetty itself is not affected, as it will not serve the secret.txt file because it will not pass the alias checker (only resolved resources are served).




However, web applications that rely on resolved paths being provided by Jetty may be confused when receiving an unresolved path.
Published: 2026-07-14
Score: 5.3 Medium
EPSS: < 1% Very Low
KEV: No
Impact: n/a
Action: n/a
AI Analysis

Impact

A malformed HTTP URI containing a semicolon followed by a parent-directory reference causes Jetty to resolve the path to an intermediate form that still includes the ".." component, rather than collapsing it to the canonical path. Jetty itself denies access to the resulting file, but applications that rely on Jetty to deliver a fully normalized path can misinterpret the unresolved result and exhibit logic errors or unexpected behavior. The flaw is classified as CWE‑647, Path Manipulation.

Affected Systems

Any installation of Eclipse Jetty that accepts incoming URIs with semicolons and relative directory references is potentially affected. No specific version constraints are listed, so the issue may impact all releases that present the same path‑handling behavior.

Risk and Exploitability

The CVSS score of 5.3 signals a medium severity, while the EPSS score of less than 1% indicates a low anticipated exploitation probability. The vulnerability is not recorded in CISA’s KEV catalogue. An attacker could exploit the problem by sending a crafted HTTP request from a remote host, which would trigger Jetty to provide an unresolved path to the application. Although no direct data access is granted, the resulting path confusion could lead to incorrect processing or exposure of internal paths within the application.

Generated by OpenCVE AI on August 1, 2026 at 10:01 UTC.

Remediation

No vendor fix or workaround currently provided.

OpenCVE Recommended Actions

  • Upgrade to the latest Eclipse Jetty release that fixes the path resolution bug.
  • In application code, validate the path returned by Jetty and reject any that still contain unresolved components such as "." or "..".
  • Configure a reverse proxy or web server to normalize URLs before forwarding them to Jetty, removing semicolons and redundant separators.

Generated by OpenCVE AI on August 1, 2026 at 10:01 UTC.

Tracking

Sign in to view the affected projects.

Advisories
Source ID Title
Github GHSA Github GHSA GHSA-w7x5-g22v-xqhr Eclipse Jetty: Path parameter traversal
History

Sat, 01 Aug 2026 10:30:00 +0000

Type Values Removed Values Added
Title Jetty Path Normalization Bug Returning Unresolved Paths

Tue, 28 Jul 2026 09:30:00 +0000

Type Values Removed Values Added
Title URI Path Manipulation Causing Unresolved Path Confusion in Eclipse Jetty

Thu, 23 Jul 2026 03:30:00 +0000

Type Values Removed Values Added
Title URI Path Manipulation Causing Unresolved Path Confusion in Eclipse Jetty

Mon, 20 Jul 2026 23:00:00 +0000

Type Values Removed Values Added
Title Unresolved Path Normalization Issue in Eclipse Jetty

Thu, 16 Jul 2026 08:00:00 +0000

Type Values Removed Values Added
Title Unresolved Path Normalization Issue in Eclipse Jetty

Tue, 14 Jul 2026 13:30:00 +0000

Type Values Removed Values Added
Metrics ssvc

{'options': {'Automatable': 'yes', 'Exploitation': 'none', 'Technical Impact': 'partial'}, 'version': '2.0.3'}


Tue, 14 Jul 2026 11:15:00 +0000

Type Values Removed Values Added
First Time appeared Eclipse
Eclipse jetty
Vendors & Products Eclipse
Eclipse jetty

Tue, 14 Jul 2026 09:15:00 +0000

Type Values Removed Values Added
Description In Eclipse Jetty, an HTTP URI of this form: /public;/../admin/secret.txt results in an unresolved path of: /public/../admin/secret.txt instead of the expected: /admin/secret.txt Jetty itself is not affected, as it will not serve the secret.txt file because it will not pass the alias checker (only resolved resources are served). However, web applications that rely on resolved paths being provided by Jetty may be confused when receiving an unresolved path.
Weaknesses CWE-647
References
Metrics cvssV3_1

{'score': 5.3, 'vector': 'CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:L/A:N'}


cve-icon MITRE

Status: PUBLISHED

Assigner: eclipse

Published:

Updated: 2026-07-14T12:18:29.831Z

Reserved: 2026-05-12T10:01:35.472Z

Link: CVE-2026-8384

cve-icon Vulnrichment

Updated: 2026-07-14T12:18:16.867Z

cve-icon NVD

No data.

cve-icon Redhat

No data.

cve-icon OpenCVE Enrichment

Updated: 2026-08-01T10:15:03Z

Weaknesses
  • CWE-647

    Use of Non-Canonical URL Paths for Authorization Decisions