<?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>Clickonce - CraftedSignal Threat Feed</title><link>https://feed.craftedsignal.io/tags/clickonce/</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, 21 Jun 2026 05:32:16 +0000</lastBuildDate><atom:link href="https://feed.craftedsignal.io/tags/clickonce/feed.xml" rel="self" type="application/rss+xml"/><item><title>New Abuse of ClickOnce Technology for Initial Access and Persistence</title><link>https://feed.craftedsignal.io/briefs/2026-06-clickonce-abuse/</link><pubDate>Sun, 21 Jun 2026 05:32:16 +0000</pubDate><author>hello@craftedsignal.io</author><guid isPermaLink="true">https://feed.craftedsignal.io/briefs/2026-06-clickonce-abuse/</guid><description>Threat actors are weaponizing Microsoft's ClickOnce technology to achieve initial access, execution, and persistence on target systems, leveraging its user-friendly deployment and update mechanisms to bypass traditional security defenses and maintain remote access without requiring administrative privileges, executing payloads within legitimate Microsoft process trees.</description><content:encoded><![CDATA[<p>Recent observations highlight a novel abuse of Microsoft's ClickOnce technology by threat actors, focusing on its features for initial access, execution, and persistence. This technique, reported by CrowdStrike in June 2026, exploits the inherent trust and minimal user interaction required for ClickOnce application deployment. Attackers leverage this to distribute malicious payloads, bypassing common security mechanisms like email filters that scrutinize <code>.exe</code> files but may overlook <code>.application</code> files. The method allows for the deployment of malware without requiring administrative privileges, broadening the scope of potential victims to standard user accounts. Furthermore, ClickOnce's built-in update mechanism is co-opted to maintain remote access, update C2 infrastructure, or facilitate lateral movement, all while masquerading within legitimate Microsoft processes such as <code>rundll32.exe</code> and <code>dfsvc.exe</code>, significantly enhancing stealth and defense evasion capabilities.</p>
<h2 id="attack-chain">Attack Chain</h2>
<ol>
<li><strong>Initial Access via User Interaction</strong>: Threat actors convince targets to click on a malicious link or open an <code>.application</code> file, often via misleading buttons or phishing campaigns, initiating a ClickOnce application deployment.</li>
<li><strong>Deployment of Malicious ClickOnce Application</strong>: The user interaction triggers the download and execution of a weaponized ClickOnce application, which contains or ultimately delivers the malicious payload.</li>
<li><strong>Execution within Legitimate Processes</strong>: The malicious payload is executed within the context of legitimate Microsoft processes, primarily <code>dfsvc.exe</code> (Deployment Services Client) or <code>rundll32.exe</code>, to evade detection.</li>
<li><strong>Persistence via <code>.appref-ms</code> file</strong>: A shortcut file with the <code>.appref-ms</code> extension is dropped in the user's Start Menu directory (<code>%Users%\AppData\Roaming\Microsoft\Windows\Start Menu\Programs\</code>) by the ClickOnce framework, ensuring the malicious application can be re-launched.</li>
<li><strong>Utilizing Built-in Update Mechanism</strong>: Once persisted, the attacker can push malicious updates to the application's deployment server. When the user next launches the application via the <code>.appref-ms</code> shortcut, the update mechanism fetches and executes the updated malicious payload without further user prompting.</li>
<li><strong>Remote Access and C2 Maintenance</strong>: The updated malicious application can establish persistent remote access, update its command and control (C2) infrastructure, or perform other post-exploitation activities like data exfiltration.</li>
<li><strong>Lateral Movement (Potential)</strong>: Through the maintained remote access and updated C2, attackers can initiate lateral movement within the compromised network.</li>
</ol>
<h2 id="impact">Impact</h2>
<p>Successful exploitation of ClickOnce technology allows attackers to gain persistent access to targeted systems, bypassing traditional security controls and executing payloads under the guise of legitimate Microsoft processes. This enables capabilities such as remote code execution, data exfiltration, and the establishment of long-term command and control. The lack of administrative privilege requirements means a wider range of user accounts are vulnerable. The ease of payload delivery, coupled with the ability to silently update malware, poses a significant risk for continued compromise and facilitates further malicious activities including ransomware deployment or corporate espionage across targeted organizations in various sectors.</p>
<h2 id="recommendation">Recommendation</h2>
<ul>
<li>Deploy the Sigma rules in this brief to your SIEM and tune for your environment to detect suspicious ClickOnce activity.</li>
<li>Enable Sysmon process-creation and file-event logging to activate the rules above.</li>
<li>Monitor for process creations where <code>dfsvc.exe</code> is the parent and the child process is not a known, legitimate application.</li>
<li>Educate users on the risks associated with clicking on links or opening <code>.application</code> files from untrusted sources, even if they appear to initiate a software installation.</li>
<li>Implement application whitelisting solutions to prevent the execution of unauthorized ClickOnce applications or executables launched by them.</li>
</ul>
]]></content:encoded><category domain="severity">high</category><category domain="type">threat</category><category>clickonce</category><category>windows</category><category>initial-access</category><category>persistence</category><category>defense-evasion</category><category>execution</category></item><item><title>Threat Actors Abuse Microsoft ClickOnce Update Mechanism for Persistent Malware Delivery</title><link>https://feed.craftedsignal.io/briefs/2026-06-clickonce-abuse-part2/</link><pubDate>Sun, 21 Jun 2026 05:21:58 +0000</pubDate><author>hello@craftedsignal.io</author><guid isPermaLink="true">https://feed.craftedsignal.io/briefs/2026-06-clickonce-abuse-part2/</guid><description>Threat actors are exploiting the legitimate update mechanism of Microsoft ClickOnce applications, particularly through `.appref-ms` files, to maintain persistence, bypass security controls, and deliver updated malicious payloads without requiring elevated privileges or user re-authorization on Windows systems.</description><content:encoded><![CDATA[<p>Threat actors are increasingly abusing Microsoft's ClickOnce deployment technology, particularly focusing on its update mechanism, to establish persistent malware presence and evade detection. This technique, highlighted by CrowdStrike in June 2026, leverages the user-friendly installation and built-in updating features of ClickOnce to bypass traditional defenses. Attackers lure users into installing seemingly harmless ClickOnce applications, which drop <code>.appref-ms</code> shortcut files in the Start Menu. Subsequently, the threat actors can push malicious updates to these applications from their controlled deployment servers. This allows for silent malware updates, C2 address changes, and lateral movement capabilities, all while operating within legitimate Microsoft processes like <code>dfsvc.exe</code> and <code>rundll32.exe</code>. This abuse takes advantage of a general lack of awareness around ClickOnce security, providing a stealthy and persistent vector on enterprise endpoints.</p>
<h2 id="attack-chain">Attack Chain</h2>
<ol>
<li><strong>Initial Access via Social Engineering:</strong> The attacker convinces a target user, often through phishing emails or malicious websites, to click a link or button that initiates a ClickOnce application download.</li>
<li><strong>Malicious ClickOnce Application Deployment:</strong> The user's interaction triggers the download and execution of a malicious <code>.application</code> file, initiating the ClickOnce deployment process.</li>
<li><strong>Execution via Legitimate Processes:</strong> The malicious payload executes within legitimate Microsoft process trees, specifically utilizing <code>dfsvc.exe</code> (ClickOnce Deployment Support Service) and <code>rundll32.exe</code> to launch the initial malicious components.</li>
<li><strong>Persistence through <code>.appref-ms</code> File:</strong> If the application is configured for offline availability, a shortcut file (<code>.appref-ms</code>) is dropped into the user's Start Menu (<code>%Users\AppData\Roaming\Microsoft\Windows\Start Menu\Programs\</code>).</li>
<li><strong>Malicious Update Delivery:</strong> When the user subsequently launches the application via the <code>.appref-ms</code> shortcut, the ClickOnce client checks for updates from the attacker-controlled server.</li>
<li><strong>Silent Payload Update and Re-execution:</strong> The attacker pushes a malicious update to the deployment server, which is then downloaded and executed by the <code>dfsvc.exe</code> process without requiring user re-authorization or prompting.</li>
<li><strong>Impact (Remote Access/Lateral Movement):</strong> The updated malicious payload can then establish remote access, modify C2 addresses, facilitate lateral movement, or perform other malicious actions on the compromised system.</li>
</ol>
<h2 id="impact">Impact</h2>
<p>The successful exploitation of ClickOnce's update mechanism allows threat actors to maintain persistent access to targeted systems with high stealth. Because the initial application deployment does not require administrative privileges, standard user accounts, which comprise the majority of enterprise endpoints, are vulnerable. Once established, attackers can silently update their malware, enabling them to alter C2 infrastructure, facilitate lateral movement within a network, and exfiltrate sensitive data. This technique bypasses common email gateway protections and traditional file-based scrutiny, leading to extended dwell times and increased potential for significant data breaches or system compromise.</p>
<h2 id="recommendation">Recommendation</h2>
<ul>
<li><strong>Implement a robust Endpoint Detection and Response (EDR) solution:</strong> Deploy EDR capabilities to detect suspicious process creation and network connections from <code>dfsvc.exe</code> and <code>rundll32.exe</code> as detailed in the Sigma rules below.</li>
<li><strong>Deploy the Sigma rules in this brief to your SIEM/EDR:</strong> Tune the provided rules to detect <code>dfsvc.exe</code> spawning unusual child processes or making suspicious network connections, and <code>rundll32.exe</code> executing with abnormal parameters.</li>
<li><strong>Monitor <code>process_creation</code> events:</strong> Specifically watch for instances where <code>dfsvc.exe</code> or <code>rundll32.exe</code> act as parent processes for scripting interpreters (e.g., powershell.exe, cmd.exe) or other unusual executables.</li>
<li><strong>Monitor <code>network_connection</code> events:</strong> Focus on outbound connections initiated by <code>dfsvc.exe</code> to non-standard ports or suspicious external IP addresses/domains.</li>
<li><strong>Educate users on ClickOnce risks:</strong> Increase awareness about the nature of <code>.application</code> files and the potential risks of installing software from untrusted sources, even if the installation appears to be legitimate.</li>
</ul>
]]></content:encoded><category domain="severity">high</category><category domain="type">advisory</category><category>clickonce</category><category>persistence</category><category>defense-evasion</category><category>windows</category><category>malware</category><category>social-engineering</category></item><item><title>Abuse of Microsoft ClickOnce Technology for Malware Deployment</title><link>https://feed.craftedsignal.io/briefs/2026-06-clickonce-abuse-part1/</link><pubDate>Sat, 20 Jun 2026 15:38:30 +0000</pubDate><author>hello@craftedsignal.io</author><guid isPermaLink="true">https://feed.craftedsignal.io/briefs/2026-06-clickonce-abuse-part1/</guid><description>Threat actors are leveraging Microsoft's ClickOnce technology, designed for simplified application deployment, as an attractive vector to spread malware, allowing for easy distribution, minimal user interaction, and installation without elevated privileges on Windows systems.</description><content:encoded><![CDATA[<p>Microsoft's ClickOnce technology, intended to streamline application distribution and updates, is being increasingly abused by threat actors to deploy malicious software. ClickOnce facilitates the deployment of applications with minimal user interaction and often without requiring administrative privileges, making it an ideal vector for malware. This allows adversaries to package and distribute their payloads in a user-friendly format, potentially bypassing traditional security controls. While Part 1 of this research focuses on the internal workings of ClickOnce, it highlights features such as self-contained packaging and self-updating functionality which, if weaponized, could enable persistent and evasive malware campaigns. This abuse poses a significant risk to organizations, as it simplifies the initial access and execution phases for attackers by leveraging a legitimate Microsoft deployment mechanism.</p>
<h2 id="attack-chain">Attack Chain</h2>
<ol>
<li>Threat actor packages a malicious application using Microsoft's ClickOnce publishing tools in Visual Studio.</li>
<li>The actor hosts the generated ClickOnce deployment files (e.g., <code>.application</code> manifest, executable, <code>.deploy</code> files) on a remote web server or network share.</li>
<li>The attacker creates a malicious link, often embedded in a phishing email or hosted on a compromised website, to trigger the download and deployment of the ClickOnce application.</li>
<li>A user clicks the malicious link, which initiates the download of the <code>.application</code> deployment manifest.</li>
<li>The Windows operating system's ClickOnce deployment service (<code>dfsvc.exe</code>) processes the manifest and, if the publisher's signature is not verified, prompts the user for confirmation.</li>
<li>Upon user confirmation, <code>dfsvc.exe</code> downloads and executes the packaged malicious application.</li>
<li>The malicious application runs with the user's privileges, potentially performing actions such as data exfiltration or installing additional malware.</li>
<li>If configured for installation, the malicious ClickOnce application might establish persistence (e.g., via startup entries) and use ClickOnce's self-updating feature for dynamic command and control.</li>
</ol>
<h2 id="impact">Impact</h2>
<p>The abuse of ClickOnce technology allows attackers to easily distribute malware, potentially leading to widespread infections. Because ClickOnce applications often run without requiring administrative privileges, they can bypass security measures that rely on privilege escalation detection. Successful exploitation can result in unauthorized access, data theft, further system compromise, and the deployment of ransomware or other destructive payloads. The self-updating nature of ClickOnce applications means that initially deployed malware can evolve, receive new capabilities, or evade detection over time, making long-term compromise more likely.</p>
<h2 id="recommendation">Recommendation</h2>
<ul>
<li>Deploy the Sigma rule &quot;Detect ClickOnce Deployment Service Launching Applications&quot; to monitor <code>dfsvc.exe</code> activity for suspicious application launches.</li>
<li>Implement the Sigma rule &quot;Detect Download of Suspicious ClickOnce Deployment Files&quot; to identify <code>.application</code> or <code>.manifest</code> files downloaded from unusual sources.</li>
<li>Use the Sigma rule &quot;Detect ClickOnce Application Execution from Suspicious Paths&quot; to flag executions of ClickOnce apps from temporary or user-controlled directories.</li>
<li>Educate users on the risks associated with installing unsigned or untrusted applications via ClickOnce prompts.</li>
<li>Enable comprehensive process creation logging for <code>dfsvc.exe</code> to capture command-line arguments and parent-child process relationships.</li>
</ul>
]]></content:encoded><category domain="severity">medium</category><category domain="type">advisory</category><category>clickonce</category><category>deployment</category><category>windows</category><category>malware-distribution</category><category>application-deployment</category></item><item><title>Potential Abuse of Microsoft ClickOnce Technology for Malware Delivery</title><link>https://feed.craftedsignal.io/briefs/2026-06-clickonce-abuse-potential/</link><pubDate>Fri, 19 Jun 2026 04:55:22 +0000</pubDate><author>hello@craftedsignal.io</author><guid isPermaLink="true">https://feed.craftedsignal.io/briefs/2026-06-clickonce-abuse-potential/</guid><description>Threat actors can abuse Microsoft's ClickOnce technology, which allows for simplified application distribution and installation with minimal user interaction and no administrative privileges, to easily spread malware and bypass traditional security controls through a 'click once' deployment.</description><content:encoded><![CDATA[<p>CrowdStrike has highlighted the potential for abuse of Microsoft's ClickOnce technology, a deployment mechanism designed to simplify application distribution and installation on Windows systems. While ClickOnce offers developers an easy way to package and deliver software, requiring minimal user interaction and no administrative privileges, these very features can be weaponized by threat actors. This initial analysis focuses on the underlying mechanics of ClickOnce deployment, setting the stage for understanding how malicious actors could leverage it to bypass traditional security measures. The user-friendly &quot;click once&quot; installation process means that unsuspecting victims could inadvertently deploy malware, making it a powerful vehicle for initial access and execution. This vulnerability is significant for defenders as it represents a novel or under-documented method for adversaries to achieve their objectives without relying on more commonly detected techniques.</p>
<h2 id="attack-chain">Attack Chain</h2>
<ol>
<li><strong>Preparation</strong>: Attacker crafts a malicious application and publishes it using ClickOnce technology, generating a deployment file (e.g., a <code>.application</code> file).</li>
<li><strong>Delivery</strong>: The attacker hosts the malicious ClickOnce deployment file on a controlled website or delivers it via a malicious link in a phishing email or message.</li>
<li><strong>User Execution</strong>: A victim is lured into clicking the malicious link or opening the deployment file, which triggers its download and initiates the ClickOnce deployment process.</li>
<li><strong>Security Prompt</strong>: The operating system displays a security warning or confirmation dialog to the user, particularly if the application publisher's signature is untrusted or unknown.</li>
<li><strong>Deployment Service Invocation</strong>: Upon user confirmation, the Windows Deployment Foundation Services (<code>dfsvc.exe</code>) process is invoked to handle the download and installation/execution of the ClickOnce application.</li>
<li><strong>Application Cache Write</strong>: The malicious ClickOnce application's files are downloaded and written to the user's ClickOnce application cache, typically located in <code>%LOCALAPPDATA%\Apps\2.0\</code>.</li>
<li><strong>Malware Execution</strong>: The malicious ClickOnce application is launched, executing its payload which could include installing additional malware, establishing persistence, or performing data exfiltration.</li>
</ol>
<h2 id="impact">Impact</h2>
<p>If successfully abused, the ClickOnce technology can lead to widespread malware infections, enabling attackers to establish a foothold on victim systems without requiring elevated privileges. Organizations could face data breaches, ransomware attacks, or system compromise as malicious applications bypass conventional security controls. The user-friendly nature of ClickOnce deployment lowers the barrier for successful social engineering, increasing the likelihood of successful attacks across various sectors. While specific victim counts are not available for this abuse method in this part of the research, the potential impact is broad, affecting any Windows environment where users might encounter and execute ClickOnce applications.</p>
<h2 id="recommendation">Recommendation</h2>
<ul>
<li>Deploy the Sigma rules in this brief to your SIEM and tune for your environment, specifically focusing on <code>process_creation</code> and <code>network_connection</code> logs related to ClickOnce.</li>
<li>Enable comprehensive <code>process_creation</code> logging to capture executions of <code>dfsvc.exe</code> and any processes launched from the ClickOnce application cache (<code>%LOCALAPPDATA%\Apps\2.0\</code>).</li>
<li>Monitor <code>network_connection</code> logs for outbound connections initiated by <code>dfsvc.exe</code> or other ClickOnce-related processes to suspicious or untrusted domains.</li>
<li>Educate users about the risks of executing applications from untrusted sources, even those presented through what appears to be a legitimate Windows installation wizard, as this relates to the Attack Chain step of &quot;Security Prompt&quot;.</li>
</ul>
]]></content:encoded><category domain="severity">medium</category><category domain="type">advisory</category><category>clickonce</category><category>windows</category><category>application-deployment</category><category>abuse-t1204.002</category></item></channel></rss>