๐Ÿ” CVE Alert

CVE-2026-92935

CRITICAL 9.0

vm2 NodeVM Remote Code Execution via Array-Shaped Require

CVSS Score
9.0
EPSS Score
0.0%
EPSS Percentile
0th

vm2 is a sandbox for running untrusted Node.js code. In versions >= 3.11.4 and <= 3.11.6, the NodeVM constructor computes `hasRealRequireConfig` with `typeof requireOpts === 'object' && requireOpts !== null`, so an array-shaped `require` value (for example `require: []`) satisfies the guard that is meant to reject nesting without an explicit require configuration. `makeResolverFromLegacyOptions()` then destructures the array into undefined option fields and returns a resolver containing only `NESTING_OVERRIDE.vm2`. As a result, an attacker who can supply JavaScript executed by a NodeVM configured with truthy `nesting` and an array-shaped `require` (e.g. `new NodeVM({nesting: true, require: []})`) can require the host `vm2` module, create an inner NodeVM with an attacker-chosen builtin allowlist (such as `child_process`), and execute arbitrary commands with the privileges of the host Node.js process, escaping the sandbox. Outer builtin restrictions do not constrain the attacker-created inner NodeVM. This issue is fixed in vm2 3.11.7.

CWE CWE-913
Vendor patriksimek
Product vm2
Published Sep 17, 2026
Stay Ahead of the Next One

Get instant alerts for patriksimek vm2

Be the first to know when new critical vulnerabilities affecting patriksimek vm2 are published โ€” delivered to Slack, Telegram or Discord.

Get Free Alerts โ†’ Free ยท No credit card ยท 60 sec setup

CVSS v3 Breakdown

CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:C/C:H/I:H/A:H
Attack Vector
Network
Attack Complexity
High
Privileges Required
None
User Interaction
None
Scope
Changed
Confidentiality
High
Integrity
High
Availability
High

Affected Versions

patriksimek / vm2
3.11.4 < 3.11.7

References

NVD โ†— CVE.org โ†— EPSS Data โ†—
github.com: https://github.com/patriksimek/vm2/security/advisories/GHSA-8hr7-r645-pc6w github.com: https://github.com/patriksimek/vm2/commit/54b54b74a382577f0bcd0538c5bf99acdcd7f53b vulncheck.com: https://www.vulncheck.com/advisories/vm2-nodevm-remote-code-execution-via-array-shaped-require

Credits

๐Ÿ” lexdotdev