← 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-08-08T23:00:01Z · Confidence: high

Hunt Hypothesis

This detection rule identifies adversary activity associated with the Stealc malware family, which targets systems to exfiltrate sensitive credentials and data through known Indicators of Compromise (IOCs). A proactive hunt in Azure Sentinel is critical because Stealc’s stealthy nature allows it to persist undetected for extended periods, necessitating early identification to prevent widespread credential theft and lateral movement.

IOC Summary

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

TypeValueThreat TypeFirst SeenConfidence
ip:port193[.]148[.]56[.]206:80botnet_cc2026-08-0875%
urlhxxp://193[.]148[.]56[.]206/botnet_cc2026-08-08100%
sha256_hash8d945e37a9d8f4f68fb34b623e628aed9cce8c8ea6593a8e2bbcbba33e166537payload2026-08-0895%
sha1_hashb30bbd5be515a837e21a3c9ac34afab886f67d59payload2026-08-0895%
md5_hashb426a480de03b7a15e739cf07f7fac88payload2026-08-0895%
sha256_hash7fe1c82d5a257a35d527e78f05d35592c015f0dd8de1956d1e7f02ca70462f4epayload2026-08-0895%
sha1_hashb8601376c42b9ffdd0c599fa9650ab4f64674007payload2026-08-0895%
md5_hasha7896d977fe660b80c214495486f1f4dpayload2026-08-0895%
sha1_hasha4933d27e1f7f7331a3a0ab54d6b53339a412777payload2026-08-0895%
md5_hash58a519430128d0e52fc10b3bc7fdb717payload2026-08-0895%
sha256_hashddf8b517a8fed544e1adac815a5d85d4c917717449dd52d1354c03f599f05779payload2026-08-0895%

KQL: Ip Hunt

// Hunt for network connections to known malicious IPs
// Source: ThreatFox - Stealc
let malicious_ips = dynamic(["193.148.56.206"]);
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(["193.148.56.206"]);
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://193.148.56.206/"]);
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(["8d945e37a9d8f4f68fb34b623e628aed9cce8c8ea6593a8e2bbcbba33e166537", "b30bbd5be515a837e21a3c9ac34afab886f67d59", "b426a480de03b7a15e739cf07f7fac88", "7fe1c82d5a257a35d527e78f05d35592c015f0dd8de1956d1e7f02ca70462f4e", "b8601376c42b9ffdd0c599fa9650ab4f64674007", "a7896d977fe660b80c214495486f1f4d", "a4933d27e1f7f7331a3a0ab54d6b53339a412777", "58a519430128d0e52fc10b3bc7fdb717", "ddf8b517a8fed544e1adac815a5d85d4c917717449dd52d1354c03f599f05779"]);
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 4 specific false positive scenarios for the ThreatFox: Stealc IOCs detection rule, along with targeted filtering strategies suitable for an enterprise environment:

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