This detection rule identifies adversary activity consistent with the Stealc malware family by monitoring for four specific Indicators of Compromise (IOCs) known to facilitate credential theft and lateral movement. The SOC team should proactively hunt for these signals in Azure Sentinel because early identification of Stealc IOCs allows for rapid containment before attackers can exfiltrate sensitive data or establish persistent backdoors within the cloud environment.
Malware Family: Stealc Total IOCs: 4 IOC Types: url, ip:port
| Type | Value | Threat Type | First Seen | Confidence |
|---|---|---|---|---|
| url | hxxp://185[.]223[.]82[.]171/fd89ba886125940b747e.php | botnet_cc | 2026-07-08 | 100% |
| ip:port | 160[.]20[.]109[.]75:80 | botnet_cc | 2026-07-08 | 100% |
| url | hxxp://144[.]31[.]57[.]70/c0e070fa9435429c8ea5.php | botnet_cc | 2026-07-08 | 100% |
| ip:port | 144[.]31[.]57[.]70:80 | botnet_cc | 2026-07-08 | 100% |
// Hunt for network connections to known malicious IPs
// Source: ThreatFox - Stealc
let malicious_ips = dynamic(["144.31.57.70", "160.20.109.75"]);
CommonSecurityLog
| where DestinationIP in (malicious_ips) or SourceIP in (malicious_ips)
| project TimeGenerated, SourceIP, DestinationIP, DestinationPort, DeviceAction, Activity
| order by TimeGenerated desc
// Hunt in Defender for Endpoint network events
let malicious_ips = dynamic(["144.31.57.70", "160.20.109.75"]);
DeviceNetworkEvents
| where RemoteIP in (malicious_ips)
| project Timestamp, DeviceName, RemoteIP, RemotePort, InitiatingProcessFileName, ActionType
| order by Timestamp desc
// Hunt for access to known malicious URLs
// Source: ThreatFox - Stealc
let malicious_urls = dynamic(["http://185.223.82.171/fd89ba886125940b747e.php", "http://144.31.57.70/c0e070fa9435429c8ea5.php"]);
UrlClickEvents
| where Url has_any (malicious_urls)
| project Timestamp, AccountUpn, Url, ActionType, IsClickedThrough
| order by Timestamp desc
| Sentinel Table | Notes |
|---|---|
CommonSecurityLog | Ensure this data connector is enabled |
DeviceNetworkEvents | Ensure this data connector is enabled |
UrlClickEvents | Ensure this data connector is enabled |
Here are four specific false positive scenarios for the ThreatFox: Stealc IOCs detection rule in an enterprise environment, along with suggested filters or exclusions:
Endpoint Protection Policy Updates via Microsoft Defender for Endpoint
MsMpEng.exe (Antimalware Service Executable) or Sense.exe where the parent process is Taskeng.exe (Task Scheduler), specifically targeting the hash values associated with the update package.Automated Software Deployment via SCCM (Microsoft Endpoint Configuration Manager)
CcmExec.exe) downloads installation packages from an internal distribution point that utilizes a public CDN or DNS resolution path overlapping with Stealc’s IOCs.CcmExec.exe running under the context of the “System” user, specifically filtering out traffic to known internal distribution point IP ranges or whitelisted CDN domains.Third-Party Patch Management Execution (e.g., Ivanti or ManageEngine)