fix(deps): remove unused @jsfeb26/urllib-sync (Dependabot #129) - #322
Merged
Conversation
Fixes GHSA-hq3h-g68c-hp78 / CVE-2026-55553 (Dependabot alert #129): transitive urllib <=2.44.0 preserves credential-bearing headers (Authorization, Cookie, etc.) across cross-origin redirects. @jsfeb26/urllib-sync was the sole package pulling in the vulnerable urllib@2.11.1, and it is not referenced anywhere in the codebase (added in 2021 as a fork of urllib-sync, never used since). Removing it as dead weight eliminates the vulnerable transitive dependency entirely rather than forcing an override against its ~2.11.0 pin. Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com>
htilly
pushed a commit
that referenced
this pull request
Aug 28, 2026
Security: fixed GHSA-hq3h-g68c-hp78 / CVE-2026-55553 (credential leak on cross-origin redirect) by removing the unused @jsfeb26/urllib-sync dependency (#322). Dependency upgrade: posthog-node 5.49.1 -> 5.51.2, including an upstream fix for a Node 24.16+ memory leak (#321). Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com>
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
Fixes Dependabot alert #129 — GHSA-hq3h-g68c-hp78 / CVE-2026-55553 (high, CVSS 7.5).
urllib<= 2.44.0 preserves credential-bearing headers (Authorization,Cookie,Proxy-Authorization, etc.) verbatim when following a cross-origin redirect, which can leak credentials to an untrusted origin.Root cause
@jsfeb26/urllib-sync(pinned to~2.11.0, added in 2021) was the only dependency pulling in the vulnerableurllib@2.11.1. A repo-wide search found no references to it anywhere in the codebase — it's dead weight.Fix
Removed
@jsfeb26/urllib-syncfrompackage.jsonand regeneratedpackage-lock.json. This drops the vulnerable transitiveurllibentirely, rather than forcing a version override against its tight semver pin.Verification
npm install— nourllibpackage remains in the lockfilenpm test— all 745 tests passnpm audit— remaining findings (ip/SSRF viasonos) are pre-existing and unrelated to this alert🤖 Generated with Claude Code