← Back to SOC feed Coverage →

ThreatFox: Stealc IOCs

ioc-hunt HIGH ThreatFox
CommonSecurityLogDeviceFileEventsDeviceNetworkEventsUrlClickEvents
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-05T23:00:00Z · Confidence: high

Hunt Hypothesis

This detection rule identifies adversary activity consistent with the Stealc malware family by monitoring for nine specific Indicators of Compromise (IOCs) known to facilitate data exfiltration and persistence. Proactively hunting for these signatures in Azure Sentinel is critical because early identification of Stealc IOCs allows the SOC team to rapidly isolate affected assets before sensitive credentials or intellectual property are compromised.

IOC Summary

Malware Family: Stealc Total IOCs: 9 IOC Types: sha256_hash, sha1_hash, md5_hash, url, ip:port

TypeValueThreat TypeFirst SeenConfidence
ip:port94[.]26[.]83[.]155:80botnet_cc2026-07-05100%
ip:port91[.]202[.]233[.]134:80botnet_cc2026-07-05100%
urlhxxp://94[.]26[.]83[.]155/312b423bf6dd463f8d15.phpbotnet_cc2026-07-0575%
sha256_hash716608d7e9a26e980f916e73792abcb86bbb21fb949436b7f359afcaf730b078payload2026-07-0595%
sha1_hash1dd66d9ee5902947bda7eb381fa256877a646879payload2026-07-0595%
md5_hashdc903b2967c0c943084a0d5c0d131cf1payload2026-07-0595%
md5_hashd3f9acfa6119f28d666e25d7e078570apayload2026-07-0595%
sha256_hash1095cf2951bbc8b1ecd33798afad192449a102aa1b976fb60bf566a08d693587payload2026-07-0595%
sha1_hash53e0bf97e465842a9130aae1fcdf0968273f6d14payload2026-07-0595%

KQL: Ip Hunt

// Hunt for network connections to known malicious IPs
// Source: ThreatFox - Stealc
let malicious_ips = dynamic(["91.202.233.134", "94.26.83.155"]);
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(["91.202.233.134", "94.26.83.155"]);
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://94.26.83.155/312b423bf6dd463f8d15.php"]);
UrlClickEvents
| where Url has_any (malicious_urls)
| project Timestamp, AccountUpn, Url, ActionType, IsClickedThrough
| order by Timestamp desc

KQL: Hash Hunt

// Hunt for files matching known malicious hashes
// Source: ThreatFox - Stealc
let malicious_hashes = dynamic(["716608d7e9a26e980f916e73792abcb86bbb21fb949436b7f359afcaf730b078", "1dd66d9ee5902947bda7eb381fa256877a646879", "dc903b2967c0c943084a0d5c0d131cf1", "d3f9acfa6119f28d666e25d7e078570a", "1095cf2951bbc8b1ecd33798afad192449a102aa1b976fb60bf566a08d693587", "53e0bf97e465842a9130aae1fcdf0968273f6d14"]);
DeviceFileEvents
| where SHA256 in (malicious_hashes) or SHA1 in (malicious_hashes) or MD5 in (malicious_hashes)
| project Timestamp, DeviceName, FileName, FolderPath, SHA256, InitiatingProcessFileName
| order by Timestamp desc

Required Data Sources

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

References

False Positive Guidance

Here are 5 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/