← Back to SOC feed Coverage →

ThreatFox: SVCStealer IOCs

ioc-hunt HIGH ThreatFox
DeviceFileEvents
infostealeriocthreatfoxwin-svcstealer
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-11T11:00:00Z · Confidence: high

Hunt Hypothesis

This hunt targets the presence of SVCStealer, a Windows service-based credential stealer, by identifying its specific indicators of compromise within the environment. Proactively hunting for these IOCs is critical because SVCStealer often operates silently to extract credentials from service processes, allowing adversaries to establish persistent access and escalate privileges before traditional detections trigger.

IOC Summary

Malware Family: SVCStealer Total IOCs: 3 IOC Types: md5_hash, sha256_hash, sha1_hash

TypeValueThreat TypeFirst SeenConfidence
md5_hash158a748771be8a06b496a410516d63a9payload2026-09-1195%
sha256_hashea449d04d3a664eadbff4e054b1717ce36db82c40d27f179833cf15118de9e73payload2026-09-1195%
sha1_hasha5926b439887f3f8d4f6b2686c5d4081673ff862payload2026-09-1195%

KQL: Hash Hunt

// Hunt for files matching known malicious hashes
// Source: ThreatFox - SVCStealer
let malicious_hashes = dynamic(["158a748771be8a06b496a410516d63a9", "ea449d04d3a664eadbff4e054b1717ce36db82c40d27f179833cf15118de9e73", "a5926b439887f3f8d4f6b2686c5d4081673ff862"]);
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

References

False Positive Guidance

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