<?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>Lolbas — CraftedSignal Threat Feed</title><link>https://feed.craftedsignal.io/tags/lolbas/</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/lolbas/feed.xml" rel="self" type="application/rss+xml"/><item><title>Suspicious Execution via Windows Command Debugging Utility</title><link>https://feed.craftedsignal.io/briefs/2024-07-cdb-execution/</link><pubDate>Mon, 04 May 2026 14:17:05 +0000</pubDate><author>hello@craftedsignal.io</author><guid isPermaLink="true">https://feed.craftedsignal.io/briefs/2024-07-cdb-execution/</guid><description>Adversaries can abuse the Windows command line debugging utility cdb.exe to execute commands or shellcode from non-standard paths, evading traditional security measures.</description><content:encoded><![CDATA[<p>The Windows command line debugging utility, cdb.exe, is a legitimate tool used for debugging applications. However, adversaries can exploit it to execute unauthorized commands or shellcode, bypassing security measures. This can be achieved by running cdb.exe from non-standard installation paths and using specific command-line arguments to execute malicious commands. The LOLBAS project documents this technique, highlighting its potential for defense evasion. This activity has been observed across various environments, necessitating detection strategies that focus on identifying anomalous executions of cdb.exe.</p>
<h2 id="attack-chain">Attack Chain</h2>
<ol>
<li>An attacker gains initial access to a Windows system.</li>
<li>The attacker copies cdb.exe to a non-standard location (outside &ldquo;Program Files&rdquo; and &ldquo;Program Files (x86)&rdquo;).</li>
<li>The attacker executes cdb.exe with the <code>-cf</code>, <code>-c</code>, or <code>-pd</code> command-line arguments.</li>
<li>These arguments are used to specify a command file or execute a direct command.</li>
<li>The command file or command directly executes malicious code, such as shellcode.</li>
<li>The malicious code performs actions such as creating new processes, modifying files, or establishing network connections.</li>
<li>These actions allow the attacker to maintain persistence or escalate privileges.</li>
<li>The ultimate goal is to evade defenses and execute arbitrary code on the system.</li>
</ol>
<h2 id="impact">Impact</h2>
<p>Successful exploitation allows adversaries to execute arbitrary commands and shellcode on the affected system, potentially leading to complete system compromise. This can result in data theft, installation of malware, or further propagation within the network. The technique is effective at bypassing application whitelisting and other security controls that rely on standard execution paths.</p>
<h2 id="recommendation">Recommendation</h2>
<ul>
<li>Deploy the Sigma rule &ldquo;Execution via Windows Command Debugging Utility&rdquo; to your SIEM to detect suspicious cdb.exe executions (see rules section).</li>
<li>Enable process creation logging via Sysmon or Windows Security Event Logs to provide the necessary data for the Sigma rule.</li>
<li>Implement application whitelisting to prevent execution of cdb.exe from non-standard paths.</li>
<li>Monitor process command lines for the <code>-cf</code>, <code>-c</code>, and <code>-pd</code> flags when cdb.exe is executed.</li>
<li>Investigate any instances of cdb.exe running from unusual directories to determine legitimacy.</li>
</ul>
]]></content:encoded><category domain="severity">medium</category><category domain="type">advisory</category><category>lolbas</category><category>defense-evasion</category><category>windows</category></item><item><title>Abuse of Windows Update Client for DLL Loading</title><link>https://feed.craftedsignal.io/briefs/2024-01-wuauclt-dll-load/</link><pubDate>Thu, 04 Jan 2024 12:00:00 +0000</pubDate><author>hello@craftedsignal.io</author><guid isPermaLink="true">https://feed.craftedsignal.io/briefs/2024-01-wuauclt-dll-load/</guid><description>The Windows Update Auto Update Client (wuauclt.exe) is being abused to load arbitrary DLLs, a defense evasion technique where malicious activity blends with legitimate Windows software by using specific process arguments and placing DLLs in writable paths.</description><content:encoded><![CDATA[<p>Attackers are abusing the Windows Update Auto Update Client (wuauclt.exe) to execute arbitrary code by loading malicious DLLs. This technique allows malicious actors to evade defenses by masquerading their activity as legitimate Windows processes. The abuse involves using specific command-line arguments with wuauclt.exe to load a DLL from a user-writable directory. This behavior has been observed in various attacks aimed at evading traditional security measures. This is an effective defense evasion and execution technique, allowing attackers to execute code while blending in with normal system processes, potentially bypassing application control and other security mechanisms.</p>
<h2 id="attack-chain">Attack Chain</h2>
<ol>
<li>An attacker gains initial access to the system through an unrelated method.</li>
<li>The attacker places a malicious DLL in a directory writable by standard users, such as <code>C:\Users\&lt;username&gt;\</code>, <code>C:\ProgramData\</code>, <code>C:\Windows\Temp\</code>, or <code>C:\Windows\Tasks\</code>.</li>
<li>The attacker executes <code>wuauclt.exe</code> with the arguments <code>/RunHandlerComServer</code> and <code>/UpdateDeploymentProvider</code> along with the path to the malicious DLL. For example: <code>wuauclt.exe /RunHandlerComServer /UpdateDeploymentProvider /dll:&lt;path_to_malicious_dll&gt;</code>.</li>
<li><code>wuauclt.exe</code> loads the specified malicious DLL.</li>
<li>The malicious DLL executes arbitrary code within the context of the <code>wuauclt.exe</code> process.</li>
<li>The malicious code performs its intended actions, such as establishing persistence, communicating with a C2 server, or escalating privileges.</li>
<li>The attacker may then use the compromised system as a foothold for lateral movement within the network.</li>
</ol>
<h2 id="impact">Impact</h2>
<p>Successful exploitation allows attackers to execute arbitrary code within a trusted Windows process, potentially bypassing security controls and making detection more difficult. While specific victim counts are unavailable, this technique can be used in targeted attacks against organizations where defense evasion is a priority for the adversary. Successful execution can lead to complete system compromise, data theft, or further malicious activities.</p>
<h2 id="recommendation">Recommendation</h2>
<ul>
<li>Deploy the Sigma rule <code>ImageLoad via Windows Update Auto Update Client</code> to detect the execution of <code>wuauclt.exe</code> with suspicious arguments.</li>
<li>Monitor process creation events for <code>wuauclt.exe</code> with the arguments <code>/RunHandlerComServer</code> and <code>/UpdateDeploymentProvider</code>, focusing on DLL paths in user-writable directories.</li>
<li>Enable Sysmon process-creation and image-load logging to improve visibility into this type of attack.</li>
<li>Audit DLLs loaded by <code>wuauclt.exe</code> and investigate any unsigned or unexpected DLLs.</li>
</ul>
]]></content:encoded><category domain="severity">medium</category><category domain="type">advisory</category><category>defense-evasion</category><category>execution</category><category>lolbas</category><category>windows</category></item><item><title>Windows Delayed Execution via Ping Followed by Malicious Utilities</title><link>https://feed.craftedsignal.io/briefs/2024-01-delayed-execution-via-ping/</link><pubDate>Tue, 02 Jan 2024 14:00:00 +0000</pubDate><author>hello@craftedsignal.io</author><guid isPermaLink="true">https://feed.craftedsignal.io/briefs/2024-01-delayed-execution-via-ping/</guid><description>Adversaries may use ping to delay execution of malicious commands, scripts, or binaries to evade detection, often observed during malware installation.</description><content:encoded><![CDATA[<p>Attackers may use ping to introduce pauses, allowing them to execute harmful scripts or binaries stealthily. This delayed execution is often observed during malware installation and is consistent with an attacker attempting to evade detection. The adversary uses <code>ping.exe</code> with the <code>-n</code> argument from within a <code>cmd.exe</code> shell, and the parent process is running under a user context other than SYSTEM. The subsequent process is <code>cmd.exe</code> invoking a known malicious utility, such as <code>powershell.exe</code>, <code>mshta.exe</code>, <code>rundll32.exe</code>, or an executable from the user&rsquo;s AppData directory without a valid code signature. This behavior is often observed during malware installation.</p>
<h2 id="attack-chain">Attack Chain</h2>
<ol>
<li>The attack begins with an initial access vector (not specified in source).</li>
<li>The adversary executes <code>cmd.exe</code>.</li>
<li><code>cmd.exe</code> spawns <code>ping.exe</code> with the <code>-n</code> argument to introduce a delay, typically to evade detection (<code>ping.exe -n [number] 127.0.0.1</code>).</li>
<li>After the delay introduced by <code>ping.exe</code>, the same <code>cmd.exe</code> process executes a potentially malicious utility such as <code>powershell.exe</code>, <code>mshta.exe</code>, <code>rundll32.exe</code>, <code>certutil.exe</code>, or <code>regsvr32.exe</code>.</li>
<li>Alternatively, <code>cmd.exe</code> might execute a binary located within the user&rsquo;s AppData directory that lacks a valid code signature.</li>
<li>The malicious utility executes arbitrary commands or scripts, potentially downloading further payloads or modifying system configurations.</li>
<li>The attacker gains a foothold on the system, enabling further malicious activities such as lateral movement or data exfiltration.</li>
</ol>
<h2 id="impact">Impact</h2>
<p>A successful attack can lead to malware installation, system compromise, and data theft. While the source does not quantify the number of victims or specific sectors targeted, a successful compromise can lead to significant operational disruption and data breaches. The use of delayed execution makes it more difficult for traditional security solutions to detect malicious activity.</p>
<h2 id="recommendation">Recommendation</h2>
<ul>
<li>Deploy the Sigma rule &ldquo;Delayed Execution via Ping&rdquo; to your SIEM to detect the execution of commonly abused Windows utilities via a delayed Ping execution.</li>
<li>Enable process monitoring with command-line argument logging to capture the execution of <code>ping.exe</code> and subsequent processes for analysis.</li>
<li>Implement application whitelisting to prevent unauthorized execution of scripts and binaries, focusing on the utilities identified in the rule.</li>
<li>Review and tune the provided Sigma rule, including the listed exclusions, to reduce false positives in your specific environment.</li>
<li>Monitor process execution from unusual locations like the AppData directory, especially for unsigned executables, as indicated in the rule&rsquo;s detection logic.</li>
</ul>
]]></content:encoded><category domain="severity">low</category><category domain="type">advisory</category><category>execution</category><category>defense-evasion</category><category>windows</category><category>ping</category><category>lolbas</category></item></channel></rss>