← Back to SOC feed Coverage →

ThreatFox: Stealc IOCs

ioc-hunt HIGH ThreatFox
DeviceFileEventsUrlClickEvents
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-09-12T11:00:00Z · Confidence: high

Hunt Hypothesis

This hunt identifies potential compromise by matching network traffic or host artifacts against known IOCs associated with the Stealc threat actor, a group frequently linked to advanced persistent threats targeting enterprise environments. Proactively hunting for these indicators in Azure Sentinel allows the SOC to detect early-stage intrusion attempts and lateral movement activities before they escalate into significant data exfiltration or ransomware deployment.

IOC Summary

Malware Family: Stealc Total IOCs: 3 IOC Types: url, sha256_hash

TypeValueThreat TypeFirst SeenConfidence
urlhxxp://193[.]178[.]158[.]55/auth.phpbotnet_cc2026-09-12100%
sha256_hash18df0ec2efba162d1774b1bf2233c2c24934d2bda49769e814f24d530a795c38payload2026-09-12100%
sha256_hash124cf79f222ef8b88f4d0e2e474378c5a7ab8a3c513d2434037ef0acfd79c984payload2026-09-12100%

KQL: Url Hunt

// Hunt for access to known malicious URLs
// Source: ThreatFox - Stealc
let malicious_urls = dynamic(["http://193.178.158.55/auth.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(["18df0ec2efba162d1774b1bf2233c2c24934d2bda49769e814f24d530a795c38", "124cf79f222ef8b88f4d0e2e474378c5a7ab8a3c513d2434037ef0acfd79c984"]);
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
DeviceFileEventsEnsure this data connector is enabled
UrlClickEventsEnsure this data connector is enabled

References

False Positive Guidance

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