CVE-2026-47140:
JavaScript 취약성 분석 및 완화
개요
CVE-2026-47140 is a critical sandbox escape vulnerability in the vm2 Node.js sandboxing library, classified as a NodeVM builtin denylist bypass that allows host code execution. It affects vm2 versions up to and including 3.11.3 (npm package vm2 by patriksimek). The vulnerability was first published by the maintainer on May 18, 2026, added to the GitHub Advisory Database on May 29, 2026, and published by NVD on June 12, 2026. It carries a CVSS v3.1 base score of 10.0 (Critical) (GitHub Advisory, Red Hat Bugzilla).
기술적 세부 사항
The root cause is an incomplete denylist (CWE-693: Protection Mechanism Failure; CWE-184: Incomplete List of Disallowed Inputs) in lib/builtin.js, where the DANGEROUS_BUILTINS set omits process and the subpath module inspector/promises. Because non-denied builtins are exposed to the sandbox via builtins.set(key, special ? special : vm => vm.readonly(hostRequire(key))), sandboxed code can exploit two distinct bypass paths: (1) require('process').getBuiltinModule('child_process') — available in Node.js 22+ — reloads any core module regardless of the embedder's allow/deny configuration, and (2) require('inspector/promises').Session().post('Runtime.evaluate', ...) evaluates arbitrary JavaScript directly in the host process realm. The subpath form inspector/promises does not match the exact-string inspector denylist entry, allowing it to slip through. A PoC was included in the advisory and tested on vm2 3.11.2 with Node.js v25.9.0 (GitHub Advisory, Patch Commit).
영향
Successful exploitation allows an attacker who can execute untrusted JavaScript inside a NodeVM instance to fully escape the sandbox and execute arbitrary code in the host Node.js process. This results in complete compromise of confidentiality (reading files, environment secrets), integrity (writing files, modifying host state), and availability (spawning or killing processes). The scope change (S:C in CVSS) reflects that the impact extends beyond the sandbox boundary to the host process and any resources it can access, enabling lateral movement within the host environment (GitHub Advisory).
착취 단계
- Identify target: Locate a Node.js application using vm2 versions ≤ 3.11.3 with
NodeVMconfigured to allow builtins viarequire.builtin: ['*'],['*', '-child_process'], or any list that does not explicitly blockprocessorinspector/promises. - Craft malicious sandbox payload (process path): Submit JavaScript code to the vm2 sandbox that calls
require('process').getBuiltinModule('child_process')to obtain a reference to the host'schild_processmodule, bypassing the sandbox's exclusion list. - Execute host command via child_process: Use the obtained reference to call
cp.execFileSync('/bin/sh', ['-c', 'id'])or equivalent, spawning a child process in the host environment and achieving remote code execution. - Alternative path (inspector/promises): Submit sandbox code that calls
const { Session } = require('inspector/promises'); const s = new Session(); s.connect(); s.post('Runtime.evaluate', { expression: '/* arbitrary host JS */' });to evaluate arbitrary JavaScript directly in the host process realm. - Post-exploitation: With host process access, read sensitive files (e.g., environment variables, credentials), write backdoors, exfiltrate data, or pivot to other systems accessible from the host (GitHub Advisory, Patch Commit).
타협의 징후
- Process: Unexpected child processes (e.g.,
/bin/sh,bash,curl,wget) spawned by the Node.js process running vm2; calls toexecFileSync,execSync, orspawnoriginating from sandboxed code execution context. - Logs: Application logs showing
require('process')orrequire('inspector/promises')calls from within sandboxed code; Node.js inspector protocolRuntime.evaluateevents in debug/trace logs. - Network: Outbound connections from the Node.js server process to unexpected external hosts following sandbox code execution, potentially indicating reverse shell or data exfiltration activity.
- File System: New or modified files in the application directory or system paths created by the Node.js process user; unexpected cron jobs, SSH keys, or scripts written by the application process account.
- Environment: Access to
process.envcontents (e.g., API keys, database credentials) from sandboxed code, observable via audit logging if enabled (GitHub Advisory).
완화 및 해결 방법
Upgrade vm2 to version 3.11.4, which adds process to the DANGEROUS_BUILTINS set and introduces a family-prefix matching function (isDangerousBuiltin(key)) that blocks all subpath variants (e.g., inspector/promises, node:process) at both the BUILTIN_MODULES wildcard expansion path and the addDefaultBuiltin explicit-allowlist path (vm2 Release, Patch Commit). As an interim workaround for applications that cannot immediately upgrade, avoid using builtin: ['*'] or any configuration that does not explicitly deny process and inspector/promises; instead, use a minimal allowlist of only the specific builtins required. Note that this vulnerability is not reachable in the default NodeVM configuration where require is disabled entirely.
커뮤니티 반응
Heise Online covered the vulnerability as part of a broader report on four critical (CVSS 10.0) security gaps closed in vm2, noting the significance of maximum-severity sandbox escapes in a widely used Node.js library (Heise Online). Security news outlet SecurityOnline.info also published coverage specifically highlighting the vm2 sandbox escape and its RCE implications (SecurityOnline). BeyondMachines summarized the issue as part of critical sandbox escape coverage (BeyondMachines). Red Hat opened a tracking bug and assigned medium priority for their product lines (Red Hat Bugzilla).
추가 자료
- GitHub Advisory — Official GitHub Security Advisory (GHSA-rp36-8xq3-r6c4) with full technical details and PoC
- Patch Commit — Fix commit in vm2 repository with detailed explanation of structural changes
- vm2 Release — v3.11.4 release notes covering all ten advisories closed in this patch
- Red Hat Bugzilla — Red Hat tracking bug for CVE-2026-47140
- Red Hat CVE — Red Hat Security Advisory page
- Heise Online — Media coverage of critical vm2 vulnerabilities
- SecurityOnline — Technical summary of vm2 sandbox escape and RCE impact
근원: 이 보고서는 AI를 사용하여 생성되었습니다.
관련 JavaScript 취약점:
무료 취약성 평가
클라우드 보안 태세를 벤치마킹합니다
9개의 보안 도메인에서 클라우드 보안 관행을 평가하여 위험 수준을 벤치마킹하고 방어의 허점을 식별합니다.
추가 Wiz 리소스
맞춤형 데모 받기
맞춤형 데모 신청하기
"내가 본 최고의 사용자 경험은 클라우드 워크로드에 대한 완전한 가시성을 제공합니다."
"Wiz는 클라우드 환경에서 무슨 일이 일어나고 있는지 볼 수 있는 단일 창을 제공합니다."
"우리는 Wiz가 무언가를 중요한 것으로 식별하면 실제로 중요하다는 것을 알고 있습니다."