← Back to SOC feed Coverage →

ThreatFox: Unknown Stealer IOCs

ioc-hunt HIGH ThreatFox
DeviceFileEventsDnsEventsUrlClickEvents
infostealeriocthreatfoxunknown_stealer
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-05-25T11:00:00Z · Confidence: high

Hunt Hypothesis

The ThreatFox: Unknown Stealer IOCs rule detects potential reconnaissance and data exfiltration activities associated with an unknown stealer malware, leveraging suspicious network connections and file artifacts. SOC teams should proactively hunt for this behavior in Azure Sentinel to identify and mitigate early-stage compromises from advanced threats that may evade traditional detection methods.

IOC Summary

Malware Family: Unknown Stealer Total IOCs: 10 IOC Types: domain, sha1_hash, url

TypeValueThreat TypeFirst SeenConfidence
urlhxxps://sites.google.com/view/clau-ver-un-v25payload_delivery2026-05-2575%
urlhxxps://sites.google.com/view/deutchbremacpayload_delivery2026-05-25100%
urlhxxp://premierrentalpurchase.com/curl/5b7250991558c1089d217b180d9418df77886996c22f8f319d7f640895e03381payload_delivery2026-05-25100%
urlhxxps://brezxcchec.com/payload_delivery2026-05-25100%
domainpremierrentalpurchase.compayload_delivery2026-05-25100%
domainbrezxcchec.compayload_delivery2026-05-25100%
urlhxxps://sites.google.com/view/clau-ver-un-24payload_delivery2026-05-25100%
urlhxxps://fairpoint29.com/payload_delivery2026-05-25100%
sha1_hash81deb32cde378e3886a7bfb6e0b9dff6dc34a5d0payload2026-05-25100%
sha1_hashf250b75677d5e944e5ab5fbba5e04b08f3ba9354payload2026-05-25100%

KQL: Domain Hunt

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

KQL: Url Hunt

// Hunt for access to known malicious URLs
// Source: ThreatFox - Unknown Stealer
let malicious_urls = dynamic(["https://sites.google.com/view/clau-ver-un-v25", "https://sites.google.com/view/deutchbremac", "http://premierrentalpurchase.com/curl/5b7250991558c1089d217b180d9418df77886996c22f8f319d7f640895e03381", "https://brezxcchec.com/", "https://sites.google.com/view/clau-ver-un-24", "https://fairpoint29.com/"]);
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 - Unknown Stealer
let malicious_hashes = dynamic(["81deb32cde378e3886a7bfb6e0b9dff6dc34a5d0", "f250b75677d5e944e5ab5fbba5e04b08f3ba9354"]);
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
UrlClickEventsEnsure this data connector is enabled

References

False Positive Guidance

Original source: https://threatfox.abuse.ch/browse/malware/unknown_stealer/