<?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/" xmlns:webfeeds="http://webfeeds.org/rss/1.0"><channel><title>N-Central - CraftedSignal Threat Feed</title><link>https://feed.craftedsignal.io/products/n-central/</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>Wed, 12 Aug 2026 05:48:02 +0000</lastBuildDate><atom:link href="https://feed.craftedsignal.io/products/n-central/feed.xml" rel="self" type="application/rss+xml"/><image><url>https://feed.craftedsignal.io/favicon-32x32.png</url><title>CraftedSignal Threat Feed</title><link>https://feed.craftedsignal.io/</link><width>32</width><height>32</height></image><webfeeds:icon>https://feed.craftedsignal.io/favicon.svg</webfeeds:icon><item><title>Exploitation of N-able N-central via CVE-2024-27429</title><link>https://feed.craftedsignal.io/briefs/2026-08-nable-ncentral-exploitation/</link><pubDate>Wed, 12 Aug 2026 05:48:02 +0000</pubDate><author>hello@craftedsignal.io</author><guid isPermaLink="true">https://feed.craftedsignal.io/briefs/2026-08-nable-ncentral-exploitation/</guid><description>Threat actors are exploiting a remote code execution vulnerability (CVE-2024-27429) in N-able N-central to gain unauthorized access and deploy RMM payloads on managed systems.</description><content:encoded><![CDATA[<p>Sophos has identified an ongoing campaign involving the exploitation of a remote code execution (RCE) vulnerability, tracked as CVE-2024-27429, within N-able N-central servers. Attackers are successfully leveraging this vulnerability to gain unauthorized administrative access to the N-central instance. Once the management server is compromised, the threat actors utilize the platform's native Remote Monitoring and Management (RMM) capabilities to push malicious payloads and administrative tools to downstream managed endpoints. This allows the attackers to maintain persistence, conduct further reconnaissance, and establish command-and-control across the target environment. The impact of this activity is significant, as it grants attackers broad control over an organization's entire IT infrastructure managed by the compromised N-central server.</p>
<h2 id="attack-chain">Attack Chain</h2>
<ol>
<li>Attacker identifies an internet-facing N-able N-central server vulnerable to CVE-2024-27429.</li>
<li>Attacker sends a crafted exploit request to the target server to execute arbitrary code.</li>
<li>The N-central server process executes the malicious payload with administrative privileges.</li>
<li>Attacker leverages the compromised N-central administrative console to distribute RMM agent updates or custom scripts.</li>
<li>Managed endpoints receive and execute the malicious payloads pushed by the N-central server.</li>
<li>Malware establishes a persistent connection to attacker-controlled C2 infrastructure.</li>
<li>Attacker performs lateral movement and exfiltration within the compromised network.</li>
</ol>
<h2 id="impact">Impact</h2>
<p>The exploitation of N-able N-central allows attackers to bypass traditional per-endpoint defenses by using a trusted administrative tool to deploy malware. This campaign directly impacts IT service providers and organizations using N-central for management, granting attackers the ability to compromise an entire fleet of managed endpoints simultaneously. Successful access can lead to total system compromise, data theft, and the deployment of additional ransomware or secondary payloads.</p>
<h2 id="recommendation">Recommendation</h2>
<ul>
<li>Patch N-able N-central servers immediately to address CVE-2024-27429.</li>
<li>Review N-central administrative logs for unauthorized account creation or atypical script deployment tasks.</li>
<li>Monitor for unexpected processes spawned by the N-central agent service on managed endpoints.</li>
<li>Audit all active administrative sessions within the N-central management console for anomalies.</li>
</ul>
]]></content:encoded><category domain="severity">high</category><category domain="type">advisory</category><category>remote-code-execution</category><category>rmm</category><category>supply-chain</category></item><item><title>IBM Langflow OSS Unauthenticated Remote Code Execution via Chained API Endpoints (CVE-2026-9198)</title><link>https://feed.craftedsignal.io/briefs/2026-07-ibm-langflow-oss-rce/</link><pubDate>Fri, 17 Jul 2026 18:18:35 +0000</pubDate><author>hello@craftedsignal.io</author><guid isPermaLink="true">https://feed.craftedsignal.io/briefs/2026-07-ibm-langflow-oss-rce/</guid><description>Unauthenticated attackers can achieve Remote Code Execution (RCE) on default IBM Langflow OSS deployments, versions 1.0.0 through 1.10.0, by chaining access to the `/api/v1/auto_login` endpoint, which mints SUPERUSER tokens, with the `/api/v1/validate/code` endpoint, which executes user-supplied code via `exec()`.</description><content:encoded><![CDATA[<p>IBM Langflow OSS, an open-source framework for building and deploying AI/LLM applications, contains a critical vulnerability (CVE-2026-9198) affecting versions 1.0.0 through 1.10.0. This flaw allows unauthenticated attackers to achieve full Remote Code Execution (RCE) on default installations. The exploitation involves a two-step chaining process: first, an attacker leverages the <code>/api/v1/auto_login</code> endpoint to obtain SUPERUSER tokens without authentication; second, these tokens are then used to invoke the <code>/api/v1/validate/code</code> endpoint, which insecurely executes arbitrary user-provided code using Python's <code>exec()</code> function. This vulnerability bypasses authentication, granting an attacker complete control over the compromised Langflow instance and its underlying system, posing a severe risk to data integrity, confidentiality, and system availability.</p>
<h2 id="attack-chain">Attack Chain</h2>
<ol>
<li><strong>Reconnaissance:</strong> An attacker identifies an internet-facing IBM Langflow OSS instance vulnerable to CVE-2026-9198.</li>
<li><strong>Unauthenticated Token Minting:</strong> The attacker sends an unauthenticated HTTP request to the <code>/api/v1/auto_login</code> endpoint on the vulnerable Langflow server.</li>
<li><strong>SUPERUSER Token Acquisition:</strong> Due to the vulnerability, the Langflow server issues a SUPERUSER authentication token to the unauthenticated attacker.</li>
<li><strong>Malicious Code Crafting:</strong> The attacker prepares a malicious Python code payload designed to execute arbitrary commands on the target system.</li>
<li><strong>Authenticated Code Execution Request:</strong> Using the newly acquired SUPERUSER token for authentication, the attacker sends an HTTP POST request to the <code>/api/v1/validate/code</code> endpoint. The malicious Python code payload is embedded within this request, likely in the request body or specific query parameters.</li>
<li><strong>Code Injection and Execution:</strong> The <code>/api/v1/validate/code</code> endpoint, lacking proper input validation and sanitization, directly executes the provided Python code using the <code>exec()</code> function.</li>
<li><strong>Remote Code Execution:</strong> The attacker's arbitrary commands are executed on the underlying operating system, resulting in full Remote Code Execution (RCE).</li>
<li><strong>Post-Exploitation:</strong> The attacker gains complete control over the Langflow server, potentially leading to data exfiltration, system compromise, or further lateral movement within the victim's network.</li>
</ol>
<h2 id="impact">Impact</h2>
<p>Successful exploitation of CVE-2026-9198 leads to immediate and complete compromise of the affected IBM Langflow OSS instance. This allows unauthenticated attackers to execute arbitrary code on the server, granting them full control over the system. The impact includes severe data breaches, disruption of services, and the ability for attackers to establish persistence or pivot to other systems within the network. Since Langflow instances can manage critical AI/LLM workflows and sensitive data, the compromise could expose proprietary models, training data, and intellectual property, leading to significant financial and reputational damage for affected organizations. The vulnerability affects all default deployments of Langflow OSS versions 1.0.0 through 1.10.0.</p>
<h2 id="recommendation">Recommendation</h2>
<ul>
<li><strong>Patch CVE-2026-9198:</strong> Immediately apply patches or upgrade IBM Langflow OSS to a version beyond 1.10.0 that addresses CVE-2026-9198. Refer to the IBM security advisory at <code>https://www.ibm.com/support/pages/node/7278927</code>.</li>
<li><strong>Deploy the Sigma rule:</strong> Deploy the provided Sigma rule <code>Detects CVE-2026-9198 Exploitation - Langflow OSS RCE Attempt</code> to your SIEM and tune for your environment to detect suspicious activity related to the <code>/api/v1/validate/code</code> endpoint.</li>
<li><strong>Enable webserver logging:</strong> Ensure comprehensive webserver logging is enabled, capturing <code>cs-uri-stem</code>, <code>cs-uri-query</code>, <code>cs-method</code>, and ideally, relevant portions of POST request bodies, to activate and enhance the effectiveness of the detection rule.</li>
</ul>
]]></content:encoded><category domain="severity">critical</category><category domain="type">advisory</category><category>remote-code-execution</category><category>api-exploitation</category><category>unauthenticated-access</category><category>code-injection</category><category>web-vulnerability</category><category>ai-llm</category></item></channel></rss>