← Back to SOC feed Coverage →

ThreatFox: Stealc IOCs

ioc-hunt HIGH ThreatFox
CommonSecurityLogDeviceNetworkEventsUrlClickEvents
iocthreatfoxwin-stealc
This rule was pulled from an open-source repository and enriched with AI. Validate in a test environment before deploying to production.
View original rule at ThreatFox →
Retrieved: 2026-07-08T11:00:00Z · Confidence: high

Hunt Hypothesis

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.

IOC Summary

Malware Family: Stealc Total IOCs: 4 IOC Types: url, ip:port

TypeValueThreat TypeFirst SeenConfidence
urlhxxp://185[.]223[.]82[.]171/fd89ba886125940b747e.phpbotnet_cc2026-07-08100%
ip:port160[.]20[.]109[.]75:80botnet_cc2026-07-08100%
urlhxxp://144[.]31[.]57[.]70/c0e070fa9435429c8ea5.phpbotnet_cc2026-07-08100%
ip:port144[.]31[.]57[.]70:80botnet_cc2026-07-08100%

KQL: Ip Hunt

// 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

KQL: Ip Hunt Device

// 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

KQL: Url Hunt

// 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

Required Data Sources

Sentinel TableNotes
CommonSecurityLogEnsure this data connector is enabled
DeviceNetworkEventsEnsure this data connector is enabled
UrlClickEventsEnsure this data connector is enabled

References

False Positive Guidance

Here are four specific false positive scenarios for the ThreatFox: Stealc IOCs detection rule in an enterprise environment, along with suggested filters or exclusions:

Original source: https://threatfox.abuse.ch/browse/malware/win.stealc/