[CVE][fs] Exclude vulnerable jetty-http dependency#3508
Open
morazow wants to merge 1 commit into
Open
Conversation
Also remove the now-stale jetty entries from the fluss-fs-azure NOTICE: the license-check CI only fails on bundled-but-unlisted dependencies, so a listed-but-unbundled entry stays green and had to be cleaned up by hand.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Purpose
hadoop-azuretransitively pulls injetty-util/jetty-util-ajax, which then getbundled into the shaded
fluss-fs-azurejar. Jetty there is only used by Hadoop's web UIserver and the unused WASB native store — Fluss uses the ABFS client path and never touches
it. Excluding these keeps unused code out of the distributed FS jar and shrinks it.
As added motivation, this also drops Jetty 9.x jars that carry known CVEs (CVE-2026-2332,
CVE-2024-6763, CVE-2025-11143) from the bundle.
Brief change log
org.eclipse.jetty:jetty-utilandjetty-util-ajaxfrom thehadoop-azuredependency in
fluss-fs-azure.fluss-fs-azureNOTICEto drop the two now-unbundled Jetty entries.Scope note: Only
fluss-fs-azureactually bundles Jetty.hadoop-aliyun(oss) andhadoop-huaweicloud(obs) do not bring Jetty into the bundle (hadoop-commonis alreadyexcluded), so no change is needed there. Likewise
jetty-http/jetty-server/jetty-servlet/jetty-webappare never bundled, so excluding them is unnecessary.Tests
NA — dependency-only change; verified with
mvn dependency:treethat noorg.eclipse.jetty:*remains in the
fluss-fs-azurebundle.API and Format
NA
Documentation
NA