Skip to content

chore(deps): update dependency vitest to ^3.2.7 [security] - #3789

Open
renovate[bot] wants to merge 1 commit into
mainfrom
renovate/npm-vitest-vulnerability
Open

chore(deps): update dependency vitest to ^3.2.7 [security]#3789
renovate[bot] wants to merge 1 commit into
mainfrom
renovate/npm-vitest-vulnerability

Conversation

@renovate

@renovate renovate Bot commented Sep 8, 2026

Copy link
Copy Markdown
Contributor

This PR contains the following updates:

Package Change Age Confidence
vitest (source) ^3.2.4^3.2.7 age confidence

Vitest: Path Traversal / Arbitrary File Read via @​vitest/mocker Redirect Mock

CVE-2026-84373 / GHSA-82fw-gwwq-j7x9

More information

Details

Summary

@vitest/mocker registers a redirect mock's target path without validating it
against the dev server's file-serving allowlist. An attacker who can reach the
dev server's WebSocket can register a redirect mock pointing outside the project
root; when the mocked module is requested, the plugin's load hook returns
readFile(<attacker path>) as the module source, disclosing local files.

This is exploitable without authentication only through the public
mockerPlugin / standalone interceptorPlugin exports (used by third-party dev
servers), which register the handler on Vite's unauthenticated HMR socket.
Vitest's own browser mode registers mocks over a token-authenticated RPC and
is not remotely reachable by default (see Scope).

Affected code

packages/mocker/src/node/interceptorPlugin.ts.

The load hook is the file-read sink:

if (mock.type === 'redirect') {
  return readFile(mock.redirect, 'utf-8')
}

mock.redirect is derived from client input at registration time with no
boundary check:

if (event.type === 'redirect') {
  const redirectUrl = new URL(event.redirect)
  event.redirect = join(server.config.root, redirectUrl.pathname)
}
registry.register(event)

There is no server.fs.allow / server.fs.deny check and no assertion that the
resolved path stays within the project root.

Registration paths and trust boundaries
  • Public mockerPlugin / interceptorPlugin (unauthenticated). In
    configureServer, the plugin registers server.ws.on('vitest:interceptor:register', …)
    on Vite's HMR WebSocket. That socket performs no token, Origin, or same-origin
    check, so any client that can reach it can register a redirect mock. This is
    the path the "unauthenticated" impact applies to.
  • Vitest browser mode (authenticated). Mocks register over the browser RPC
    (registerMock), which sits behind a per-run token (isValidApiRequest, a
    random api.token). The interceptor's configureServer socket is not used for
    registration here (in v5 it does not run at all, as the plugin is injected per
    environment). The same missing boundary check exists on the authenticated RPC
    path, but reaching it requires the token, so it is not a remote-unauthenticated
    read.
Path handling

new URL(redirect).pathname combined with join(root, pathname) does not
confine reads to the root:

  • Special/hierarchical schemes (file:, http:) are normalized by WHATWG URL,
    so .. segments are collapsed and the result stays under the root. Payloads of
    the form file:///../../etc/passwd do not escape.
  • A non-special (opaque) scheme preserves .. in pathname, so
    join(root, "../../…/etc/passwd") resolves outside the root and reads an
    arbitrary file.

Even without escaping the root, the missing server.fs check allows reading any
in-root file the dev server would otherwise refuse to serve (for example an
in-root .env or source that is denied by server.fs.deny).

Scope / preconditions
  • This is a development-server issue. The dev server binds to localhost by
    default and is not reachable from the network unless the developer exposes it
    (server.host / 0.0.0.0, a LAN bind, or a proxy).
  • A raw (non-browser) client against a reachable server bypasses browser origin
    and CORS protections entirely and can both register the mock and read the
    response.
  • A browser-based drive-by against a localhost server is substantially mitigated
    by Vite defaults: the default CORS origin allowlist is limited to localhost
    origins, and server.allowedHosts blocks DNS-rebinding, so a cross-origin page
    cannot read the file contents back.
Impact

Disclosure of local files readable by the dev-server process (source, in-root
.env/secrets, and, via the opaque-scheme payload, files outside the project
root). No integrity or availability impact.

Affected versions

Present since @vitest/mocker was introduced.

  • Affected: @vitest/mocker >= 2.1.0 (shipped in vitest and
    @vitest/browser >= 2.1.0), through 4.1.x and the 5.0.0 pre-releases.
  • Fixed: Vitest 4.1.11 and 5.0.0. Older majors (2.1.x, 3.x) are not
    maintained and are not planned to receive the fix.
Fix

Validate the resolved redirect target against Vite's file-serving allowlist
(isFileLoadingAllowed) before registering it, at every registration site, and
stop registering the interceptor WebSocket events in Vitest's browser mode
(mocks there flow through the authenticated RPC).

Severity

  • CVSS Score: 5.9 / 10 (Medium)
  • Vector String: CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:H/I:N/A:N

References

This data is provided by the GitHub Advisory Database (CC-BY 4.0).


Release Notes

vitest-dev/vitest (vitest)

v3.2.7

Compare Source

   🐞 Bug Fixes
  • browser: Check fs access in builtin commands [backport to v3]  -  by @​hi-ogawa, Hiroshi Ogawa and OpenCode (claude-opus-4-8) in #​10679 (b795e)
    View changes on GitHub

v3.2.6

Compare Source

v3.2.5

Compare Source


Configuration

📅 Schedule: (in timezone America/Los_Angeles)

  • Branch creation
    • At any time (no schedule defined)
  • 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 by Mend Renovate. View the repository job log.

@renovate renovate Bot added the security label Sep 8, 2026
@renovate
renovate Bot force-pushed the renovate/npm-vitest-vulnerability branch from 4f7e7d8 to 2c41b15 Compare September 8, 2026 23:54
@renovate renovate Bot changed the title chore(deps): update dependency vitest to ^3.2.7 [security] chore(deps): update dependency vitest to v4 [security] Sep 8, 2026
@renovate
renovate Bot force-pushed the renovate/npm-vitest-vulnerability branch from 2c41b15 to a30005c Compare September 9, 2026 02:00
@renovate renovate Bot changed the title chore(deps): update dependency vitest to v4 [security] chore(deps): update dependency vitest to ^3.2.7 [security] Sep 9, 2026
@renovate
renovate Bot force-pushed the renovate/npm-vitest-vulnerability branch from a30005c to 2922509 Compare September 9, 2026 02:10
@renovate renovate Bot changed the title chore(deps): update dependency vitest to ^3.2.7 [security] chore(deps): update dependency vitest to v4 [security] Sep 9, 2026
@renovate
renovate Bot force-pushed the renovate/npm-vitest-vulnerability branch from 2922509 to 248addf Compare September 9, 2026 02:16
@renovate renovate Bot changed the title chore(deps): update dependency vitest to v4 [security] chore(deps): update dependency vitest to ^3.2.7 [security] Sep 9, 2026
@renovate
renovate Bot force-pushed the renovate/npm-vitest-vulnerability branch from 248addf to a32462f Compare September 9, 2026 04:09
@renovate renovate Bot changed the title chore(deps): update dependency vitest to ^3.2.7 [security] chore(deps): update dependency vitest to v4 [security] Sep 9, 2026
@renovate
renovate Bot force-pushed the renovate/npm-vitest-vulnerability branch from a32462f to e95f9cc Compare September 9, 2026 04:48
@renovate renovate Bot changed the title chore(deps): update dependency vitest to v4 [security] chore(deps): update dependency vitest to ^3.2.7 [security] Sep 9, 2026
@renovate
renovate Bot force-pushed the renovate/npm-vitest-vulnerability branch from e95f9cc to b66c567 Compare September 9, 2026 10:28
@renovate renovate Bot changed the title chore(deps): update dependency vitest to ^3.2.7 [security] chore(deps): update dependency vitest to v4 [security] Sep 9, 2026
@renovate
renovate Bot force-pushed the renovate/npm-vitest-vulnerability branch from b66c567 to 328a303 Compare September 9, 2026 11:17
@renovate renovate Bot changed the title chore(deps): update dependency vitest to v4 [security] chore(deps): update dependency vitest to ^3.2.7 [security] Sep 9, 2026
@renovate
renovate Bot force-pushed the renovate/npm-vitest-vulnerability branch from 328a303 to 0849deb Compare September 9, 2026 16:38
@renovate renovate Bot changed the title chore(deps): update dependency vitest to ^3.2.7 [security] chore(deps): update dependency vitest to v4 [security] Sep 9, 2026
@renovate
renovate Bot force-pushed the renovate/npm-vitest-vulnerability branch from 0849deb to bec44ca Compare September 9, 2026 16:44
@renovate renovate Bot changed the title chore(deps): update dependency vitest to v4 [security] chore(deps): update dependency vitest to ^3.2.7 [security] Sep 9, 2026
@renovate
renovate Bot force-pushed the renovate/npm-vitest-vulnerability branch from bec44ca to 3e29312 Compare September 9, 2026 17:21
@renovate renovate Bot changed the title chore(deps): update dependency vitest to ^3.2.7 [security] chore(deps): update dependency vitest to v4 [security] Sep 9, 2026
@renovate
renovate Bot force-pushed the renovate/npm-vitest-vulnerability branch from 3e29312 to 4aada05 Compare September 9, 2026 18:00
@renovate renovate Bot changed the title chore(deps): update dependency vitest to v4 [security] chore(deps): update dependency vitest to ^3.2.7 [security] Sep 9, 2026
@renovate
renovate Bot force-pushed the renovate/npm-vitest-vulnerability branch from 4aada05 to 6fa8f22 Compare September 9, 2026 20:03
@renovate renovate Bot changed the title chore(deps): update dependency vitest to ^3.2.7 [security] chore(deps): update dependency vitest to v4 [security] Sep 9, 2026
@renovate
renovate Bot force-pushed the renovate/npm-vitest-vulnerability branch from 6fa8f22 to 2569645 Compare September 9, 2026 23:39
@renovate renovate Bot changed the title chore(deps): update dependency vitest to v4 [security] chore(deps): update dependency vitest to ^3.2.7 [security] Sep 9, 2026
@renovate
renovate Bot force-pushed the renovate/npm-vitest-vulnerability branch from 2569645 to b5f5c5e Compare September 10, 2026 00:45
@renovate renovate Bot changed the title chore(deps): update dependency vitest to ^3.2.7 [security] chore(deps): update dependency vitest to v4 [security] Sep 10, 2026
@renovate
renovate Bot force-pushed the renovate/npm-vitest-vulnerability branch from b5f5c5e to 1461c32 Compare September 10, 2026 01:56
@renovate renovate Bot changed the title chore(deps): update dependency vitest to v4 [security] chore(deps): update dependency vitest to ^3.2.7 [security] Sep 10, 2026
@renovate
renovate Bot force-pushed the renovate/npm-vitest-vulnerability branch from 1461c32 to 637d877 Compare September 10, 2026 02:45
@renovate renovate Bot changed the title chore(deps): update dependency vitest to ^3.2.7 [security] chore(deps): update dependency vitest to v4 [security] Sep 10, 2026
@renovate
renovate Bot force-pushed the renovate/npm-vitest-vulnerability branch from 637d877 to 297718c Compare September 10, 2026 03:11
@renovate renovate Bot changed the title chore(deps): update dependency vitest to v4 [security] chore(deps): update dependency vitest to ^3.2.7 [security] Sep 10, 2026
@renovate
renovate Bot force-pushed the renovate/npm-vitest-vulnerability branch from 297718c to d84f43c Compare September 10, 2026 05:17
@renovate renovate Bot changed the title chore(deps): update dependency vitest to ^3.2.7 [security] chore(deps): update dependency vitest to v4 [security] Sep 10, 2026
@renovate
renovate Bot force-pushed the renovate/npm-vitest-vulnerability branch from d84f43c to 19b1b81 Compare September 10, 2026 08:31
@renovate renovate Bot changed the title chore(deps): update dependency vitest to v4 [security] chore(deps): update dependency vitest to ^3.2.7 [security] Sep 10, 2026
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants