Staging Environment: Content and features may be unstable or change without notice.
Search for packages
Package details: pkg:maven/org.eclipse.jetty/jetty-servlets@9.4.12.RC1
purl pkg:maven/org.eclipse.jetty/jetty-servlets@9.4.12.RC1
Next non-vulnerable version 9.4.54.v20240208
Latest non-vulnerable version 11.0.18
Risk 10.0
Vulnerabilities affecting this package (5)
Vulnerability Summary Fixed by
VCID-9xw3-4a4u-hbbb
Aliases:
CVE-2023-26049
GHSA-p26g-97m4-6q7c
Exposure of Sensitive Information to an Unauthorized Actor Jetty is a java based web server and servlet engine. 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. 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 or its logging system. This issue has been addressed in versions 9.4.51, 10.0.14, 11.0.14, and 12.0.0.beta0 and users are advised to upgrade. There are no known workarounds for this issue.
9.4.51.v20230217
Affected by 4 other vulnerabilities.
10.0.14
Affected by 5 other vulnerabilities.
11.0.14
Affected by 5 other vulnerabilities.
VCID-g3ff-brt6-vkeh
Aliases:
CVE-2021-28169
GHSA-gwcr-j4wh-j3cq
Jetty Utility Servlets ConcatServlet Double Decoding Information Disclosure Vulnerability Requests to the `ConcatServlet` and `WelcomeFilter` are able to access protected resources within the `WEB-INF` directory. For example a request to the `ConcatServlet` with a URI of `/concat?/%2557EB-INF/web.xml` can retrieve the web.xml file. This can reveal sensitive information regarding the implementation of a web application. This occurs because both `ConcatServlet` and `WelcomeFilter` decode the supplied path to verify it is not within the `WEB-INF` or `META-INF` directories. It then uses this decoded path to call `RequestDispatcher` which will also do decoding of the path. This double decoding allows paths with a doubly encoded `WEB-INF` to bypass this security check. ### Impact This affects all versions of `ConcatServlet` and `WelcomeFilter` in versions before 9.4.41, 10.0.3 and 11.0.3. ### Workarounds If you cannot update to the latest version of Jetty, you can instead deploy your own version of the [`ConcatServlet`](https://github.com/eclipse/jetty.project/blob/4204526d2fdad355e233f6bf18a44bfe028ee00b/jetty-servlets/src/main/java/org/eclipse/jetty/servlets/ConcatServlet.java) and/or the [`WelcomeFilter`](https://github.com/eclipse/jetty.project/blob/4204526d2fdad355e233f6bf18a44bfe028ee00b/jetty-servlets/src/main/java/org/eclipse/jetty/servlets/WelcomeFilter.java) by using the code from the latest version of Jetty.
9.4.41
Affected by 0 other vulnerabilities.
9.4.41.v20210516
Affected by 5 other vulnerabilities.
10.0.3
Affected by 6 other vulnerabilities.
11.0.3
Affected by 6 other vulnerabilities.
VCID-memq-11qz-9qem
Aliases:
CVE-2024-9823
GHSA-j26w-f9rq-mr2q
Eclipse Jetty has a denial of service vulnerability on DosFilter Description There exists a security vulnerability in Jetty's DosFilter which can be exploited by unauthorized users to cause remote denial-of-service (DoS) attack on the server using DosFilter. By repeatedly sending crafted requests, attackers can trigger OutofMemory errors and exhaust the server's memory finally. Vulnerability details The Jetty DoSFilter (Denial of Service Filter) is a security filter designed to protect web applications against certain types of Denial of Service (DoS) attacks and other abusive behavior. It helps to mitigate excessive resource consumption by limiting the rate at which clients can make requests to the server. The DoSFilter monitors and tracks client request patterns, including request rates, and can take actions such as blocking or delaying requests from clients that exceed predefined thresholds. The internal tracking of requests in DoSFilter is the source of this OutOfMemory condition. Impact Users of the DoSFilter may be subject to DoS attacks that will ultimately exhaust the memory of the server if they have not configured session passivation or an aggressive session inactivation timeout. Patches The DoSFilter has been patched in all active releases to no longer support the session tracking mode, even if configured. Patched releases: * 9.4.54 * 10.0.18 * 11.0.18 * 12.0.3
9.4.54
Affected by 0 other vulnerabilities.
9.4.54.v20240208
Affected by 0 other vulnerabilities.
10.0.18
Affected by 0 other vulnerabilities.
11.0.18
Affected by 0 other vulnerabilities.
VCID-q3k2-1x5q-buhy
Aliases:
CVE-2023-40167
GHSA-hmr7-m48g-48f6
Improper Handling of Length Parameter Inconsistency Jetty is a Java based web server and servlet engine. Prior to versions 9.4.52, 10.0.16, 11.0.16, and 12.0.1, Jetty accepts the `+` character proceeding the content-length value in a HTTP/1 header field. This is more permissive than allowed by the RFC and other servers routinely reject such requests with 400 responses. There is no known exploit scenario, but it is conceivable that request smuggling could result if jetty is used in combination with a server that does not close the connection after sending such a 400 response. Versions 9.4.52, 10.0.16, 11.0.16, and 12.0.1 contain a patch for this issue. There is no workaround as there is no known exploit scenario.
9.4.52.v20230823
Affected by 1 other vulnerability.
10.0.16
Affected by 2 other vulnerabilities.
11.0.16
Affected by 2 other vulnerabilities.
VCID-thpu-76e5-j3d3
Aliases:
CVE-2023-36479
GHSA-3gh6-v5v9-6v9j
Jetty vulnerable to errant command quoting in CGI Servlet If a user sends a request to a `org.eclipse.jetty.servlets.CGI` Servlet for a binary with a space in its name, the servlet will escape the command by wrapping it in quotation marks. This wrapped command, plus an optional command prefix, will then be executed through a call to Runtime.exec. If the original binary name provided by the user contains a quotation mark followed by a space, the resulting command line will contain multiple tokens instead of one. For example, if a request references a binary called file” name “here, the escaping algorithm will generate the command line string “file” name “here”, which will invoke the binary named file, not the one that the user requested. ```java if (execCmd.length() > 0 && execCmd.charAt(0) != '"' && execCmd.contains(" ")) execCmd = "\"" + execCmd + "\""; ```
9.4.52
Affected by 0 other vulnerabilities.
9.4.52.v20230823
Affected by 1 other vulnerability.
10.0.16
Affected by 2 other vulnerabilities.
11.0.16
Affected by 2 other vulnerabilities.
Vulnerabilities fixed by this package (0)
Vulnerability Summary Aliases
This package is not known to fix vulnerabilities.

Date Actor Action Vulnerability Source VulnerableCode Version
2026-04-16T23:11:42.986028+00:00 GitLab Importer Affected by VCID-memq-11qz-9qem https://gitlab.com/gitlab-org/advisories-community/-/blob/main/maven/org.eclipse.jetty/jetty-servlets/CVE-2024-9823.yml 38.4.0
2026-04-16T22:38:40.476315+00:00 GitLab Importer Affected by VCID-q3k2-1x5q-buhy https://gitlab.com/gitlab-org/advisories-community/-/blob/main/maven/org.eclipse.jetty/jetty-servlets/CVE-2023-40167.yml 38.4.0
2026-04-16T22:38:30.507359+00:00 GitLab Importer Affected by VCID-thpu-76e5-j3d3 https://gitlab.com/gitlab-org/advisories-community/-/blob/main/maven/org.eclipse.jetty/jetty-servlets/CVE-2023-36479.yml 38.4.0
2026-04-16T22:27:13.247848+00:00 GitLab Importer Affected by VCID-9xw3-4a4u-hbbb https://gitlab.com/gitlab-org/advisories-community/-/blob/main/maven/org.eclipse.jetty/jetty-servlets/CVE-2023-26049.yml 38.4.0
2026-04-16T21:25:59.082194+00:00 GitLab Importer Affected by VCID-g3ff-brt6-vkeh https://gitlab.com/gitlab-org/advisories-community/-/blob/main/maven/org.eclipse.jetty/jetty-servlets/CVE-2021-28169.yml 38.4.0
2026-04-12T00:30:07.802632+00:00 GitLab Importer Affected by VCID-memq-11qz-9qem https://gitlab.com/gitlab-org/advisories-community/-/blob/main/maven/org.eclipse.jetty/jetty-servlets/CVE-2024-9823.yml 38.3.0
2026-04-11T23:58:05.222710+00:00 GitLab Importer Affected by VCID-q3k2-1x5q-buhy https://gitlab.com/gitlab-org/advisories-community/-/blob/main/maven/org.eclipse.jetty/jetty-servlets/CVE-2023-40167.yml 38.3.0
2026-04-11T23:57:53.685440+00:00 GitLab Importer Affected by VCID-thpu-76e5-j3d3 https://gitlab.com/gitlab-org/advisories-community/-/blob/main/maven/org.eclipse.jetty/jetty-servlets/CVE-2023-36479.yml 38.3.0
2026-04-11T23:45:35.146777+00:00 GitLab Importer Affected by VCID-9xw3-4a4u-hbbb https://gitlab.com/gitlab-org/advisories-community/-/blob/main/maven/org.eclipse.jetty/jetty-servlets/CVE-2023-26049.yml 38.3.0
2026-04-11T22:38:49.011905+00:00 GitLab Importer Affected by VCID-g3ff-brt6-vkeh https://gitlab.com/gitlab-org/advisories-community/-/blob/main/maven/org.eclipse.jetty/jetty-servlets/CVE-2021-28169.yml 38.3.0
2026-04-03T00:37:47.625306+00:00 GitLab Importer Affected by VCID-memq-11qz-9qem https://gitlab.com/gitlab-org/advisories-community/-/blob/main/maven/org.eclipse.jetty/jetty-servlets/CVE-2024-9823.yml 38.1.0
2026-04-03T00:01:07.957308+00:00 GitLab Importer Affected by VCID-q3k2-1x5q-buhy https://gitlab.com/gitlab-org/advisories-community/-/blob/main/maven/org.eclipse.jetty/jetty-servlets/CVE-2023-40167.yml 38.1.0
2026-04-03T00:00:56.932468+00:00 GitLab Importer Affected by VCID-thpu-76e5-j3d3 https://gitlab.com/gitlab-org/advisories-community/-/blob/main/maven/org.eclipse.jetty/jetty-servlets/CVE-2023-36479.yml 38.1.0
2026-04-02T23:49:11.377907+00:00 GitLab Importer Affected by VCID-9xw3-4a4u-hbbb https://gitlab.com/gitlab-org/advisories-community/-/blob/main/maven/org.eclipse.jetty/jetty-servlets/CVE-2023-26049.yml 38.1.0
2026-04-02T22:49:27.746579+00:00 GitLab Importer Affected by VCID-g3ff-brt6-vkeh https://gitlab.com/gitlab-org/advisories-community/-/blob/main/maven/org.eclipse.jetty/jetty-servlets/CVE-2021-28169.yml 38.1.0
2026-04-01T18:12:33.153840+00:00 GitLab Importer Affected by VCID-9xw3-4a4u-hbbb https://gitlab.com/gitlab-org/advisories-community/-/blob/main/maven/org.eclipse.jetty/jetty-servlets/CVE-2023-26049.yml 38.0.0
2026-04-01T17:07:22.307385+00:00 GitLab Importer Affected by VCID-g3ff-brt6-vkeh https://gitlab.com/gitlab-org/advisories-community/-/blob/main/maven/org.eclipse.jetty/jetty-servlets/CVE-2021-28169.yml 38.0.0