<?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>Dell — CraftedSignal Threat Feed</title><link>https://feed.craftedsignal.io/vendors/dell/</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>Tue, 09 Jan 2024 14:00:00 +0000</lastBuildDate><atom:link href="https://feed.craftedsignal.io/vendors/dell/feed.xml" rel="self" type="application/rss+xml"/><item><title>Account Discovery Command via SYSTEM Account</title><link>https://feed.craftedsignal.io/briefs/2024-01-09-system-account-discovery/</link><pubDate>Tue, 09 Jan 2024 14:00:00 +0000</pubDate><author>hello@craftedsignal.io</author><guid isPermaLink="true">https://feed.craftedsignal.io/briefs/2024-01-09-system-account-discovery/</guid><description>The rule identifies when the SYSTEM account uses an account discovery utility, potentially indicating discovery activity after privilege escalation, focusing on utilities like whoami.exe and net1.exe executed under the SYSTEM account.</description><content:encoded><![CDATA[<p>This detection rule identifies instances where the SYSTEM account is used to execute account discovery utilities, such as <code>whoami.exe</code> and <code>net1.exe</code>. This behavior is commonly observed after an attacker has successfully achieved privilege escalation within a Windows environment, or after exploiting a web application. The rule is designed to detect post-exploitation discovery activity where an adversary attempts to gain situational awareness by enumerating accounts and system information using the elevated SYSTEM context. The rule leverages data from Elastic Defend and Sysmon Event ID 1 to identify these behaviors, helping defenders spot potential privilege escalation and lateral movement attempts. The original rule was created 2020/03/18 and updated 2026/05/04.</p>
<h2 id="attack-chain">Attack Chain</h2>
<ol>
<li>An attacker gains initial access to a system, potentially through exploiting a vulnerability in a web application or through phishing.</li>
<li>The attacker escalates privileges to the SYSTEM account, possibly by exploiting a local privilege escalation vulnerability.</li>
<li>The attacker executes <code>whoami.exe</code> or <code>net1.exe</code> via the SYSTEM account to enumerate user accounts and gather system information.</li>
<li>The <code>whoami.exe</code> or <code>net1.exe</code> process is spawned by a parent process such as a web server process (e.g., w3wp.exe) or a service process.</li>
<li>The attacker uses the discovered account information to plan further actions, such as lateral movement or credential theft.</li>
<li>The attacker may use <code>net1.exe</code> to query domain information.</li>
<li>The attacker leverages the gained information to identify valuable targets within the network.</li>
<li>The final objective is often data exfiltration, deployment of ransomware, or further compromise of the network.</li>
</ol>
<h2 id="impact">Impact</h2>
<p>A successful attack can lead to unauthorized access to sensitive data, lateral movement within the network, and potential data exfiltration or ransomware deployment. Although this rule has low severity, the execution of discovery commands by the SYSTEM account can be a critical indicator of compromise. Early detection of such activity can prevent more severe damage.</p>
<h2 id="recommendation">Recommendation</h2>
<ul>
<li>Deploy the provided Sigma rules to detect account discovery commands executed via the SYSTEM account and tune for your environment.</li>
<li>Enable Sysmon process creation logging (Event ID 1) to ensure the necessary data is available for detection.</li>
<li>Investigate any alerts generated by these rules, focusing on the process execution chain to identify the source of the SYSTEM account usage.</li>
<li>If the process tree includes a web-application server process, investigate suspicious file creation or modification to assess for webshell backdoors.</li>
<li>Review and harden web application security to prevent initial access and privilege escalation.</li>
</ul>
]]></content:encoded><category domain="severity">low</category><category domain="type">advisory</category><category>discovery</category><category>privilege-escalation</category><category>windows</category></item><item><title>Network Logon Provider Registry Modification</title><link>https://feed.craftedsignal.io/briefs/2024-01-network-logon-provider-modification/</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-network-logon-provider-modification/</guid><description>Adversaries may modify the network logon provider registry to register a rogue network logon provider module for persistence and credential access by intercepting authentication credentials in clear text during user logon.</description><content:encoded><![CDATA[<p>Attackers may modify the network logon provider registry to gain persistence or access credentials. This involves registering a rogue network logon provider module that intercepts authentication credentials in clear text during user logon. The modification of the ProviderPath key under the NetworkProvider service registry path can be indicative of this malicious activity. The registry modification is often performed by non-system accounts and the adversary will attempt to hide the malicious DLL by placing it in common directories. This technique allows adversaries to steal user credentials or maintain persistent access to the compromised system.</p>
<h2 id="attack-chain">Attack Chain</h2>
<ol>
<li>An attacker gains initial access to a Windows system, possibly through exploiting a vulnerability or using compromised credentials.</li>
<li>The attacker elevates privileges to obtain the necessary permissions to modify the registry.</li>
<li>The attacker locates the registry key related to network logon providers: <code>HKLM\SYSTEM\CurrentControlSet\Services\*\NetworkProvider\ProviderPath</code>.</li>
<li>The attacker modifies the <code>ProviderPath</code> registry value to point to a malicious DLL.</li>
<li>The system loads the malicious DLL during the logon process.</li>
<li>The malicious DLL intercepts user credentials in clear text.</li>
<li>The attacker harvests the intercepted credentials.</li>
<li>The attacker uses the harvested credentials for lateral movement or further exploitation of the network.</li>
</ol>
<h2 id="impact">Impact</h2>
<p>A successful attack can lead to the compromise of user credentials, allowing attackers to gain unauthorized access to sensitive systems and data. Modification of the network logon provider registry enables attackers to maintain persistent access to the compromised system, even after a reboot. This can result in data breaches, financial losses, and reputational damage. The severity depends on the level of access granted to the compromised accounts and the sensitivity of the data they can access.</p>
<h2 id="recommendation">Recommendation</h2>
<ul>
<li>Monitor registry modifications to the <code>HKLM\SYSTEM\CurrentControlSet\Services\*\NetworkProvider\ProviderPath</code> key, using the provided Sigma rule to detect suspicious changes.</li>
<li>Enable Sysmon registry event logging to capture registry modifications.</li>
<li>Regularly audit network logon providers and verify the integrity and authenticity of the registered DLLs.</li>
<li>Investigate processes modifying the registry and their associated file creation events for unknown or suspicious processes.</li>
<li>Block execution of unsigned or untrusted DLLs in the network logon provider path.</li>
<li>Deploy the Sigma rule &ldquo;Network Logon Provider Registry Modification&rdquo; to your SIEM and tune for your environment.</li>
</ul>
]]></content:encoded><category domain="severity">medium</category><category domain="type">advisory</category><category>credential-access</category><category>persistence</category><category>registry-modification</category></item><item><title>LSASS Loading Suspicious DLL</title><link>https://feed.craftedsignal.io/briefs/2024-01-lsass-suspicious-dll/</link><pubDate>Wed, 03 Jan 2024 10:00:00 +0000</pubDate><author>hello@craftedsignal.io</author><guid isPermaLink="true">https://feed.craftedsignal.io/briefs/2024-01-lsass-suspicious-dll/</guid><description>Detection of LSASS loading an unsigned or untrusted DLL, which can indicate credential access attempts by malicious actors targeting sensitive information stored in the LSASS process.</description><content:encoded><![CDATA[<p>The Local Security Authority Subsystem Service (LSASS) is a critical Windows component that manages security policies and user authentication. Attackers often target LSASS to dump credentials, using techniques like injecting malicious DLLs. This detection focuses on identifying instances where LSASS loads a DLL that is either unsigned or not signed by a trusted vendor. The rule excludes known legitimate signatures and file hashes to reduce false positives. This activity is a strong indicator of credential access attempts, potentially leading to further compromise of the system and network. The signatures identified in the rule contain well-known software vendors like Microsoft, McAfee and Citrix.</p>
<h2 id="attack-chain">Attack Chain</h2>
<ol>
<li>An attacker gains initial access to the system through various means (e.g., phishing, exploiting a vulnerability).</li>
<li>The attacker elevates privileges to gain sufficient access to interact with the LSASS process.</li>
<li>The attacker drops a malicious DLL onto the system, often disguised as a legitimate file.</li>
<li>The attacker injects the malicious DLL into the LSASS process using techniques like Reflective DLL Injection.</li>
<li>LSASS loads the injected DLL, granting the attacker access to sensitive credentials stored in memory.</li>
<li>The malicious DLL dumps credentials, such as plaintext passwords or NTLM hashes.</li>
<li>The attacker uses the stolen credentials for lateral movement to other systems on the network.</li>
<li>The attacker achieves their final objective, such as data exfiltration or deploying ransomware.</li>
</ol>
<h2 id="impact">Impact</h2>
<p>Successful exploitation leads to credential compromise, allowing attackers to move laterally within the network, access sensitive data, and potentially achieve complete domain dominance. This can result in data breaches, financial losses, and reputational damage. The impact depends on the level of access associated with the compromised credentials.</p>
<h2 id="recommendation">Recommendation</h2>
<ul>
<li>Deploy the <code>LSASS Loading Untrusted DLL</code> Sigma rule to your SIEM to detect suspicious DLLs loaded by LSASS.</li>
<li>Investigate any alerts generated by the Sigma rule and review the loaded DLL&rsquo;s code signature and hash.</li>
<li>Block the identified SHA256 hashes listed in the IOC table to prevent the execution of known malicious DLLs.</li>
<li>Implement application whitelisting to restrict which DLLs can be loaded into LSASS.</li>
<li>Enable Sysmon process creation and image load logging to provide the necessary data for detection.</li>
</ul>
]]></content:encoded><category domain="severity">medium</category><category domain="type">advisory</category><category>credential-access</category><category>lsass</category><category>dll-injection</category><category>windows</category></item></channel></rss>