Skip to content

chore(devdeps): update dependency vite to v6.2.3 [security]#182

Merged
renovate[bot] merged 1 commit into
mainfrom
renovate/npm-vite-vulnerability
Mar 25, 2025
Merged

chore(devdeps): update dependency vite to v6.2.3 [security]#182
renovate[bot] merged 1 commit into
mainfrom
renovate/npm-vite-vulnerability

Conversation

@renovate
Copy link
Copy Markdown
Contributor

@renovate renovate Bot commented Mar 25, 2025

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
vite (source) 6.2.1 -> 6.2.3 age adoption passing confidence

GitHub Vulnerability Alerts

CVE-2025-30208

Summary

The contents of arbitrary files can be returned to the browser.

Impact

Only apps explicitly exposing the Vite dev server to the network (using --host or server.host config option) are affected.

Details

@fs denies access to files outside of Vite serving allow list. Adding ?raw?? or ?import&raw?? to the URL bypasses this limitation and returns the file content if it exists. This bypass exists because trailing separators such as ? are removed in several places, but are not accounted for in query string regexes.

PoC

$ npm create vite@latest
$ cd vite-project/
$ npm install
$ npm run dev

$ echo "top secret content" > /tmp/secret.txt

# expected behaviour
$ curl "http://localhost:5173/@​fs/tmp/secret.txt"

    <body>
      <h1>403 Restricted</h1>
      <p>The request url &quot;/tmp/secret.txt&quot; is outside of Vite serving allow list.

# security bypassed
$ curl "http://localhost:5173/@&#8203;fs/tmp/secret.txt?import&raw??"
export default "top secret content\n"
//# sourceMappingURL=data:application/json;base64,eyJ2...

Release Notes

vitejs/vite (vite)

v6.2.3

Compare Source

Please refer to CHANGELOG.md for details.

v6.2.2

Compare Source


Configuration

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

🚦 Automerge: Enabled.

Rebasing: Whenever PR is behind base branch, 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 by Mend Renovate. View the repository job log.

@changeset-bot
Copy link
Copy Markdown

changeset-bot Bot commented Mar 25, 2025

⚠️ No Changeset found

Latest commit: 31a3bb8

Merging this PR will not cause a version bump for any packages. If these changes should not result in a new version, you're good to go. If these changes should result in a version bump, you need to add a changeset.

This PR includes no changesets

When changesets are added to this PR, you'll see the packages that this PR includes changesets for and the associated semver types

Click here to learn what changesets are, and how to add one.

Click here if you're a maintainer who wants to add a changeset to this PR

@nx-cloud
Copy link
Copy Markdown
Contributor

nx-cloud Bot commented Mar 25, 2025

View your CI Pipeline Execution ↗ for commit 31a3bb8.

Command Status Duration Result
nx affected -t build typecheck lint test e2e-ci ✅ Succeeded 1m 18s View ↗
nx-cloud record -- nx format:check ✅ Succeeded 2s View ↗

☁️ Nx Cloud last updated this comment at 2025-03-25 23:09:28 UTC

@renovate renovate Bot force-pushed the renovate/npm-vite-vulnerability branch from f956b6b to 31a3bb8 Compare March 25, 2025 23:06
@github-actions
Copy link
Copy Markdown
Contributor

Deployed 189d1ad to https://ForgeRock.github.io/ping-javascript-sdk/pr-182/189d1ad50ab3cad6b5efc1f33ec3dc9828f376fe branch gh-pages in ForgeRock/ping-javascript-sdk

@renovate renovate Bot merged commit 01a4a42 into main Mar 25, 2025
@renovate renovate Bot deleted the renovate/npm-vite-vulnerability branch March 25, 2025 23:10
@codecov-commenter
Copy link
Copy Markdown

Codecov Report

All modified and coverable lines are covered by tests ✅

Project coverage is 44.92%. Comparing base (6c1a685) to head (31a3bb8).
Report is 1 commits behind head on main.

Additional details and impacted files
@@            Coverage Diff             @@
##             main     #182      +/-   ##
==========================================
- Coverage   50.59%   44.92%   -5.67%     
==========================================
  Files          24       33       +9     
  Lines        1354     1538     +184     
  Branches      177      186       +9     
==========================================
+ Hits          685      691       +6     
- Misses        669      847     +178     

see 9 files with indirect coverage changes

🚀 New features to boost your workflow:
  • ❄️ Test Analytics: Detect flaky tests, report on failures, and find test suite problems.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Development

Successfully merging this pull request may close these issues.

1 participant