<?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/tags/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>Mon, 04 May 2026 14:17:05 +0000</lastBuildDate><atom:link href="https://feed.craftedsignal.io/tags/rclone/feed.xml" rel="self" type="application/rss+xml"/><item><title>Potential Data Exfiltration via Rclone</title><link>https://feed.craftedsignal.io/briefs/2026-05-rclone-exfiltration/</link><pubDate>Mon, 04 May 2026 14:17:05 +0000</pubDate><author>hello@craftedsignal.io</author><guid isPermaLink="true">https://feed.craftedsignal.io/briefs/2026-05-rclone-exfiltration/</guid><description>Attackers are abusing the legitimate file synchronization tool rclone, often renamed to masquerade as legitimate software, to exfiltrate data to cloud storage or remote endpoints.</description><content:encoded><![CDATA[<p>Attackers are leveraging Rclone, a legitimate command-line program to manage files on cloud storage, for malicious purposes. The primary abuse case involves renaming Rclone (e.g., to TrendFileSecurityCheck.exe) to evade detection based on process name. Once renamed, attackers use Rclone&rsquo;s copy/sync functionalities with cloud backends like S3 or HTTP endpoints. They often employ <code>--include</code> filters to target specific sensitive file types for exfiltration. This activity is frequently blended with regular administrative traffic to further obfuscate the malicious intent. Defenders should be aware of this tactic, particularly when unusual processes are observed interacting with cloud storage services.</p>
<h2 id="attack-chain">Attack Chain</h2>
<ol>
<li>The attacker gains initial access to the system through an undisclosed method.</li>
<li>Rclone is downloaded or transferred to the victim machine.</li>
<li>The rclone executable is renamed to a benign-sounding name (e.g., TrendFileSecurityCheck.exe) to masquerade as a legitimate system utility.</li>
<li>The attacker configures rclone to connect to a cloud storage backend (e.g., an S3 bucket or HTTP endpoint) controlled by the attacker.</li>
<li>A command is executed using the renamed rclone executable, specifying the <code>copy</code> or <code>sync</code> command.</li>
<li>The command includes <code>--include</code> flags to filter and select specific file types (e.g., documents, source code, databases) for exfiltration.</li>
<li>Rclone transfers the targeted files from the victim machine to the attacker&rsquo;s cloud storage backend, potentially using the <code>--transfers</code> option for faster exfiltration.</li>
<li>The attacker accesses the exfiltrated data from their cloud storage.</li>
</ol>
<h2 id="impact">Impact</h2>
<p>Successful exploitation can lead to the exfiltration of sensitive data, including proprietary information, customer data, financial records, or intellectual property. The impact can range from reputational damage and financial losses to legal and regulatory repercussions. The scope of damage depends on the sensitivity and volume of the exfiltrated data, the number of affected systems, and the effectiveness of the attacker&rsquo;s filtering criteria.</p>
<h2 id="recommendation">Recommendation</h2>
<ul>
<li>Deploy the Sigma rule <code>Suspicious Rclone Usage</code> to detect renamed rclone executables executing copy/sync commands.</li>
<li>Enable Sysmon process creation logging (Event ID 1) to collect the necessary process execution data for the Sigma rules.</li>
<li>Investigate any process identified by the Sigma rule <code>Suspicious Rclone Usage</code> by examining command-line arguments for cloud backend destinations and <code>--include</code> filters.</li>
<li>Monitor network connections for unusual outbound traffic to cloud storage providers (AWS S3, Azure Blob Storage, Google Cloud Storage) from processes other than approved backup solutions.</li>
<li>Implement application control policies to restrict the execution of unauthorized or renamed executables.</li>
</ul>
]]></content:encoded><category domain="severity">medium</category><category domain="type">advisory</category><category>data-exfiltration</category><category>rclone</category><category>masquerading</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>