The @nuxt/vite-builder package, a crucial element for Nuxt 3 applications leveraging the Vite bundler, has seen a recent update from version 3.14.159 to 3.14.1592. While seemingly a small version bump, it incorporates several dependency upgrades and internal improvements of interest to Nuxt developers. This update touches key components within the build pipeline, enhancing both performance and stability.
Specifically, several dependencies have been bumped in the newer version. Vite advances from 5.4.10 to 5.4.11, potentially bringing minor performance tweaks and bug fixes from the Vite core team. mlly updates from 1.7.2 to 1.7.3, and unplugin moves from 1.15.0 to 1.16.0, likely offering improvements in module handling and plugin integrations within the Nuxt/Vite ecosystem. Postcss goes from 8.4.47 to 8.4.49 and std-env shifts from 3.7.0 to 3.8.0, potentially affecting CSS processing and environment variable handling, respectively. Vite-node sees an update from 2.1.4 to 2.1.5. @nuxt/kit gets bumped from 3.14.159 to 3.14.1592 to match the version of the builder, and so does @nuxt/schema. Besides, the @vitejs/plugin-vue version is updated from 5.1.4 to 5.2.0, and @vitejs/plugin-vue-jsx jumps significantly from 4.0.1 to 4.1.0. Finally, magic-string receives an update from 0.30.12 to 0.30.13, and rollup advances from 4.24.4 to 4.27.3.
Developers should also note the updated development dependencies, with vue moving from 3.5.12 to 3.5.13. These cumulative changes suggest a focus on refining the build process, resolving potential compatibility issues, and incorporating the latest features from the underlying Vite ecosystem. While the core functionality remains the same, this update represents a worthwhile upgrade for Nuxt developers seeking the most stable and performant Vite integration.
All the vulnerabilities related to the version 3.14.1592 of the package
Opening a malicious website while running a Nuxt dev server could allow read-only access to code
Nuxt allows any websites to send any requests to the development server and read the response due to default CORS settings.
While Vite patched the default CORS settings to fix https://github.com/vitejs/vite/security/advisories/GHSA-vg6x-rcgg-rjx6, nuxt uses its own CORS handler by default (https://github.com/nuxt/nuxt/pull/23995).
https://github.com/nuxt/nuxt/blob/7d345c71462d90187fd09c96c7692f306c90def5/packages/vite/src/client.ts#L257-L263
That CORS handler sets Access-Control-Allow-Origin: *
.
[!IMPORTANT]
If on an affected version, it may be possible to opt-out of the default Nuxt CORS handler by configuringvite.server.cors
.
nuxt dev
.http://localhost:3000/_nuxt/app.vue
(fetch('http://localhost:3000/_nuxt/app.vue')
) from a different origin page.Users with the default server.cors option using Vite builder may get the source code stolen by malicious websites
/__nuxt_vite_node__/manifest
/ /__nuxt_vite_node__/module
also seems to have Access-Control-Allow-Origin: *
, so it maybe also possible to exploit that handler.
https://github.com/nuxt/nuxt/blob/7d345c71462d90187fd09c96c7692f306c90def5/packages/vite/src/vite-node.ts#L39
Although I didn't find a valid module id.
Note that this handler is probably also vulnerable to DNS rebinding attacks as I didn't find any host header checks.
esbuild enables any website to send any requests to the development server and read the response
esbuild allows any websites to send any request to the development server and read the response due to default CORS settings.
esbuild sets Access-Control-Allow-Origin: *
header to all requests, including the SSE connection, which allows any websites to send any request to the development server and read the response.
https://github.com/evanw/esbuild/blob/df815ac27b84f8b34374c9182a93c94718f8a630/pkg/api/serve_other.go#L121 https://github.com/evanw/esbuild/blob/df815ac27b84f8b34374c9182a93c94718f8a630/pkg/api/serve_other.go#L363
Attack scenario:
http://malicious.example.com
).fetch('http://127.0.0.1:8000/main.js')
request by JS in that malicious web page. This request is normally blocked by same-origin policy, but that's not the case for the reasons above.http://127.0.0.1:8000/main.js
.In this scenario, I assumed that the attacker knows the URL of the bundle output file name. But the attacker can also get that information by
/index.html
: normally you have a script tag here/assets
: it's common to have a assets
directory when you have JS files and CSS files in a different directory and the directory listing feature tells the attacker the list of files/esbuild
SSE endpoint: the SSE endpoint sends the URL path of the changed files when the file is changed (new EventSource('/esbuild').addEventListener('change', e => console.log(e.type, e.data))
)The scenario above fetches the compiled content, but if the victim has the source map option enabled, the attacker can also get the non-compiled content by fetching the source map file.
npm i
npm run watch
fetch('http://127.0.0.1:8000/app.js').then(r => r.text()).then(content => console.log(content))
in a different website's dev tools.Users using the serve feature may get the source code stolen by malicious websites.