← Back to SOC feed Coverage →

ThreatFox: StrelaStealer IOCs

ioc-hunt HIGH ThreatFox
DeviceFileEventsDnsEvents
infostealeriocthreatfoxwin-strelastealer
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-06-11T23:00:00Z · Confidence: high

Hunt Hypothesis

The ThreatFox: StrelaStealer IOCs rule detects potential command and control activity associated with the StrelaStealer malware, which is known for exfiltrating sensitive data. SOC teams should proactively hunt for these IOCs in Azure Sentinel to identify and mitigate early-stage compromises before significant data loss occurs.

IOC Summary

Malware Family: StrelaStealer Total IOCs: 4 IOC Types: md5_hash, domain, sha256_hash, sha1_hash

TypeValueThreat TypeFirst SeenConfidence
sha1_hashbe34707cb56d7b41393d14c67b4ad8626c4519d7payload2026-06-1195%
md5_hash39a19118f2d38bfdb9421f69a84e5decpayload2026-06-1195%
sha256_hash8a82da328a3db0fca63f31e7b464b5989cecfd619ebab0b238c07b63544bf823payload2026-06-1195%
domainmsp.shoptopexpress.compayload_delivery2026-06-11100%

KQL: Domain Hunt

// Hunt for DNS queries to known malicious domains
// Source: ThreatFox - StrelaStealer
let malicious_domains = dynamic(["msp.shoptopexpress.com"]);
DnsEvents
| where Name has_any (malicious_domains)
| project TimeGenerated, Computer, Name, IPAddresses, QueryType
| order by TimeGenerated desc

KQL: Hash Hunt

// Hunt for files matching known malicious hashes
// Source: ThreatFox - StrelaStealer
let malicious_hashes = dynamic(["be34707cb56d7b41393d14c67b4ad8626c4519d7", "39a19118f2d38bfdb9421f69a84e5dec", "8a82da328a3db0fca63f31e7b464b5989cecfd619ebab0b238c07b63544bf823"]);
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
DnsEventsEnsure this data connector is enabled

References

False Positive Guidance

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