chore(frontend): [release-2.8] dismiss 3 @remix-run/* HIGH vulns missed by #2413#2414
Merged
malinskibeniamin merged 1 commit intorelease-2.8from Apr 22, 2026
Merged
Conversation
…bility analysis The original sweep covered SNYK-JS-LODASH-15869625 (CVE-2026-4800) plus 3 undici WebSocket advisories, but missed the 3 remaining HIGH severity findings that share the same unreachable dep chain: - SNYK-JS-REMIXRUNNODE-14908858 (Directory Traversal) - SNYK-JS-REMIXRUNROUTER-14908287 (Open Redirect) - SNYK-JS-REMIXRUNROUTER-14908530 (XSS) All three are pulled in via @tanstack/react-form's optional /start SSR utility. frontend/src only imports the browser entry of @tanstack/react-form, never the /start subpath. The vulnerable server- side code is never loaded or executed in this browser-only Module Federation remote. Same reasoning as the existing undici dismissals. Verified via `snyk test --file=yarn.lock --severity-threshold=high`: "no vulnerable paths found". Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
3 tasks
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.
Summary
Follow-up to merged PR #2413. That sweep dismissed 4 HIGH-severity Snyk findings (SNYK-JS-LODASH-15869625 + 3 undici IDs) but missed 3 additional HIGH-severity findings that share the exact same unreachable dep chain:
SNYK-JS-REMIXRUNNODE-14908858— Directory TraversalSNYK-JS-REMIXRUNROUTER-14908287— Open RedirectSNYK-JS-REMIXRUNROUTER-14908530— Cross-site Scripting (XSS)All three are pulled in via
@tanstack/react-form's optional/startSSR utility.grep -rn "@tanstack/react-form/start\|@remix-run" frontend/srcreturns zero hits — the frontend is a browser-only Module Federation remote and never imports the/startsubpath. The vulnerable server-side code is never loaded or executed.Each dismissal includes a reachability analysis in
frontend/.snykwithexpires: 2027-04-22.Verification
snyk test --file=yarn.lock --severity-threshold=high— "no vulnerable paths found"frontend/.snyktouched (+33 / -0)cc @redpanda-data/ux-console