---
id: CVE-2026-92937
title: >-
  vm2 3.11.6 is vulnerable to a sandbox escape leading to remote code execution
  in the host Node.js process
summary: >-
  vm2 3.11.6 is vulnerable to a sandbox escape leading to remote code execution
  in the host Node.js process. The fix for GHSA-m283-3h24-438v is incomplete:
  the bridge gate at lib/bridge.js:1624 identity-checks only the direct call
  target w…
severity: critical
cvss: 10
cvssVector: 'CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:C/C:H/I:H/A:H'
cwe:
  - CWE-94
vendor: patriksimek
product: vm2
affected:
  - vm2 >= 3.11.6 < 3.11.7
published: '2026-09-17'
updated: '2026-09-18'
sourceUpdated: '2026-09-18T20:17:30.707'
source: NVD
sourceUrl: 'https://nvd.nist.gov/vuln/detail/CVE-2026-92937'
references:
  - url: 'https://github.com/patriksimek/vm2/security/advisories/GHSA-647f-g98j-qq25'
    label: disclosure@vulncheck.com
  - url: >-
      https://www.vulncheck.com/advisories/vm2-3.11.6-remote-code-execution-via-promise-call-apply
    label: disclosure@vulncheck.com
  - url: 'https://github.com/patriksimek/vm2/security/advisories/GHSA-647f-g98j-qq25'
    label: 134c704f-9b21-4f2e-91b3-4a467353bcc0
tags:
  - nvd
  - cve.org
  - exploit-available
epss: 0.00791
epssPercentile: 0.54322
exploitAvailable: true
ssvc:
  exploitation: poc
  automatable: 'yes'
  technicalImpact: total
  timestamp: '2026-09-18T19:25:43.226436Z'
ingestedAt: '2026-09-17T14:19:30.983Z'
---

## Overview

vm2 3.11.6 is vulnerable to a sandbox escape leading to remote code execution in the host Node.js process. The fix for GHSA-m283-3h24-438v is incomplete: the bridge gate at lib/bridge.js:1624 identity-checks only the direct call target when deciding whether to rebuild/sanitise a rejected host Promise value. Registering the rejection handler through Function.prototype.call or .apply indirection (e.g., p.then.call(p, undefined, cb)) makes the intercepted target host Function.prototype.call, so the sanitiser never runs and the raw host error reaches sandbox code with its own properties intact. If an embedder exposes a host-realm Promise to the sandbox (an async host function bridged via the sandbox option, or a NodeVM external module's async method) and that Promise rejects with an Error carrying a non-primitive own property referencing a host object (for example err.detail = process), untrusted code in the sandbox obtains a fully functional proxy to that host object and can execute arbitrary commands with the privileges of the host process (e.g., e.detail.mainModule.require('child_process').execSync(...)). The direct p.then(undefined, cb), bind, and Reflect.apply forms are correctly sanitised. Fixed in vm2 3.11.7.

## Remediation

Refer to the linked advisories for vendor-supplied fixes and affected version ranges.
