chore(deps): update dependency rollup to v4.59.0 [security] (v2)#3291
chore(deps): update dependency rollup to v4.59.0 [security] (v2)#3291Legend-Master merged 3 commits intov2from
Conversation
Package Changes Through 38867f4There are 6 changes which include fs with minor, fs-js with minor, http with patch, http-js with patch, dialog with minor, dialog-js with minor Planned Package VersionsThe following package releases are the planned based on the context of changes in this pull request.
Add another change file through the GitHub UI by following this link. Read about change files or the docs at github.com/jbolda/covector |
|
Review the following changes in direct dependencies. Learn more about Socket for GitHub.
|
bf1640a to
c3d269f
Compare
Edited/Blocked NotificationRenovate will not automatically rebase this PR, because it does not recognize the last commit author and assumes somebody else may have edited the PR. You can manually request rebase by checking the rebase/retry box above. |
|
Warning Review the following alerts detected in dependencies. According to your organization's Security Policy, it is recommended to resolve "Warn" alerts. Learn more about Socket for GitHub.
|
|
|
This PR contains the following updates:
4.57.1→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)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.