[ZEPPELIN-6590] Bump websocket-driver to 0.7.5 to address CVE-2026-54466 - #5369
Merged
Conversation
tbonelee
approved these changes
Aug 3, 2026
Contributor
|
Merged into master |
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.
What is this PR for?
The lockfiles of both web UIs (
zeppelin-web-angularandzeppelin-web) resolvewebsocket-driverto 0.7.4, which is affected by CVE-2026-54466 / GHSA-xv26-6w52-cph6: the draft-75/76 frame parser accumulates the length header into an unbounded integer, so a client sending an indefinite sequence of continuation bytes (0x80or above) causes precision loss and mis-framing of subsequent payload data. The fix is in 0.7.5 (latest release), which closes the connection as soon as the accumulated length exceeds the configured max length.websocket-driveris a dev-only transitive dependency (@angular-devkit/build-angular→webpack-dev-server→sockjs→faye-websocket), so shipped Zeppelin artifacts are not affected — but the vulnerable version keeps being flagged by dependency scanners.Since
faye-websocket's constraint is>=0.5.1andsockjs's is^0.7.4, this is a lockfile-only bump: eachpackage-lock.jsonchanges only the resolvedwebsocket-driverentry (version / resolved / integrity). 0.7.4 and 0.7.5 declare identical dependencies, so no other entry changes.Note: the dependabot security-update group PR #5354 covers
shell-quotein the same directory but did not pick upwebsocket-driver(advisory published 2026-07-15, before that PR was created), presumably because it sits four levels deep in the dependency tree — hence this manual bump. The earlier bump attempt in #4798 (ZEPPELIN-6061, for a deprecation warning) was closed pending an Angular upgrade; master is on Angular 21 now, and this change does not touchpackage.jsonat all.What type of PR is it?
Improvement
Todos
websocket-driverlockfile entry to 0.7.5 inzeppelin-web-angular/package-lock.jsonandzeppelin-web/package-lock.jsonWhat is the Jira issue?
How should this be tested?
cd zeppelin-web-angular && npm ci— installs cleanly and resolveswebsocket-driver@0.7.5(verified locally;npm ls websocket-drivershows a single 0.7.5 instance)Screenshots (if appropriate)
Questions: