<?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>Rclone — CraftedSignal Threat Feed</title><link>https://feed.craftedsignal.io/products/rclone/</link><description>Trending threats, MITRE ATT&amp;CK coverage, and detection metadata — refreshed continuously.</description><generator>Hugo</generator><language>en</language><managingEditor>hello@craftedsignal.io</managingEditor><webMaster>hello@craftedsignal.io</webMaster><lastBuildDate>Sat, 25 Apr 2026 12:00:00 +0000</lastBuildDate><atom:link href="https://feed.craftedsignal.io/products/rclone/feed.xml" rel="self" type="application/rss+xml"/><item><title>Rclone Unauthenticated Remote Code Execution Vulnerabilities</title><link>https://feed.craftedsignal.io/briefs/2026-04-rclone-rce/</link><pubDate>Sat, 25 Apr 2026 12:00:00 +0000</pubDate><author>hello@craftedsignal.io</author><guid isPermaLink="true">https://feed.craftedsignal.io/briefs/2026-04-rclone-rce/</guid><description>Rclone versions prior to 1.73.5 are vulnerable to two critical unauthenticated remote code execution vulnerabilities (CVE-2026-41176 and CVE-2026-41179) when the remote control API is enabled without authentication, potentially allowing attackers to execute arbitrary commands and compromise the system.</description><content:encoded><![CDATA[<p>Two critical unauthenticated remote code execution vulnerabilities, CVE-2026-41176 and CVE-2026-41179, have been discovered in Rclone versions prior to 1.73.5. Rclone is a command-line program used to manage files on cloud storage services. These vulnerabilities can be exploited if the Rclone remote control (RC) API is enabled without proper authentication (e.g., <code>--rc-user/--rc-pass/--rc-htpasswd</code>). An attacker with network access to a vulnerable Rclone instance can bypass authentication, execute arbitrary commands, and potentially gain full system compromise. As organizations increasingly rely on cloud storage, vulnerabilities in tools like Rclone can have significant impact by enabling data theft and lateral movement. The vulnerabilities were reported on April 24, 2026, with no known active exploitation as of April 23, 2026.</p>
<h2 id="attack-chain">Attack Chain</h2>
<ol>
<li>The attacker identifies a target system running Rclone with the RC API enabled.</li>
<li>The attacker verifies the RC API is exposed on a reachable network address (e.g., not only localhost) and is not protected by HTTP authentication.</li>
<li>For CVE-2026-41179, the attacker sends a single crafted HTTP request to the RC endpoint, leveraging the WebDAV backend initialization process.</li>
<li>This crafted request triggers the execution of arbitrary commands on the target system without authentication.</li>
<li>For CVE-2026-41176, the attacker bypasses authentication controls to access sensitive administrative functionality.</li>
<li>The attacker manipulates Rclone configuration or invokes operational RC methods to execute arbitrary commands.</li>
<li>The attacker gains local file read/write access, potentially stealing sensitive data or uploading malicious payloads.</li>
<li>The attacker achieves full system compromise, enabling data theft, lateral movement within the network, or denial of service.</li>
</ol>
<h2 id="impact">Impact</h2>
<p>Successful exploitation of CVE-2026-41176 and CVE-2026-41179 can lead to full system compromise, data theft, lateral movement, or denial of service. Specifically, attackers can achieve local file read, file write, or shell access, depending on the environment. The impact includes potential exposure of sensitive cloud data and configurations, which could compromise the integrity and confidentiality of stored information. Given Rclone&rsquo;s popularity among organizations managing cloud storage, a successful attack could affect a large number of victims across various sectors.</p>
<h2 id="recommendation">Recommendation</h2>
<ul>
<li>Upgrade Rclone to version 1.73.5 or later to patch CVE-2026-41176 and CVE-2026-41179 as recommended by the vendor.</li>
<li>Enable global HTTP authentication on RC servers using <code>--rc-user</code>, <code>--rc-pass</code>, or <code>--rc-htpasswd</code> to mitigate the unauthenticated access, as mentioned in the description of the vulnerabilities.</li>
<li>Implement network-level controls (e.g., firewall rules) to restrict access to RC server endpoints and the RC service, as suggested by CCB.</li>
<li>Deploy the Sigma rule &ldquo;Detect Rclone RC API Access Without Authentication&rdquo; to identify potentially vulnerable Rclone instances within your environment.</li>
</ul>
]]></content:encoded><category domain="severity">critical</category><category domain="type">threat</category><category>vulnerability</category><category>rce</category><category>cloud</category></item><item><title>Rclone Unauthenticated options/set Allows Runtime Auth Bypass</title><link>https://feed.craftedsignal.io/briefs/2026-04-rclone-auth-bypass/</link><pubDate>Thu, 23 Apr 2026 12:00:00 +0000</pubDate><author>hello@craftedsignal.io</author><guid isPermaLink="true">https://feed.craftedsignal.io/briefs/2026-04-rclone-auth-bypass/</guid><description>Rclone is vulnerable to an unauthenticated options/set vulnerability that allows runtime authentication bypass, potentially leading to sensitive operations and command execution by setting `rc.NoAuth=true` on reachable RC servers started without global HTTP authentication.</description><content:encoded><![CDATA[<p>Rclone, a command-line program to manage files on cloud storage, is vulnerable to an authentication bypass via its remote control (RC) API. The vulnerability, present from version 1.45 onwards, stems from the <code>options/set</code> endpoint being exposed without authentication requirements, while still being able to modify the global runtime configuration.  An unauthenticated attacker can exploit this vulnerability by setting the <code>rc.NoAuth</code> parameter to <code>true</code>, effectively disabling the authentication gate for numerous RC methods registered with <code>AuthRequired: true</code>. This allows unauthorized access to sensitive administrative functionality, including configuration settings and operational commands. The issue was validated against <code>v1.73.4</code> and the current <code>master</code> branch as of April 14, 2026. This vulnerability is especially critical when the RC API is exposed without global HTTP authentication (i.e. <code>--rc-user</code>/<code>--rc-pass</code> are not set), as it allows complete control of the Rclone instance.</p>
<h2 id="attack-chain">Attack Chain</h2>
<ol>
<li>An attacker identifies a vulnerable Rclone instance with the RC API enabled (via <code>--rc</code> or <code>rclone rcd</code>) that is reachable on the network. The attacker confirms that the RC API is not protected by global HTTP authentication (no <code>--rc-user</code>, <code>--rc-pass</code>, or <code>--rc-htpasswd</code> flags).</li>
<li>The attacker sends an unauthenticated POST request to the <code>/options/set</code> endpoint with a JSON payload setting <code>rc.NoAuth</code> to <code>true</code>: <code>{&quot;rc&quot;:{&quot;NoAuth&quot;:true}}</code>.</li>
<li>The Rclone RC server processes the request and updates the runtime configuration, disabling the authentication requirement for subsequent RC calls.</li>
<li>The attacker leverages the now-unprotected RC API to access sensitive configuration data using endpoints like <code>/config/listremotes</code>, <code>/config/dump</code>, or <code>/config/get</code>.</li>
<li>The attacker can list the available filesystems and remote configurations.</li>
<li>The attacker then uses operational endpoints such as <code>/operations/list</code> to list files and directories within a configured remote.</li>
<li>The attacker exploits the <code>/operations/copyfile</code> endpoint to copy files from one location to another, potentially exfiltrating sensitive data or overwriting critical files.</li>
<li>Finally, the attacker uses the <code>/core/command</code> endpoint to execute arbitrary commands on the host system, achieving complete system compromise. This endpoint utilizes the <code>exec.Command(...)</code> function, allowing arbitrary command execution.</li>
</ol>
<h2 id="impact">Impact</h2>
<p>Successful exploitation of this vulnerability allows an unauthenticated attacker to bypass intended access controls on the Rclone RC administrative interface. The impact ranges from sensitive configuration disclosure and filesystem enumeration to arbitrary command execution on the host system. This could lead to complete system compromise, data exfiltration, or denial of service.  The vulnerability affects Rclone instances from version 1.45 up to (but not including) 1.73.5. The severity is amplified when the RC API is exposed to a wider network without proper authentication measures.</p>
<h2 id="recommendation">Recommendation</h2>
<ul>
<li>Upgrade Rclone to version 1.73.5 or later to patch CVE-2026-41176.</li>
<li>If upgrading is not immediately feasible, ensure that the Rclone RC API is protected by global HTTP authentication using the <code>--rc-user</code>, <code>--rc-pass</code>, or <code>--rc-htpasswd</code> flags.</li>
<li>Monitor network traffic for POST requests to the <code>/options/set</code> endpoint without authentication, indicative of exploitation attempts. Deploy the provided Sigma rule to detect this activity.</li>
<li>Review Rclone RC API access logs for unauthorized access to sensitive endpoints such as <code>/config/listremotes</code>, <code>/config/dump</code>, <code>/config/get</code>, <code>/operations/list</code>, <code>/operations/copyfile</code>, and <code>/core/command</code> after the <code>/options/set</code> endpoint has been accessed.</li>
</ul>
]]></content:encoded><category domain="severity">critical</category><category domain="type">advisory</category><category>rclone</category><category>auth-bypass</category><category>rc-api</category><category>CVE-2026-41176</category><category>command-execution</category></item></channel></rss>