Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[SPARK-39725][BUILD] Upgrade
jetty-http
from 9.4.46.v20220331 to 9.…
…4.48.v20220622 ### What changes were proposed in this pull request? Upgrade `jetty-http` from 9.4.46.v20220331 to 9.4.48.v20220622 ### Why are the changes needed? [Release note](https://github.com/eclipse/jetty.project/releases) [CVE-2022-2047](https://nvd.nist.gov/vuln/detail/CVE-2022-2047) Info from Github dependabot ### Invalid URI parsing may produce invalid HttpURI.authority ### Description URI use within Jetty's `HttpURI` class can parse invalid URIs such as `http://localhost;/path` as having an authority with a host of `localhost;`. A URIs of the type `http://localhost;/path` should be interpreted to be either invalid or as `localhost;` to be the userinfo and no host. However, `HttpURI.host` returns `localhost;` which is definitely wrong. ### Impact This can lead to errors with Jetty's `HttpClient`, and Jetty's `ProxyServlet` / `AsyncProxyServlet` / `AsyncMiddleManServlet` wrongly interpreting an authority with no host as one with a host. ### Patches Patched in PR jetty/jetty.project#8146 for Jetty version 9.4.47. Patched in PR jetty/jetty.project#8015 for Jetty versions 10.0.10, and 11.0.10 ### Workarounds None. ### For more information If you have any questions or comments about this advisory: Email us at [securitywebtide.com](mailto:securitywebtide.com)." ### Does this PR introduce _any_ user-facing change? No. ### How was this patch tested? Pass GA Closes #37142 from bjornjorgensen/jetty-http-9.4.48.v20220622. Lead-authored-by: Bjørn Jørgensen <bjornjorgensen@gmail.com> Co-authored-by: Bjorn Jorgensen <bjornjorgensen@gmail.com> Signed-off-by: Hyukjin Kwon <gurwls223@apache.org>
- Loading branch information