Your RSA-2048 keys break in 2030. Find every one of them before attackers do.
Maven
Not in CISA KEV
LOW severity

GHSA-p26g-97m4-6q7c jetty-server

LOWFix: eclipse/jetty.project#9339

GHSA-p26g-97m4-6q7c is a low-severity (CVSS 2.4) Information Exposure vulnerability in org.eclipse.jetty:jetty-server. A fix is available for org.eclipse.jetty:jetty-server — see the affected versions and patch details below.

Eclipse Jetty's cookie parsing of quoted values can exfiltrate values from other cookies

Also known asCVE-2023-26049
Published
Apr 18, 2023
Updated
Sep 10, 2026
Affected
4 pkgs
Patched
4 / 4
Exploits
None indexed
Exploitation data as of Sep 21, 2026 · OSV.dev, NVD, FIRST.org (EPSS)

EPSS Exploitation Probability

via FIRST.org ↗
1.3%probability of exploitation in next 30 days
Lower Risk0.00%
Lower risk than most CVEs69th percentile — riskier than 69% of all scored CVEsHighest risk

EPSS (Exploit Prediction Scoring System) is a daily probability model maintained by FIRST.org. It estimates the likelihood a CVE will be exploited in production environments within the next 30 days, derived from real-world threat intelligence signals.

How urgent is this, really

GHSA-p26g-97m4-6q7c plotted by exploitation likelihood (EPSS) against impact (CVSS). The shaded corner — EPSS 50%+ and CVSS 7.0+ — is where this CVE doesn't sit, though severity or exploitability alone can still warrant action.

Where this sits among everything scored

Of 377,333 CVEs with a current EPSS score, this one falls in the < 10% band (highlighted). Real counts from FIRST.org, not a sample — log-scaled since the landscape is heavily right-skewed.

Real-World Exposure

4 pkgs affected
org.eclipse.jetty:jetty-serverorg.eclipse.jetty:jetty-serverorg.eclipse.jetty:jetty-serverorg.eclipse.jetty:jetty-server

Real-time download stats are indexed for npm and PyPI packages. This vulnerability affects Maven packages — download data is not available via public APIs for these ecosystems.

Description

Nonstandard cookie parsing in Jetty may allow an attacker to smuggle cookies within other cookies, or otherwise perform unintended behavior by tampering with the cookie parsing mechanism.

If Jetty sees a cookie VALUE that starts with " (double quote), it will continue to read the cookie string until it sees a closing quote -- even if a semicolon is encountered.

So, a cookie header such as:

DISPLAY_LANGUAGE="b; JSESSIONID=1337; c=d" will be parsed as one cookie, with the name DISPLAY_LANGUAGE and a value of b; JSESSIONID=1337; c=d

instead of 3 separate cookies.

Impact

This has security implications because if, say, JSESSIONID is an HttpOnly cookie, and the DISPLAY_LANGUAGE cookie value is rendered on the page, an attacker can smuggle the JSESSIONID cookie into the DISPLAY_LANGUAGE cookie and thereby exfiltrate it. This is significant when an intermediary is enacting some policy based on cookies, so a smuggled cookie can bypass that policy yet still be seen by the Jetty server.

Patches

  • 9.4.51.v20230217 - via PR #9352
  • 10.0.15 - via PR #9339
  • 11.0.15 - via PR #9339

Workarounds

No workarounds

References

Affected Packages

4 total 4 fixed
EcosystemPackageVulnerable rangeFix
Mavenorg.eclipse.jetty:jetty-serverall versions9.4.51.v20230217org.eclipse.jetty:jetty-server:9.4.51.v20230217
Mavenorg.eclipse.jetty:jetty-server10.0.0&&< 10.0.1410.0.14org.eclipse.jetty:jetty-server:10.0.14
Mavenorg.eclipse.jetty:jetty-server11.0.0&&< 11.0.1411.0.14org.eclipse.jetty:jetty-server:11.0.14
Mavenorg.eclipse.jetty:jetty-server12.0.0alpha0&&< 12.0.0.beta012.0.0.beta0org.eclipse.jetty:jetty-server:12.0.0.beta0

Detection & mitigation playbook

Open-source dependency
  1. Detect

    Scan your dependency tree (package-lock.json, pnpm-lock.yaml, requirements.txt, go.sum, etc.) for org.eclipse.jetty:jetty-server, including transitive dependencies — a direct dependency you never call can still pull in a vulnerable version.

  2. Fix

    Update org.eclipse.jetty:jetty-server to 9.4.51.v20230217 or later, then make sure no transitive (indirect) dependency still pins the vulnerable range — O3 confirms GHSA-p26g-97m4-6q7c is resolved across your whole dependency graph.

  3. Workarounds

    If you can't upgrade right away: gate or disable the affected feature, validate untrusted input at the boundary, and avoid passing attacker-controlled data into the vulnerable path. O3's runtime protection blocks exploitation in production as an interim safeguard until the upgrade lands.

  4. How O3 protects you

    O3 Security's impact-aware SCA analyses which vulnerable code paths your application actually calls, so a match like GHSA-p26g-97m4-6q7c can be triaged on real exposure rather than presence alone.

Tailored to GHSA-p26g-97m4-6q7c. Runtime protection reduces exposure until a permanent patch is applied and verified — it complements patching, it doesn't replace it.

Fixing This On Your OS

If you run this on a Linux distribution, patch through your package manager against the distro's own security advisory below — it tracks the exact backported fix for your release, which can ship on a different timeline (and sometimes a different severity) than the upstream project.

Red HatModerate
ProductFixed inAdvisory
OCP-Tools-4.12-RHEL-8jenkins-0:2.426.3.1706515686-3.el8RHSA-2024:0778
Red Hat AMQ Streams 2.5.0see advisoryRHSA-2023:5165
Red Hat JBoss Enterprise Application Platform 7.4 for RHEL 8eap7-undertow-0:2.2.28-1.SP1_redhat_00001.1.el8eapRHSA-2023:7638
Red Hat JBoss Enterprise Application Platform 7.4 for RHEL 9eap7-undertow-0:2.2.28-1.SP1_redhat_00001.1.el9eapRHSA-2023:7639
Red Hat JBoss Enterprise Application Platform 7.4 on RHEL 7eap7-undertow-0:2.2.28-1.SP1_redhat_00001.1.el7eapRHSA-2023:7637
Red Hat JBoss Enterprise Application Platform Expansion Packjetty-serverRHSA-2024:3385
Red Hat Satellite 6.14 for RHEL 8puppetserver-0:7.14.0-1.el8satRHSA-2024:0797
Red Hat Single Sign-On 7jetty-serverRHSA-2024:0804

Frequently Asked Questions

Nonstandard cookie parsing in Jetty may allow an attacker to smuggle cookies within other cookies, or otherwise perform unintended behavior by tampering with the cookie parsing mechanism. If Jetty sees a cookie VALUE that starts with `"` (double quote), it will continue to read the cookie string until it sees a closing quote -- even if a semicolon is encountered. So, a cookie header such as: `DISPLAY_LANGUAGE="b; JSESSIONID=1337; c=d"` will be parsed as one cookie, with the name `DISPLAY_LANGUAGE` and a value of `b; JSESSIONID=1337; c=d` instead of 3 separate cookies. ### Impact This has
O3 Security · Impact-Aware SCA

Is GHSA-p26g-97m4-6q7c in your dependencies?

O3 Security finds GHSA-p26g-97m4-6q7c across Maven dependencies, including transitive ones, and its impact-aware SCA ranks findings by whether your code actually calls the vulnerable path.

GHSA-p26g-97m4-6q7c: jetty-server (Low 2.4) | O3 Security