[agent] chore(deps): bump axios to >=1.16.0 via overrides (GHSA-pjwm-pj3p-43mv)#820
Draft
github-actions[bot] wants to merge 1 commit into
Draft
[agent] chore(deps): bump axios to >=1.16.0 via overrides (GHSA-pjwm-pj3p-43mv)#820github-actions[bot] wants to merge 1 commit into
github-actions[bot] wants to merge 1 commit into
Conversation
Add npm overrides to force axios to ^1.16.0, resolving the transitive dependency vulnerability where nx@* depends on axios@1.15.0. Fixes: CVE-2026-44492 / GHSA-pjwm-pj3p-43mv Alert: https://github.com/mongodb-js/devtools-shared/security/dependabot/294 Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.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
Resolves Dependabot alert #294: CVE-2026-44492 / GHSA-pjwm-pj3p-43mv (High, CVSS 8.6).
The vulnerability is an incomplete fix for CVE-2025-62718 in
axios:shouldBypassProxydoes not normalize IPv4-mapped IPv6 addresses, allowingNO_PROXYbypass and potential SSRF in cloud environments (e.g., bypassingNO_PROXY=169.254.169.254via::ffff:a9fe:a9fe).Affected range:
>= 1.15.0, < 1.16.0. Fixed in1.16.0.Changes
"overrides": { "axios": "^1.16.0" }to rootpackage.jsonpackage-lock.json—axiosis now resolved to1.18.1Why overrides?
axiosis a transitive dependency pulled in bynx.nxpinsaxios@1.15.0in its own dependencies and has not yet released a version that pulls in>=1.16.0. Since there is no directaxiosdeclaration in any workspacepackage.jsonto bump, an npmoverridesentry is the appropriate mechanism to force the patched version.Alerts addressed