CVE-2026-92936: vm2 3.11.0 before 3.11.7 Information Disclosure via Error Stack
vm2 versions 3.11.0 through 3.11.6 leak absolute host filesystem paths to sandboxed code through error stack formatting. Attacker-supplied code can force the host-realm source transformer to throw a SyntaxError (for example by calling eval with malformed source) and then read the error's .stack property; the bridge forwards the .stack read to the host-realm formatter, bypassing the sandbox-side host-path redaction introduced for GHSA-v27g-jcqj-v8rw. The returned stack string discloses absolute paths from vm2, Node.js internals, and the embedding application's own source tree, along with host function names. Default new VM() and new NodeVM() configurations are affected without any special options, and the issue persists when string eval is disabled because the host-side transformer throws before eval is handled. The impact is information disclosure only; no code execution results. Fixed in vm2 3.11.7.
Affected Software
Remediation
Recommended actions to resolve this vulnerability, in priority order.
- Upgrade
Upgrade
vm2to a version that resolves this vulnerability.Fixed in 3.11.7 - Operational
After upgrading to vm2 3.11.7, assume host absolute paths and Node.js internals disclosed via error .stack could have been accessed by sandboxed code; review logs and restrict exposure of any secrets that may have been present in those disclosed paths or stack traces.
Event History
Frequently Asked Questions
Which deployments are affected?
Default new VM() and new NodeVM() configurations are affected in vm2 versions 3.11.0 through 3.11.6. No special options are required.
What must an attacker be able to do to disclose paths?
An attacker must be able to supply code that runs in the vm2 sandbox. They can trigger a host-realm SyntaxError, such as through eval with malformed source, and read the error's .stack property.
Does disabling string eval prevent this disclosure?
No. The host-side source transformer throws before eval is handled, so the issue persists when string eval is disabled.
What information can be exposed?
The returned stack string can disclose absolute paths from vm2, Node.js internals, and the embedding application's source tree, as well as host function names. The reported impact is information disclosure only, not code execution.
What version fixes the issue?
Upgrade vm2 to version 3.11.7, which fixes this issue.