Staging Environment: Content and features may be unstable or change without notice.
Search for packages
Package details: pkg:maven/org.eclipse.jetty/jetty-webapp@9.4.35.v20201120
purl pkg:maven/org.eclipse.jetty/jetty-webapp@9.4.35.v20201120
Next non-vulnerable version 9.4.52.v20230823
Latest non-vulnerable version 11.0.16
Risk 3.1
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 3 other vulnerabilities.
10.0.14
Affected by 3 other vulnerabilities.
11.0.14
Affected by 3 other vulnerabilities.
VCID-kxtv-ma18-8fer
Aliases:
CVE-2021-28163
GHSA-j6qj-j888-vvgq
Directory exposure in jetty ### Impact If the `${jetty.base}` directory or the `${jetty.base}/webapps` directory is a symlink (soft link in Linux), the contents of the `${jetty.base}/webapps` directory may be deployed as a static web application, exposing the content of the directory for download. For example, the problem manifests in the following `${jetty.base}`: ```$ tree demo-base/ demo-base/ ├── etc ├── lib ├── resources ├── start.d ├── deploy │   └── async-rest.war └── webapps -> deploy ``` ### Workarounds Do not use a symlink
9.4.39.v20210325
Affected by 5 other vulnerabilities.
10.0.2
Affected by 5 other vulnerabilities.
11.0.2
Affected by 5 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 0 other vulnerabilities.
10.0.16
Affected by 0 other vulnerabilities.
11.0.16
Affected by 0 other vulnerabilities.
VCID-rpc4-u4aq-4qde
Aliases:
CVE-2023-41900
GHSA-pwh8-58vv-vw48
Jetty's OpenId Revoked authentication allows one request If a Jetty `OpenIdAuthenticator` uses the optional nested `LoginService`, and that `LoginService` decides to revoke an already authenticated user, then the current request will still treat the user as authenticated. The authentication is then cleared from the session and subsequent requests will not be treated as authenticated. So a request on a previously authenticated session could be allowed to bypass authentication after it had been rejected by the `LoginService`.
9.4.52.v20230823
Affected by 0 other vulnerabilities.
10.0.16
Affected by 0 other vulnerabilities.
11.0.16
Affected by 0 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.v20230823
Affected by 0 other vulnerabilities.
10.0.16
Affected by 0 other vulnerabilities.
11.0.16
Affected by 0 other vulnerabilities.
Vulnerabilities fixed by this package (1)
Vulnerability Summary Aliases
VCID-nyxu-ekhs-gyb5 Buffer not correctly recycled in Gzip Request inflation ### Impact If GZIP request body inflation is enabled and requests from different clients are multiplexed onto a single connection and if an attacker can send a request with a body that is received entirely by not consumed by the application, then a subsequent request on the same connection will see that body prepended to it's body. The attacker will not see any data, but may inject data into the body of the subsequent request CVE score is [4.8 AV:N/AC:H/PR:N/UI:N/S:U/C:N/I:L/A:L](https://nvd.nist.gov/vuln-metrics/cvss/v3-calculator?vector=AV:N/AC:H/PR:N/UI:N/S:U/C:N/I:L/A:L&version=3.1) ### Workarounds The problem can be worked around by either: - Disabling compressed request body inflation by GzipHandler. - By always fully consuming the request content before sending a response. - By adding a `Connection: close` to any response where the servlet does not fully consume request content. CVE-2020-27218
GHSA-86wm-rrjm-8wh8

Date Actor Action Vulnerability Source VulnerableCode Version
2026-04-16T22:38:45.056918+00:00 GitLab Importer Affected by VCID-rpc4-u4aq-4qde https://gitlab.com/gitlab-org/advisories-community/-/blob/main/maven/org.eclipse.jetty/jetty-webapp/CVE-2023-41900.yml 38.4.0
2026-04-16T22:38:37.402176+00:00 GitLab Importer Affected by VCID-q3k2-1x5q-buhy https://gitlab.com/gitlab-org/advisories-community/-/blob/main/maven/org.eclipse.jetty/jetty-webapp/CVE-2023-40167.yml 38.4.0
2026-04-16T22:38:36.536104+00:00 GitLab Importer Affected by VCID-thpu-76e5-j3d3 https://gitlab.com/gitlab-org/advisories-community/-/blob/main/maven/org.eclipse.jetty/jetty-webapp/CVE-2023-36479.yml 38.4.0
2026-04-16T22:27:06.835392+00:00 GitLab Importer Affected by VCID-9xw3-4a4u-hbbb https://gitlab.com/gitlab-org/advisories-community/-/blob/main/maven/org.eclipse.jetty/jetty-webapp/CVE-2023-26049.yml 38.4.0
2026-04-16T21:20:04.773539+00:00 GitLab Importer Affected by VCID-kxtv-ma18-8fer https://gitlab.com/gitlab-org/advisories-community/-/blob/main/maven/org.eclipse.jetty/jetty-webapp/CVE-2021-28163.yml 38.4.0
2026-04-16T21:14:37.161892+00:00 GitLab Importer Fixing VCID-nyxu-ekhs-gyb5 https://gitlab.com/gitlab-org/advisories-community/-/blob/main/maven/org.eclipse.jetty/jetty-webapp/CVE-2020-27218.yml 38.4.0
2026-04-11T23:58:09.889504+00:00 GitLab Importer Affected by VCID-rpc4-u4aq-4qde https://gitlab.com/gitlab-org/advisories-community/-/blob/main/maven/org.eclipse.jetty/jetty-webapp/CVE-2023-41900.yml 38.3.0
2026-04-11T23:58:01.898336+00:00 GitLab Importer Affected by VCID-q3k2-1x5q-buhy https://gitlab.com/gitlab-org/advisories-community/-/blob/main/maven/org.eclipse.jetty/jetty-webapp/CVE-2023-40167.yml 38.3.0
2026-04-11T23:58:00.940403+00:00 GitLab Importer Affected by VCID-thpu-76e5-j3d3 https://gitlab.com/gitlab-org/advisories-community/-/blob/main/maven/org.eclipse.jetty/jetty-webapp/CVE-2023-36479.yml 38.3.0
2026-04-11T23:45:27.786260+00:00 GitLab Importer Affected by VCID-9xw3-4a4u-hbbb https://gitlab.com/gitlab-org/advisories-community/-/blob/main/maven/org.eclipse.jetty/jetty-webapp/CVE-2023-26049.yml 38.3.0
2026-04-11T22:32:24.963955+00:00 GitLab Importer Affected by VCID-kxtv-ma18-8fer https://gitlab.com/gitlab-org/advisories-community/-/blob/main/maven/org.eclipse.jetty/jetty-webapp/CVE-2021-28163.yml 38.3.0
2026-04-11T22:26:43.632606+00:00 GitLab Importer Fixing VCID-nyxu-ekhs-gyb5 https://gitlab.com/gitlab-org/advisories-community/-/blob/main/maven/org.eclipse.jetty/jetty-webapp/CVE-2020-27218.yml 38.3.0
2026-04-03T00:01:12.521656+00:00 GitLab Importer Affected by VCID-rpc4-u4aq-4qde https://gitlab.com/gitlab-org/advisories-community/-/blob/main/maven/org.eclipse.jetty/jetty-webapp/CVE-2023-41900.yml 38.1.0
2026-04-03T00:01:04.647710+00:00 GitLab Importer Affected by VCID-q3k2-1x5q-buhy https://gitlab.com/gitlab-org/advisories-community/-/blob/main/maven/org.eclipse.jetty/jetty-webapp/CVE-2023-40167.yml 38.1.0
2026-04-03T00:01:03.687290+00:00 GitLab Importer Affected by VCID-thpu-76e5-j3d3 https://gitlab.com/gitlab-org/advisories-community/-/blob/main/maven/org.eclipse.jetty/jetty-webapp/CVE-2023-36479.yml 38.1.0
2026-04-02T23:49:04.864931+00:00 GitLab Importer Affected by VCID-9xw3-4a4u-hbbb https://gitlab.com/gitlab-org/advisories-community/-/blob/main/maven/org.eclipse.jetty/jetty-webapp/CVE-2023-26049.yml 38.1.0
2026-04-02T22:43:40.132219+00:00 GitLab Importer Affected by VCID-kxtv-ma18-8fer https://gitlab.com/gitlab-org/advisories-community/-/blob/main/maven/org.eclipse.jetty/jetty-webapp/CVE-2021-28163.yml 38.1.0
2026-04-02T22:38:28.011955+00:00 GitLab Importer Fixing VCID-nyxu-ekhs-gyb5 https://gitlab.com/gitlab-org/advisories-community/-/blob/main/maven/org.eclipse.jetty/jetty-webapp/CVE-2020-27218.yml 38.1.0
2026-04-01T18:12:26.031687+00:00 GitLab Importer Affected by VCID-9xw3-4a4u-hbbb https://gitlab.com/gitlab-org/advisories-community/-/blob/main/maven/org.eclipse.jetty/jetty-webapp/CVE-2023-26049.yml 38.0.0
2026-04-01T17:01:26.043968+00:00 GitLab Importer Affected by VCID-kxtv-ma18-8fer https://gitlab.com/gitlab-org/advisories-community/-/blob/main/maven/org.eclipse.jetty/jetty-webapp/CVE-2021-28163.yml 38.0.0
2026-04-01T16:55:53.186579+00:00 GitLab Importer Fixing VCID-nyxu-ekhs-gyb5 https://gitlab.com/gitlab-org/advisories-community/-/blob/main/maven/org.eclipse.jetty/jetty-webapp/CVE-2020-27218.yml 38.0.0