<?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>Lotus Blossom - CraftedSignal Threat Feed</title><link>https://feed.craftedsignal.io/actors/lotus-blossom/</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>Tue, 09 Jan 2024 12:00:00 +0000</lastBuildDate><atom:link href="https://feed.craftedsignal.io/actors/lotus-blossom/feed.xml" rel="self" type="application/rss+xml"/><item><title>TinyCC Masquerading as Svchost for Shellcode Execution</title><link>https://feed.craftedsignal.io/briefs/2024-01-09-tinycc-shellcode/</link><pubDate>Tue, 09 Jan 2024 12:00:00 +0000</pubDate><author>hello@craftedsignal.io</author><guid isPermaLink="true">https://feed.craftedsignal.io/briefs/2024-01-09-tinycc-shellcode/</guid><description>Attackers rename TinyCC (tcc.exe) to svchost.exe and use it to compile and execute C source files containing shellcode, using the `-nostdlib` and `-run` flags, as observed in the Lotus Blossom Chrysalis backdoor campaign, indicating potential evasion and malicious code execution.</description><content:encoded><![CDATA[<p>The Lotus Blossom threat actor has been observed using a technique involving the Tiny C Compiler (TinyCC) to execute shellcode on compromised systems.  This technique involves renaming the legitimate <code>tcc.exe</code> binary to <code>svchost.exe</code> to masquerade as a legitimate Windows process. The renamed compiler is then used to compile and execute C source files containing malicious shellcode. A key aspect of this attack is the use of the <code>-nostdlib</code> and <code>-run</code> flags when invoking the renamed <code>tcc.exe</code>.  This behavior was specifically observed in the Chrysalis backdoor campaign, where the attackers executed <code>conf.c</code> containing Metasploit block_api shellcode.  This technique allows attackers to bypass traditional security measures by leveraging a legitimate tool in an unexpected way and from unusual locations. The ability of TinyCC to compile and execute code on-the-fly makes it an attractive tool for attackers seeking to evade detection.</p>
<h2 id="attack-chain">Attack Chain</h2>
<ol>
<li>The attacker gains initial access to the system (details not specified in source).</li>
<li>The attacker drops the Tiny C Compiler (tcc.exe) onto the compromised system, typically in a user-writable directory like AppData or Temp.</li>
<li>The attacker renames <code>tcc.exe</code> to <code>svchost.exe</code> to masquerade as a legitimate Windows process. This helps evade detection based on process names.</li>
<li>The attacker drops a C source file (e.g., <code>conf.c</code>) containing malicious shellcode onto the system.</li>
<li>The attacker executes the renamed <code>svchost.exe</code> (originally tcc.exe) to compile and execute the C source file containing the shellcode. The command line includes the flags <code>-nostdlib</code> and <code>-run</code>.</li>
<li>The shellcode executes, performing malicious actions such as establishing a reverse shell, downloading additional payloads, or injecting into other processes.</li>
<li>The attacker uses the established foothold to move laterally within the network.</li>
<li>The attacker achieves their final objective, which could include data exfiltration, deploying ransomware, or establishing persistent access.</li>
</ol>
<h2 id="impact">Impact</h2>
<p>Successful exploitation allows attackers to execute arbitrary code on the compromised system. This can lead to data theft, system compromise, and further propagation within the network.  The Lotus Blossom group has used this technique to install the Chrysalis backdoor. The number of victims and the sectors targeted by this specific campaign are not detailed in the provided source, but the technique is a significant threat to organizations due to its potential for stealth and impact.</p>
<h2 id="recommendation">Recommendation</h2>
<ul>
<li>Enable Sysmon process-creation logging (Event ID 1) and ensure command-line arguments are captured, to enable the rules above.</li>
<li>Deploy the Sigma rules in this brief to your SIEM and tune for your environment.</li>
<li>Monitor for processes named <code>svchost.exe</code> that are not located in the standard Windows system directories (<code>C:\\Windows\\System32\\</code> or <code>C:\\Windows\\SysWOW64\\</code>), as these are indicative of the renamed TinyCC binary based on the provided data and the detection logic.</li>
<li>Investigate any <code>svchost.exe</code> or <code>tcc.exe</code> processes executing with the <code>-nostdlib</code> and <code>-run</code> flags, especially when compiling <code>.c</code> files, using the detection logic in the Sigma rule.</li>
<li>Implement application control policies to restrict the execution of binaries from user-writable directories, mitigating the initial execution of the renamed compiler.</li>
</ul>
]]></content:encoded><category domain="severity">high</category><category domain="type">threat</category><category>tinycc</category><category>shellcode</category><category>svchost</category><category>lotus-blossom</category><category>chrysalis</category><category>t1059.003</category><category>t1027</category></item><item><title>Suspicious Bluetooth Service Installation from Uncommon Location</title><link>https://feed.craftedsignal.io/briefs/2024-01-bluetooth-service-anomaly/</link><pubDate>Wed, 03 Jan 2024 12:00:00 +0000</pubDate><author>hello@craftedsignal.io</author><guid isPermaLink="true">https://feed.craftedsignal.io/briefs/2024-01-bluetooth-service-anomaly/</guid><description>The creation of a Windows service named 'BluetoothService' with a binary path in user-writable directories, such as %AppData%, indicates potential malware persistence, as seen in the Lotus Blossom Chrysalis backdoor campaign.</description><content:encoded><![CDATA[<p>This threat brief focuses on the anomalous installation of a Windows service named &quot;BluetoothService&quot; from user-writable directories. The Lotus Blossom group used this technique in their Chrysalis backdoor campaign, creating a service that pointed to a malicious binary disguised as the Bitdefender Submission Wizard, located within a hidden AppData directory. This method bypasses standard security measures by mimicking legitimate service installation procedures but placing the malicious service executable in an unexpected location. Legitimate Bluetooth services in Windows are system services with binaries located in System32, making user-directory installations highly suspicious. Monitoring for this activity can help identify potential malware persistence mechanisms. This technique is used for persistence and defense evasion.</p>
<h2 id="attack-chain">Attack Chain</h2>
<ol>
<li>The attacker gains initial access to the system (potentially through phishing or exploiting a vulnerability).</li>
<li>The attacker drops a malicious executable, masquerading as a legitimate application (e.g., renaming a binary to resemble a Bitdefender tool).</li>
<li>The attacker creates a new Windows service named &quot;BluetoothService&quot; (or &quot;Bluetooth Service&quot;).</li>
<li>The &quot;ImagePath&quot; of this service is set to point to the malicious executable located in a user-writable directory (e.g., %AppData%, %ProgramData%, %Temp%, or a user-specific Bluetooth folder).</li>
<li>The service is configured to start automatically, ensuring persistence across reboots.</li>
<li>When the system starts, the malicious &quot;BluetoothService&quot; executes the attacker's code.</li>
<li>The attacker leverages the service to establish a backdoor for remote access and control.</li>
<li>The attacker performs further malicious activities, such as data exfiltration or lateral movement.</li>
</ol>
<h2 id="impact">Impact</h2>
<p>Successful exploitation allows attackers to establish persistence on the compromised system, enabling them to maintain unauthorized access even after reboots. This can lead to data theft, system compromise, and further propagation of the attack within the network. The Lotus Blossom group has historically targeted organizations in the aerospace, defense, and high-tech sectors, and similar campaigns could result in significant intellectual property loss and reputational damage.</p>
<h2 id="recommendation">Recommendation</h2>
<ul>
<li>Monitor Windows Event Log (Event ID 7045) for service creation events, focusing on services named &quot;BluetoothService&quot; or &quot;Bluetooth Service&quot; (data_source).</li>
<li>Implement the provided Sigma rule to detect the creation of &quot;BluetoothService&quot; with an &quot;ImagePath&quot; pointing to user-writable directories (%AppData%, %ProgramData%, %Temp%, %Users%*\Bluetooth) (rules).</li>
<li>Investigate any instances of &quot;BluetoothService&quot; being created from unusual locations, comparing the binary against known good software (rules).</li>
<li>Review and harden endpoint security configurations to prevent unauthorized service creation in user-writable directories (T1543.003).</li>
<li>Educate users about the risks of running executables from untrusted sources and the dangers of social engineering tactics (T1036).</li>
</ul>
]]></content:encoded><category domain="severity">high</category><category domain="type">threat</category><category>persistence</category><category>defense-evasion</category><category>windows</category><category>anomaly</category></item><item><title>Rundll32 Execution with Log.DLL</title><link>https://feed.craftedsignal.io/briefs/2024-01-rundll32-logdll/</link><pubDate>Wed, 03 Jan 2024 12:00:00 +0000</pubDate><author>hello@craftedsignal.io</author><guid isPermaLink="true">https://feed.craftedsignal.io/briefs/2024-01-rundll32-logdll/</guid><description>Detects the execution of rundll32 with 'log.dll' as a command-line argument, indicative of Lotus Blossom Chrysalis backdoor activity and DLL sideloading attempts.</description><content:encoded><![CDATA[<p>This threat brief focuses on the abuse of <code>rundll32.exe</code> to execute malicious DLLs, specifically <code>log.dll</code>, a technique associated with the Lotus Blossom group's Chrysalis backdoor. The attacker places a rogue <code>log.dll</code> in a location such as <code>%AppData%\Bluetooth</code> and leverages <code>rundll32.exe</code> to invoke a specific function within the DLL (e.g., <code>LogInit</code>). This execution decrypts and runs shellcode. While some legitimate applications like the Bitdefender Submission Wizard also use <code>log.dll</code>, they are susceptible to DLL sideloading attacks, making this detection crucial for identifying malicious activity that bypasses traditional defenses. This campaign was first reported in 2026 and continues to be a relevant threat.</p>
<h2 id="attack-chain">Attack Chain</h2>
<ol>
<li>The attacker gains initial access, often through social engineering or exploiting software vulnerabilities (not specified in source).</li>
<li>A malicious <code>log.dll</code> is placed in a writable directory, such as <code>%AppData%\Bluetooth</code>, mimicking a legitimate DLL location.</li>
<li>The attacker uses <code>rundll32.exe</code> to execute the malicious <code>log.dll</code> with a specific function call (e.g., <code>rundll32.exe log.dll,LogInit</code>).</li>
<li><code>Rundll32.exe</code> loads and executes the <code>log.dll</code>.</li>
<li>The <code>LogInit</code> function in <code>log.dll</code> decrypts embedded shellcode.</li>
<li>The shellcode is injected into a legitimate process or executed directly, establishing persistence or escalating privileges.</li>
<li>The injected shellcode connects to a command-and-control (C2) server to download additional payloads or receive instructions.</li>
<li>The attacker performs actions on the compromised system, such as data exfiltration, lateral movement, or installing additional malware.</li>
</ol>
<h2 id="impact">Impact</h2>
<p>Successful exploitation can lead to complete system compromise, data theft, and the installation of persistent backdoors. The Lotus Blossom group has been known to target organizations across various sectors. The ability to bypass traditional security measures through DLL sideloading makes this a high-impact threat. Even legitimate software can become an attack vector.</p>
<h2 id="recommendation">Recommendation</h2>
<ul>
<li>Deploy the Sigma rule <code>Rundll32 Execution with Log.DLL</code> to detect malicious <code>rundll32.exe</code> executions using <code>log.dll</code> (logsource: process_creation).</li>
<li>Investigate any <code>rundll32.exe</code> process executions with <code>log.dll</code> as a command-line argument, especially when originating from unusual paths (Sigma rule <code>Rundll32 Execution with Log.DLL</code>).</li>
<li>Monitor for suspicious file creations or modifications in <code>%AppData%\Bluetooth</code> or other common DLL sideloading locations (logsource: file_event).</li>
<li>Implement application control policies to restrict the execution of <code>rundll32.exe</code> from untrusted locations.</li>
<li>Audit systems for DLL sideloading vulnerabilities in legitimate applications.</li>
</ul>
]]></content:encoded><category domain="severity">high</category><category domain="type">threat</category><category>rundll32</category><category>dll-sideloading</category><category>lotus-blossom</category><category>chrysalis-backdoor</category></item><item><title>Bitdefender Submission Wizard DLL Sideloading</title><link>https://feed.craftedsignal.io/briefs/2024-01-02-bitdefender-dll-sideloading/</link><pubDate>Tue, 02 Jan 2024 10:00:00 +0000</pubDate><author>hello@craftedsignal.io</author><guid isPermaLink="true">https://feed.craftedsignal.io/briefs/2024-01-02-bitdefender-dll-sideloading/</guid><description>Detection of potential DLL side-loading of Bitdefender Submission Wizard (BDSubmit.exe, bdsw.exe, or renamed BluetoothService.exe) via loading a malicious log.dll from a non-standard path.</description><content:encoded><![CDATA[<p>This threat brief addresses the potential DLL side-loading attack targeting Bitdefender Submission Wizard (BDSubmit.exe, bdsw.exe, or renamed BluetoothService.exe). The attack involves a malicious actor placing a rogue log.dll in a directory where the legitimate Bitdefender executable will load it, thus executing attacker-controlled code. This technique is associated with the Lotus Blossom group (G0065). The observed activity relies on exploiting the DLL search order to execute arbitrary code. Defenders should monitor for instances of BDSubmit.exe, bdsw.exe, or BluetoothService.exe loading log.dll from unexpected paths outside of standard installation directories such as &quot;Program Files&quot; or &quot;Windows\System32&quot;.</p>
<h2 id="attack-chain">Attack Chain</h2>
<ol>
<li>The attacker gains initial access to the system (method unspecified in source).</li>
<li>The attacker identifies a vulnerable executable, such as BDSubmit.exe or bdsw.exe.</li>
<li>The attacker crafts a malicious log.dll.</li>
<li>The attacker places the malicious log.dll in the same directory as the Bitdefender executable, or in a directory that takes precedence in the DLL search order.</li>
<li>A user executes the legitimate Bitdefender Submission Wizard executable (BDSubmit.exe, bdsw.exe, or renamed BluetoothService.exe).</li>
<li>The legitimate application attempts to load log.dll. Due to DLL side-loading, the malicious log.dll is loaded instead of the legitimate one.</li>
<li>The malicious log.dll executes attacker-controlled code within the context of the Bitdefender Submission Wizard process.</li>
<li>The attacker achieves code execution for persistence or privilege escalation.</li>
</ol>
<h2 id="impact">Impact</h2>
<p>Successful exploitation through DLL side-loading allows attackers to execute arbitrary code within a trusted process. This can lead to privilege escalation, persistence, and potentially complete system compromise. Specific impacts include unauthorized access to sensitive data, installation of malware, and lateral movement within the network. The Lotus Blossom group has been known to use similar techniques to deploy backdoors.</p>
<h2 id="recommendation">Recommendation</h2>
<ul>
<li>Enable Sysmon ImageLoad events (EventCode 7) to monitor DLL loading activity and ensure the Splunk Add-on for Sysmon is configured to parse them as described in the &quot;how_to_implement&quot; section.</li>
<li>Deploy the Sigma rule &quot;Bitdefender Submission Wizard DLL Sideloading&quot; to detect instances where log.dll is loaded from a non-standard path, and tune for your environment.</li>
<li>Investigate any alerts generated by the provided detection rule, focusing on the &quot;dest&quot; and &quot;User&quot; fields as described in the &quot;drilldown_searches&quot; section.</li>
<li>Monitor for the execution of BDSubmit.exe, bdsw.exe, or BluetoothService.exe from unusual locations or with unusual command-line arguments.</li>
<li>Review and harden DLL search order configurations to prevent side-loading attacks (T1574.002).</li>
</ul>
]]></content:encoded><category domain="severity">high</category><category domain="type">threat</category><category>dll-sideloading</category><category>persistence</category><category>privilege-escalation</category><category>lotus-blossom</category><category>sysmon</category></item></channel></rss>