← Back to SOC feed Coverage →

ThreatFox: Unknown Stealer IOCs

ioc-hunt HIGH ThreatFox
DnsEventsUrlClickEvents
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-07-31T11:00:00Z · Confidence: high

Hunt Hypothesis

This detection rule identifies the presence of five critical Indicators of Compromise (IOCs) linked to the Unknown Stealer malware, which is known for exfiltrating sensitive credentials and personal data from compromised endpoints. Proactively hunting for these IOCs within Azure Sentinel allows the SOC team to rapidly detect early-stage infections before the adversary establishes persistence or initiates large-scale data theft operations.

IOC Summary

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

TypeValueThreat TypeFirst SeenConfidence
domainpawsockenjoyer.sitebotnet_cc2026-07-31100%
urlhxxps://pawsockenjoyer.site/api/hwidbotnet_cc2026-07-31100%
urlhxxps://pawsockenjoyer.site/v1/statsbotnet_cc2026-07-31100%
urlhxxps://pawsockenjoyer.site/v1/webhookbotnet_cc2026-07-31100%
urlhxxps://pawsockenjoyer.site/v1/pollbotnet_cc2026-07-31100%

KQL: Domain Hunt

// Hunt for DNS queries to known malicious domains
// Source: ThreatFox - Unknown Stealer
let malicious_domains = dynamic(["pawsockenjoyer.site"]);
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://pawsockenjoyer.site/api/hwid", "https://pawsockenjoyer.site/v1/stats", "https://pawsockenjoyer.site/v1/webhook", "https://pawsockenjoyer.site/v1/poll"]);
UrlClickEvents
| where Url has_any (malicious_urls)
| project Timestamp, AccountUpn, Url, ActionType, IsClickedThrough
| order by Timestamp desc

Required Data Sources

Sentinel TableNotes
DnsEventsEnsure this data connector is enabled
UrlClickEventsEnsure this data connector is enabled

References

False Positive Guidance

False Positive Scenarios for “ThreatFox: Unknown Stealer IOCs”

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