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
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.
Allow config plugins to resolve imports first before deciding whether to treat them as external (#6038)
Pull Requests
#6038: feat: Run external check in cli/run/loadConfigFile.ts as last in order to allow handling of e.g. workspace package imports in TS monorepos correctly (@stazz, @TrickyPi)
Renovate failed to update an artifact related to this branch. You probably do not want to merge this PR as-is.
♻ Renovate will retry this branch, including artifacts, only when one of the following happens:
any of the package files in this branch needs updating, or
the branch becomes conflicted, or
you click the rebase/retry checkbox if found above, or
you rename this PR's title to start with "rebase!" to trigger it manually
The artifact failure details are included below:
File name: package-lock.json
npm ERR! code ERESOLVE
npm ERR! ERESOLVE could not resolve
npm ERR!
npm ERR! While resolving: @rollup/[email protected]
npm ERR! Found: [email protected]
npm ERR! node_modules/rollup
npm ERR! dev rollup@"4.59.0" from the root project
npm ERR! peerOptional rollup@"^1.20.0||^2.0.0||^3.0.0||^4.0.0" from @rollup/[email protected]
npm ERR! node_modules/@rollup/plugin-babel
npm ERR! dev @rollup/plugin-babel@"6.1.0" from the root project
npm ERR! 7 more (@rollup/pluginutils, @rollup/plugin-commonjs, ...)
npm ERR!
npm ERR! Could not resolve dependency:
npm ERR! peer rollup@"^2.42.0" from @rollup/[email protected]
npm ERR! node_modules/@rollup/plugin-node-resolve
npm ERR! dev @rollup/plugin-node-resolve@"13.3.0" from the root project
npm ERR!
npm ERR! Conflicting peer dependency: [email protected]
npm ERR! node_modules/rollup
npm ERR! peer rollup@"^2.42.0" from @rollup/[email protected]
npm ERR! node_modules/@rollup/plugin-node-resolve
npm ERR! dev @rollup/plugin-node-resolve@"13.3.0" from the root project
npm ERR!
npm ERR! Fix the upstream dependency conflict, or retry
npm ERR! this command with --force, or --legacy-peer-deps
npm ERR! to accept an incorrect (and potentially broken) dependency resolution.
npm ERR!
npm ERR! See /runner/cache/others/npm/eresolve-report.txt for a full report.
npm ERR! A complete log of this run can be found in:
npm ERR! /runner/cache/others/npm/_logs/2026-02-28T05_05_48_062Z-debug-0.log
Merging this PR will not cause a version bump for any packages. If these changes should not result in a new version, you're good to go. If these changes should result in a version bump, you need to add a changeset.
This PR includes no changesets
When changesets are added to this PR, you'll see the packages that this PR includes changesets for and the associated semver types
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:
2.80.0→4.59.0GitHub Vulnerability Alerts
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)
v4.59.0Compare Source
2026-02-22
Features
Pull Requests
v4.58.0Compare Source
2026-02-20
Features
__NO_SIDE_EFFECTS__annotation before variable declarations declaring function expressions (#6272)Pull Requests
output.experimentalMinChunkSize(@millerick, @lukastaegert)v4.57.1Compare Source
2026-01-30
Bug Fixes
Pull Requests
process.report.getReport()calls in a child process for robust environment detection (@alan-agius4, @lukastaegert)v4.57.0Compare Source
2026-01-27
Features
loadortransformhooks as that will no longer be supported with rollup 5 (#5700)Pull Requests
v4.56.0Compare Source
2026-01-22
Features
Bug Fixes
this(#6230)Pull Requests
v4.55.3Compare Source
2026-01-21
Bug Fixes
Pull Requests
v4.55.2Compare Source
2026-01-19
Bug Fixes
Pull Requests
492b0c8(@renovate[bot])v4.55.1Compare Source
2026-01-05
Bug Fixes
Pull Requests
v4.54.0Compare Source
2025-12-20
Features
Symbol.hasInstance,Symbol.disposeandSymbol.asyncDisposeproperties if unused (#6046)Bug Fixes
Pull Requests
4f806de(@renovate[bot], @lukastaegert)v4.53.5Compare Source
2025-12-16
Bug Fixes
Pull Requests
v4.53.4Compare Source
2025-12-15
Bug Fixes
Symbol.disposeandSymbol.asyncDisposeproperties are never removed with(await) usingdeclarations. (#6209)Pull Requests
v4.53.3Compare Source
2025-11-19
Bug Fixes
Pull Requests
v4.53.2Compare Source
2025-11-10
Bug Fixes
Pull Requests
v4.53.1Compare Source
2025-11-07
Bug Fixes
Pull Requests
v4.53.0Compare Source
2025-11-07
Features
Pull Requests
v4.52.5Compare Source
2025-10-18
Bug Fixes
Pull Requests
v4.52.4Compare Source
2025-10-03
Bug Fixes
Pull Requests
v4.52.3Compare Source
2025-09-27
Bug Fixes
Pull Requests
fb197b7(@renovate[bot])v4.52.2Compare Source
2025-09-23
Bug Fixes
Pull Requests
v4.52.1Compare Source
2025-09-23
Bug Fixes
Pull Requests
v4.52.0Compare Source
2025-09-19
Features
output.onlyExplicitManualChunksto turn off merging additional dependencies into manual chunks (#6087)Pull Requests
v4.51.0Compare Source
2025-09-19
Features
Bug Fixes
Pull Requests
v4.50.2Compare Source
2025-09-15
Bug Fixes
Pull Requests
v4.50.1Compare Source
2025-09-07
Bug Fixes
Pull Requests
v4.50.0Compare Source
2025-08-31
Features
Bug Fixes
Pull Requests
v4.49.0Compare Source
2025-08-27
Features
Pull Requests
cli/run/loadConfigFile.tsas last in order to allow handling of e.g. workspace package imports in TS monorepos correctly (@stazz, @TrickyPi)v4.48.1Compare Source
2025-08-25
Bug Fixes
Pull Requests
v4.48.0Compare Source
2025-08-23
Features
Bug Fixes
Pull Requests
v4.47.1Compare Source
2025-08-21
Bug Fixes
Pull Requests
v4.47.0Compare Source
2025-08-21
Features
Bug Fixes
undefinedfor optional fields in Rollup types (#6061)Pull Requests
v4.46.4Compare Source
2025-08-20
Bug Fixes
inoperator (#6052)Pull Requests
inwithsyntheticNamedExports(@hi-ogawa)v4.46.3Compare Source
2025-08-18
Bug Fixes
Pull Requests
generated bycomment diff on Windows (@sapphi-red)no_opt_archfeature for mimalloc-safe (@sapphi-red)v4.46.2Compare Source
2025-07-29
Bug Fixes
Pull Requests
v4.46.1Compare Source
2025-07-28
Bug Fixes
inoperator on external namespaces (#6036)Pull Requests
v4.46.0Compare Source
2025-07-27
Features
inchecks on namespaces to keep them treeshake-able (#6029)Pull Requests
inchecks on namespaces to keep them treeshake-able (@cyyynthia, @lukastaegert)v4.45.3Compare Source
2025-07-26
Bug Fixes
Pull Requests
v4.45.1Compare Source
2025-07-15
Bug Fixes
Pull Requests
v4.45.0Compare Source
2025-07-12
Features
Bug Fixes
this(#6001)Pull Requests
v4.44.2Compare Source
2025-07-04
Bug Fixes
@__PURE__annotations afternewkeyword (#5998)Pull Requests
@__PURE__when nested after new in constructor invocations (@TrickyPi)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 is behind base branch, 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.