-
Notifications
You must be signed in to change notification settings - Fork 1.8k
[Snyk] Security upgrade axios from 1.14.0 to 1.15.0 #6010
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -198,7 +198,7 @@ | |
| "argon2": "^0.31.2", | ||
| "asn1js": "^3.0.6", | ||
| "aws-sdk": "^2.1553.0", | ||
| "axios": "^1.12.0", | ||
| "axios": "^1.15.0", | ||
|
Check failure on line 201 in backend/package.json
|
||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 🔴 The PR updates Extended reasoning...What the bug is and how it manifests This PR was opened by Snyk to fix CVE SNYK-JS-AXIOS-15969258 (HTTP Response Splitting, high severity) by upgrading axios from 1.14.0 to 1.15.0. The fix only modifies The specific code path that triggers it The lockfile (lockfileVersion 3) has two relevant stale entries: (1) the root dependencies section still lists Why existing code doesn't prevent it
What the impact would be Every reproducible build — Docker images built from How to fix it Run Step-by-step proof
|
||
| "axios-ntlm": "^1.4.4", | ||
| "axios-retry": "^4.0.0", | ||
| "bcrypt": "^5.1.1", | ||
|
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Update
backend/package-lock.jsonalongside this dependency bump:backend/package.jsonnow requestsaxios@^1.15.0, but the checked-in lockfile still recordsaxiosas^1.12.0at the root and resolvesnode_modules/axiosto1.14.0(backend/package-lock.json:79andbackend/package-lock.json:13232). For lockfile-based install paths (for examplenpm ciinbackend/Dockerfile:23andbackend/Dockerfile:78), this means the security upgrade is not reliably captured in the committed dependency graph and can leave the vulnerable version in build artifacts or force non-reproducible installs.Useful? React with 👍 / 👎.