Commit d94dfae
authored
chore(deps): update dependency vitest to v3.2.6 [security] (#722)
This PR contains the following updates:
| Package | Change |
[Age](https://docs.renovatebot.com/merge-confidence/) |
[Confidence](https://docs.renovatebot.com/merge-confidence/) |
|---|---|---|---|
| [vitest](https://vitest.dev)
([source](https://redirect.github.com/vitest-dev/vitest/tree/HEAD/packages/vitest))
| [`3.2.4` →
`3.2.6`](https://renovatebot.com/diffs/npm/vitest/3.2.4/3.2.6) |

|

|
---
### When Vitest UI server is listening, arbitrary file can be read and
executed
[CVE-2026-47429](https://nvd.nist.gov/vuln/detail/CVE-2026-47429) /
[GHSA-5xrq-8626-4rwp](https://redirect.github.com/advisories/GHSA-5xrq-8626-4rwp)
<details>
<summary>More information</summary>
#### Details
##### Summary
Arbitrary file can be read on Windows when Vitest UI server is
listening, especially when exposed to the network.
##### Impact
Only users that match either of the following conditions are affected:
- explicitly exposes the Vitest UI server to the network (using
`--api.host` or [`api.host` config
option](https://vitest.dev/config/api.html))
- running the Vitest UI or Browser Mode on Windows
##### Details
The API handler for `/__vitest_attachment__` uses the deprecated
`isFileServingAllowed` incorrectly.
https://github.com/vitest-dev/vitest/blob/eb1abf08573032a532015b999ad3501c5e89e3bb/packages/ui/node/index.ts#L77
The function expects the passed value to use `cleanUrl` after the check
before file system related operation.
Because of this, it is possible to bypass the check by `\\?\\..\\`. This
is not possible on Linux as Linux errors if a directory named `?` does
not exist.
A similar problem exists in other places as well.
-
https://github.com/vitest-dev/vitest/blob/eb1abf08573032a532015b999ad3501c5e89e3bb/packages/vitest/src/api/setup.ts#L103-L105
-
https://github.com/vitest-dev/vitest/blob/eb1abf08573032a532015b999ad3501c5e89e3bb/packages/vitest/src/api/setup.ts#L119-L121
-
https://github.com/vitest-dev/vitest/blob/eb1abf08573032a532015b999ad3501c5e89e3bb/packages/browser/src/node/commands/fs.ts#L10-L11
-
https://github.com/vitest-dev/vitest/blob/eb1abf08573032a532015b999ad3501c5e89e3bb/packages/browser/src/node/plugin.ts#L194-L196
-
https://github.com/vitest-dev/vitest/blob/eb1abf08573032a532015b999ad3501c5e89e3bb/packages/browser/src/node/rpc.ts#L115-L121
**That said**, this `isFileServingAllowed` check does not actually
prevent the API to be abused. Since the API has rerun feature and file
write feature, it's possible to run arbitrary script by writing a script
as a test file using `saveTestFile` and running it using `rerun`. This
means exposing the API / Vitest UI is equivalent to giving script
execution access.
On the browser mode side, there're `readFile` / `writeFile` /
`saveSnapshotFile`. So exposing the browser mode is equivalent to giving
file read / write access.
##### PoC
1. Run Vitest UI
2. Get the API token by `curl http://localhost:51204/__vitest__/`
3. Run `curl
"http://localhost:51204/__vitest_attachment__?path=C:\\path\\to\\project\\?\\..\\..\\secret.txt&contentType=text/plain&token=$TOKEN"`
(TOKEN is the API token)
4. curl shows the content of `secret.txt` that is outside the project
directory
##### Mitigations
Vitest now ships two configuration flags,
[`allowWrite`](https://vitest.dev/config/api.html#api-allowwrite) and
[`allowExec`](https://vitest.dev/config/api.html#api-allowexec), that
gate the privileged operations exploited by this vulnerability. Both are
disabled by default whenever the API server is bound to a
non-`localhost` host, ensuring that exposing the server to the network
no longer implicitly grants write or execute capabilities to remote
clients.
When these flags are disabled, the UI also enters a read-only mode:
in-browser code editing and test file execution are turned off, removing
the attack surface that allowed remote code execution. Many Browser Mode
features are also disabled, like attachments, artifacts or snapshots.
See
[`browser.api`](https://vitest.dev/config/browser/api.html#api-allowwrite).
Users who require the full interactive UI on a networked host must
explicitly opt in by setting `allowWrite` and/or `allowExec` to `true`.
#### Severity
- CVSS Score: 9.8 / 10 (Critical)
- Vector String: `CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H`
#### References
-
[https://github.com/vitest-dev/vitest/security/advisories/GHSA-5xrq-8626-4rwp](https://redirect.github.com/vitest-dev/vitest/security/advisories/GHSA-5xrq-8626-4rwp)
-
[https://github.com/vitest-dev/vitest/blob/eb1abf08573032a532015b999ad3501c5e89e3bb/packages/browser/src/node/commands/fs.ts#L10-L11](https://redirect.github.com/vitest-dev/vitest/blob/eb1abf08573032a532015b999ad3501c5e89e3bb/packages/browser/src/node/commands/fs.ts#L10-L11)
-
[https://github.com/vitest-dev/vitest/blob/eb1abf08573032a532015b999ad3501c5e89e3bb/packages/browser/src/node/plugin.ts#L194-L196](https://redirect.github.com/vitest-dev/vitest/blob/eb1abf08573032a532015b999ad3501c5e89e3bb/packages/browser/src/node/plugin.ts#L194-L196)
-
[https://github.com/vitest-dev/vitest/blob/eb1abf08573032a532015b999ad3501c5e89e3bb/packages/browser/src/node/rpc.ts#L115-L121](https://redirect.github.com/vitest-dev/vitest/blob/eb1abf08573032a532015b999ad3501c5e89e3bb/packages/browser/src/node/rpc.ts#L115-L121)
-
[https://github.com/vitest-dev/vitest/blob/eb1abf08573032a532015b999ad3501c5e89e3bb/packages/ui/node/index.ts#L77](https://redirect.github.com/vitest-dev/vitest/blob/eb1abf08573032a532015b999ad3501c5e89e3bb/packages/ui/node/index.ts#L77)
-
[https://github.com/vitest-dev/vitest/blob/eb1abf08573032a532015b999ad3501c5e89e3bb/packages/vitest/src/api/setup.ts#L103-L105](https://redirect.github.com/vitest-dev/vitest/blob/eb1abf08573032a532015b999ad3501c5e89e3bb/packages/vitest/src/api/setup.ts#L103-L105)
-
[https://github.com/vitest-dev/vitest/blob/eb1abf08573032a532015b999ad3501c5e89e3bb/packages/vitest/src/api/setup.ts#L119-L121](https://redirect.github.com/vitest-dev/vitest/blob/eb1abf08573032a532015b999ad3501c5e89e3bb/packages/vitest/src/api/setup.ts#L119-L121)
-
[https://github.com/advisories/GHSA-5xrq-8626-4rwp](https://redirect.github.com/advisories/GHSA-5xrq-8626-4rwp)
This data is provided by the [GitHub Advisory
Database](https://redirect.github.com/advisories/GHSA-5xrq-8626-4rwp)
([CC-BY
4.0](https://redirect.github.com/github/advisory-database/blob/main/LICENSE.md)).
</details>
---
### Release Notes
<details>
<summary>vitest-dev/vitest (vitest)</summary>
###
[`v3.2.6`](https://redirect.github.com/vitest-dev/vitest/compare/v3.2.5...v3.2.6)
[Compare
Source](https://redirect.github.com/vitest-dev/vitest/compare/v3.2.5...v3.2.6)
###
[`v3.2.5`](https://redirect.github.com/vitest-dev/vitest/compare/v3.2.4...v3.2.5)
[Compare
Source](https://redirect.github.com/vitest-dev/vitest/compare/v3.2.4...v3.2.5)
</details>
---
### Configuration
📅 **Schedule**: (UTC)
- Branch creation
- At any time (no schedule defined)
- 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.
---
- [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check
this box
---
This PR was generated by [Mend Renovate](https://mend.io/renovate/).
View the [repository job
log](https://developer.mend.io/github/sequelize/umzug).
<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0My4yMDYuMSIsInVwZGF0ZWRJblZlciI6IjQzLjIwOS40IiwidGFyZ2V0QnJhbmNoIjoibWFpbiIsImxhYmVscyI6W119-->
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>1 parent d79c19f commit d94dfae
2 files changed
Lines changed: 63 additions & 69 deletions
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
45 | 45 | | |
46 | 46 | | |
47 | 47 | | |
48 | | - | |
| 48 | + | |
49 | 49 | | |
50 | 50 | | |
51 | 51 | | |
| |||
0 commit comments