<?xml version="1.0" encoding="utf-8" standalone="yes"?><rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:content="http://purl.org/rss/1.0/modules/content/"><channel><title>Node.js — CraftedSignal Threat Feed</title><link>https://feed.craftedsignal.io/vendors/node.js/</link><description>Trending threats, MITRE ATT&amp;CK coverage, and detection metadata. Fed continuously.</description><generator>Hugo</generator><language>en</language><managingEditor>hello@craftedsignal.io</managingEditor><webMaster>hello@craftedsignal.io</webMaster><lastBuildDate>Sun, 31 May 2026 07:41:19 +0000</lastBuildDate><atom:link href="https://feed.craftedsignal.io/vendors/node.js/feed.xml" rel="self" type="application/rss+xml"/><item><title>Node.js Permission Model Bypass via Unix Domain Sockets (CVE-2026-21711)</title><link>https://feed.craftedsignal.io/briefs/2026-05-nodejs-uds-bypass/</link><pubDate>Sun, 31 May 2026 07:41:19 +0000</pubDate><author>hello@craftedsignal.io</author><guid isPermaLink="true">https://feed.craftedsignal.io/briefs/2026-05-nodejs-uds-bypass/</guid><description>CVE-2026-21711 allows code running under the Node.js permission model without network access to create and expose local IPC endpoints via Unix Domain Sockets, bypassing intended network restrictions and enabling inter-process communication.</description><content:encoded><![CDATA[<p>CVE-2026-21711 is a vulnerability in Node.js version 25.x related to the experimental permission model. Specifically, it involves a bypass of network restrictions when using Unix Domain Sockets (UDS). The vulnerability occurs because the permission model&rsquo;s network enforcement mechanisms do not properly apply to UDS server operations. This means that code running with the <code>--permission</code> flag, but specifically without <code>--allow-net</code> (intended to restrict network access), can still create and expose local Inter-Process Communication (IPC) endpoints through UDS. This enables unauthorized communication with other processes on the same host, effectively circumventing the intended network isolation. This flaw is significant for environments relying on the Node.js permission model to isolate applications and prevent them from accessing network resources.</p>
<h2 id="attack-chain">Attack Chain</h2>
<ol>
<li>An attacker deploys a Node.js application using Node.js 25.x with the <code>--permission</code> flag and intentionally omits the <code>--allow-net</code> flag to restrict network access.</li>
<li>The application leverages the <code>net</code> module or a similar mechanism to create a Unix Domain Socket server. This operation should, in theory, be blocked by the permission model due to the missing <code>--allow-net</code> flag, but due to the vulnerability, the UDS server is created successfully.</li>
<li>The attacker specifies a path for the UDS that allows other processes on the system to connect to it.</li>
<li>A separate, possibly malicious, process on the same host connects to the created UDS. This process could be under the attacker&rsquo;s control or a compromised service.</li>
<li>The attacker&rsquo;s application and the connecting process establish a communication channel over the UDS.</li>
<li>The attacker uses this channel to send commands, data, or other instructions between the two processes, bypassing the intended network restrictions.</li>
<li>The receiving process executes the commands or processes the data received, potentially leading to privilege escalation, data leakage, or other malicious activities.</li>
<li>The attacker achieves their objective, such as gaining unauthorized access to system resources or compromising the integrity of the receiving process.</li>
</ol>
<h2 id="impact">Impact</h2>
<p>Successful exploitation of CVE-2026-21711 can lead to a bypass of intended network isolation in Node.js applications. This may allow unauthorized processes to communicate with and potentially control isolated applications, leading to privilege escalation, data leakage, or other forms of compromise. The vulnerability affects Node.js 25.x processes utilizing the permission model. The number of affected installations is unknown, but the impact is potentially significant for environments relying on the permission model to restrict network access and isolate applications.</p>
<h2 id="recommendation">Recommendation</h2>
<ul>
<li>Upgrade to a patched version of Node.js that addresses CVE-2026-21711 once available.</li>
<li>Deploy the Sigma rules provided below to detect potential exploitation attempts within your environment, focusing on process creation events when the <code>--permission</code> flag is enabled.</li>
<li>Monitor Node.js processes for suspicious UDS creation and connection activity using the <code>network_connection</code> log source.</li>
<li>Review and harden the permission configurations of Node.js applications to prevent unintended access to sensitive resources.</li>
</ul>
]]></content:encoded><category domain="severity">medium</category><category domain="type">advisory</category><category>nodejs</category><category>permission model</category><category>uds</category><category>unix domain socket</category><category>ipc</category><category>cve-2026-21711</category></item></channel></rss>