Skip to content

Commit a76d920

Browse files
regenerate node.openvex.json (#1548)
* vex: regenerate node.openvex.json * vex: regenerate node.openvex.json --------- Co-authored-by: Create or Update Pull Request Action <create-or-update-pull-request@users.noreply.github.com>
1 parent f03c359 commit a76d920

File tree

1 file changed

+160
-2
lines changed

1 file changed

+160
-2
lines changed

tools/vex/node.openvex.json

Lines changed: 160 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
{
22
"@context": "https://openvex.dev/ns/v0.2.0",
3-
"@id": "https://openvex.dev/docs/public/vex-dfe6d961b80c91a37fa908f5ead24a4fbaba4f87f05d70a82c0b5e6b8ae8d412",
3+
"@id": "https://openvex.dev/docs/public/vex-7953d0e81f695cb49f5eeff99804ee3fdbe0c578a007925fd8714345768ef8a1",
44
"author": "Node.js Security WG",
55
"role": "Project",
6-
"timestamp": "2025-11-22T07:19:44.551255Z",
6+
"timestamp": "2026-01-27T12:41:55.49708019Z",
77
"version": 1,
88
"statements": [
99
{
@@ -2916,6 +2916,129 @@
29162916
],
29172917
"status": "fixed"
29182918
},
2919+
{
2920+
"vulnerability": {
2921+
"@id": "https://www.cve.org/CVERecord?id=CVE-2025-55130",
2922+
"name": "CVE-2025-55130",
2923+
"description": "A flaw in Node.js’s Permissions model allows attackers to bypass `--allow-fs-read` and `--allow-fs-write` restrictions using crafted relative symlink paths. By chaining directories and symlinks, a script granted access only to the current directory can escape the allowed path and read sensitive files. This breaks the expected isolation guarantees and enables arbitrary file read/write, leading to potential system compromise.\nThis vulnerability affects users of the permission model on Node.js v20, v22, v24, and v25."
2924+
},
2925+
"products": [
2926+
{
2927+
"@id": "pkg:nodejs/node@v20.20.0"
2928+
},
2929+
{
2930+
"@id": "pkg:nodejs/node@v22.22.0"
2931+
},
2932+
{
2933+
"@id": "pkg:nodejs/node@v24.13.0"
2934+
},
2935+
{
2936+
"@id": "pkg:nodejs/node@v25.3.0"
2937+
}
2938+
],
2939+
"status": "fixed"
2940+
},
2941+
{
2942+
"vulnerability": {
2943+
"@id": "https://www.cve.org/CVERecord?id=CVE-2025-55131",
2944+
"name": "CVE-2025-55131",
2945+
"description": "A flaw in Node.js's buffer allocation logic can expose uninitialized memory when allocations are interrupted, when using the `vm` module with the timeout option. Under specific timing conditions, buffers allocated with `Buffer.alloc` and other `TypedArray` instances like `Uint8Array` may contain leftover data from previous operations, allowing in-process secrets like tokens or passwords to leak or causing data corruption. While exploitation typically requires precise timing or in-process code execution, it can become remotely exploitable when untrusted input influences workload and timeouts, leading to potential confidentiality and integrity impact."
2946+
},
2947+
"products": [
2948+
{
2949+
"@id": "pkg:nodejs/node@v20.20.0"
2950+
},
2951+
{
2952+
"@id": "pkg:nodejs/node@v22.22.0"
2953+
},
2954+
{
2955+
"@id": "pkg:nodejs/node@v24.13.0"
2956+
},
2957+
{
2958+
"@id": "pkg:nodejs/node@v25.3.0"
2959+
}
2960+
],
2961+
"status": "fixed"
2962+
},
2963+
{
2964+
"vulnerability": {
2965+
"@id": "https://www.cve.org/CVERecord?id=CVE-2025-55132",
2966+
"name": "CVE-2025-55132",
2967+
"description": "A flaw in Node.js's permission model allows a file's access and modification timestamps to be changed via `futimes()` even when the process has only read permissions. Unlike `utimes()`, `futimes()` does not apply the expected write-permission checks, which means file metadata can be modified in read-only directories. This behavior could be used to alter timestamps in ways that obscure activity, reducing the reliability of logs. This vulnerability affects users of the permission model on Node.js v20, v22, v24, and v25."
2968+
},
2969+
"products": [
2970+
{
2971+
"@id": "pkg:nodejs/node@v20.20.0"
2972+
},
2973+
{
2974+
"@id": "pkg:nodejs/node@v22.22.0"
2975+
},
2976+
{
2977+
"@id": "pkg:nodejs/node@v24.13.0"
2978+
},
2979+
{
2980+
"@id": "pkg:nodejs/node@v25.3.0"
2981+
}
2982+
],
2983+
"status": "fixed"
2984+
},
2985+
{
2986+
"vulnerability": {
2987+
"@id": "https://www.cve.org/CVERecord?id=CVE-2025-59464",
2988+
"name": "CVE-2025-59464",
2989+
"description": "A memory leak in Node.js’s OpenSSL integration occurs when converting `X.509` certificate fields to UTF-8 without freeing the allocated buffer. When applications call `socket.getPeerCertificate(true)`, each certificate field leaks memory, allowing remote clients to trigger steady memory growth through repeated TLS connections. Over time this can lead to resource exhaustion and denial of service."
2990+
},
2991+
"products": [
2992+
{
2993+
"@id": "pkg:nodejs/node@v24.12.0"
2994+
}
2995+
],
2996+
"status": "fixed"
2997+
},
2998+
{
2999+
"vulnerability": {
3000+
"@id": "https://www.cve.org/CVERecord?id=CVE-2025-59465",
3001+
"name": "CVE-2025-59465",
3002+
"description": "A malformed `HTTP/2 HEADERS` frame with oversized, invalid `HPACK` data can cause Node.js to crash by triggering an unhandled `TLSSocket` error `ECONNRESET`. Instead of safely closing the connection, the process crashes, enabling a remote denial of service. This primarily affects applications that do not attach explicit error handlers to secure sockets, for example:\n```\nserver.on('secureConnection', socket =\u003e {\n socket.on('error', err =\u003e {\n console.log(err)\n })\n})\n```"
3003+
},
3004+
"products": [
3005+
{
3006+
"@id": "pkg:nodejs/node@v20.20.0"
3007+
},
3008+
{
3009+
"@id": "pkg:nodejs/node@v22.22.0"
3010+
},
3011+
{
3012+
"@id": "pkg:nodejs/node@v24.13.0"
3013+
},
3014+
{
3015+
"@id": "pkg:nodejs/node@v25.3.0"
3016+
}
3017+
],
3018+
"status": "fixed"
3019+
},
3020+
{
3021+
"vulnerability": {
3022+
"@id": "https://www.cve.org/CVERecord?id=CVE-2025-59466",
3023+
"name": "CVE-2025-59466",
3024+
"description": "We have identified a bug in Node.js error handling where \"Maximum call stack size exceeded\" errors become uncatchable when `async_hooks.createHook()` is enabled. Instead of reaching `process.on('uncaughtException')`, the process terminates, making the crash unrecoverable. Applications that rely on `AsyncLocalStorage` (v22, v20) or `async_hooks.createHook()` (v24, v22, v20) become vulnerable to denial-of-service crashes triggered by deep recursion under specific conditions."
3025+
},
3026+
"products": [
3027+
{
3028+
"@id": "pkg:nodejs/node@v20.20.0"
3029+
},
3030+
{
3031+
"@id": "pkg:nodejs/node@v22.22.0"
3032+
},
3033+
{
3034+
"@id": "pkg:nodejs/node@v24.13.0"
3035+
},
3036+
{
3037+
"@id": "pkg:nodejs/node@v25.3.0"
3038+
}
3039+
],
3040+
"status": "fixed"
3041+
},
29193042
{
29203043
"vulnerability": {
29213044
"@id": "https://www.cve.org/CVERecord?id=CVE-2025-9230",
@@ -2960,6 +3083,41 @@
29603083
"status": "not_affected",
29613084
"justification": "vulnerable_code_not_in_execute_path",
29623085
"impact_statement": "These OpenSSL vulnerabilities do not affect Node.js. Node.js's usage of OpenSSL does not trigger the vulnerable code paths."
3086+
},
3087+
{
3088+
"vulnerability": {
3089+
"@id": "https://www.cve.org/CVERecord?id=CVE-2026-21636",
3090+
"name": "CVE-2026-21636",
3091+
"description": "A flaw in Node.js's permission model allows Unix Domain Socket (UDS) connections to bypass network restrictions when `--permission` is enabled. Even without `--allow-net`, attacker-controlled inputs (such as URLs or socketPath options) can connect to arbitrary local sockets via net, tls, or undici/fetch. This breaks the intended security boundary of the permission model and enables access to privileged local services, potentially leading to privilege escalation, data exposure, or local code execution.\n\n* The issue affects users of the Node.js permission model on version v25.\n\nIn the moment of this vulnerability, network permissions (`--allow-net`) are still in the experimental phase.\n"
3092+
},
3093+
"products": [
3094+
{
3095+
"@id": "pkg:nodejs/node@v25.3.0"
3096+
}
3097+
],
3098+
"status": "fixed"
3099+
},
3100+
{
3101+
"vulnerability": {
3102+
"@id": "https://www.cve.org/CVERecord?id=CVE-2026-21637",
3103+
"name": "CVE-2026-21637",
3104+
"description": "A flaw in Node.js TLS error handling allows remote attackers to crash or exhaust resources of a TLS server when `pskCallback` or `ALPNCallback` are in use. Synchronous exceptions thrown during these callbacks bypass standard TLS error handling paths (tlsClientError and error), causing either immediate process termination or silent file descriptor leaks that eventually lead to denial of service. Because these callbacks process attacker-controlled input during the TLS handshake, a remote client can repeatedly trigger the issue. This vulnerability affects TLS servers using PSK or ALPN callbacks across Node.js versions where these callbacks throw without being safely wrapped."
3105+
},
3106+
"products": [
3107+
{
3108+
"@id": "pkg:nodejs/node@v20.20.0"
3109+
},
3110+
{
3111+
"@id": "pkg:nodejs/node@v22.22.0"
3112+
},
3113+
{
3114+
"@id": "pkg:nodejs/node@v24.13.0"
3115+
},
3116+
{
3117+
"@id": "pkg:nodejs/node@v25.3.0"
3118+
}
3119+
],
3120+
"status": "fixed"
29633121
}
29643122
]
29653123
}

0 commit comments

Comments
 (0)