Vite CVE-2026-39363
HIGHSeverity by source
CVSS:4.0/AV:N/AC:L/AT:P/PR:N/UI:N/VC:H/VI:N/VA:N/SC:N/SI:N/SA:N/E:X/CR:X/IR:X/AR:X/MAV:X/MAC:X/MAT:X/MPR:X/MUI:X/MVC:X/MVI:X/MVA:X/MSC:X/MSI:X/MSA:X/S:X/AU:X/R:X/V:X/RE:X/U:X
Primary rating from Vendor (https://github.com/vitejs/vite).
CVSS VectorVendor: https://github.com/vitejs/vite
Lifecycle Timeline
4Blast Radius
ecosystem impact- 34 npm packages depend on vite (30 direct, 4 indirect)
Ecosystem-wide dependent count for version 8.0.0.
DescriptionCVE.org
Summary
server.fs check was not enforced to the fetchModule method that is exposed in Vite dev server's WebSocket.
Impact
Only apps that match the following conditions are affected:
- explicitly exposes the Vite dev server to the network (using
--hostorserver.hostconfig option) - WebSocket is not disabled by
server.ws: false
Arbitrary files on the server (development machine, CI environment, container, etc.) can be exposed.
Details
If it is possible to connect to the Vite dev server’s WebSocket without an Origin header, an attacker can invoke fetchModule via the custom WebSocket event vite:invoke and combine file://... with ?raw (or ?inline) to retrieve the contents of arbitrary files on the server as a JavaScript string (e.g., export default "...").
The access control enforced in the HTTP request path (such as server.fs.allow) is not applied to this WebSocket-based execution path.
PoC
- Start the dev server on the target
Example (used during validation with this repository):
pnpm -C playground/alias exec vite --host 0.0.0.0 --port 5173- Confirm that access is blocked via the HTTP path (example: arbitrary file)
curl -i 'http://localhost:5173/@fs/etc/passwd?raw'Result: 403 Restricted (outside the allow list) <img width="3898" height="1014" alt="image" src="https://github.com/user-attachments/assets/f6593377-549c-45d7-b562-5c19833438af" />
- Confirm that the same file can be retrieved via the WebSocket path
By connecting to the HMR WebSocket without an Origin header and sending a vite:invoke request that calls fetchModule with a file://... URL and ?raw, the file contents are returned as a JavaScript module. <img width="1049" height="296" alt="image" src="https://github.com/user-attachments/assets/af969f7b-d34e-4af4-8adb-5e2b83b31972" /> <img width="1382" height="955" alt="image" src="https://github.com/user-attachments/assets/6a230d2e-197a-4c9c-b373-d0129756d5d7" />
AnalysisAI
Vite dev server WebSocket allows unauthorized file system access, bypassing server.fs.allow restrictions when developers expose dev servers to networks (via --host). Attackers exploiting this can read arbitrary files (credentials, source code, secrets) from the development machine or CI environment through a WebSocket vite:invoke event calling fetchModule with file:// URLs. Vendor-released patches available in versions 6.4.2, 7.3.2, and 8.0.5. Public exploit code exists with detailed proof-of-concept demonstrating /etc/passwd retrieval via WebSocket without Origin header validation.
Technical ContextAI
Vite is a modern JavaScript build tool and development server (pkg:npm/vite) that provides Hot Module Replacement (HMR) functionality over WebSocket connections. The vulnerability stems from an access control inconsistency mapped to CWE-200 (Exposure of Sensitive Information to an Unauthorized Actor). While HTTP-based file access correctly enforces server.fs.allow and server.fs.strict configuration to prevent path traversal outside designated directories, the WebSocket event handler for vite:invoke exposes a fetchModule method that bypasses these checks entirely. The WebSocket transport lacks Origin header validation in affected configurations, and the file:// protocol handler combined with query parameters (?raw or ?inline) transforms arbitrary filesystem content into JavaScript module exports. This architectural flaw creates two distinct execution paths with divergent security controls: HTTP requests properly validate filesystem boundaries, while WebSocket RPC calls to internal methods do not inherit these restrictions.
RemediationAI
Immediately upgrade to patched Vite versions: 6.4.2 or later for the 6.x branch, 7.3.2 or later for the 7.x branch, or 8.0.5 or later for the 8.x branch as documented in GitHub releases at github.com/vitejs/vite/releases. The fix is implemented in commit f02d9fde0b195afe3ea2944414186962fbbe41e0 and pull request #22159 available at github.com/vitejs/vite/pull/22159. For environments where immediate patching is not feasible, implement the following workarounds: restrict dev server binding to localhost only by removing --host flags and avoiding server.host configuration, or disable WebSocket functionality entirely by setting server.ws: false in Vite configuration (note this breaks HMR features). In CI/CD environments, ensure dev servers are isolated within containers without external network exposure and never expose development servers directly to untrusted networks. Review access logs for WebSocket connections with vite:invoke events targeting file:// URLs as potential indicators of exploitation attempts. Complete security advisory and patch details are available at github.com/vitejs/vite/security/advisories/GHSA-p9ff-h696-f583.
Same weakness CWE-200 – Information Exposure
View allSame technique Information Disclosure
View allVendor StatusVendor
Share
External POC / Exploit Code
Leaving vuln.today
GHSA-p9ff-h696-f583