← Back to SOC feed Coverage →

ThreatFox: Unknown Stealer IOCs

ioc-hunt HIGH ThreatFox
CommonSecurityLogDeviceNetworkEventsDnsEventsUrlClickEvents
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-08-19T11:00:00Z · Confidence: high

Hunt Hypothesis

This hunt detects adversary behavior where threat actors deploy Unknown Stealer malware to exfiltrate sensitive credentials and data by leveraging known indicators of compromise (IOCs). The SOC team should proactively hunt for these IOCs in Azure Sentinel to rapidly identify early-stage infections and mitigate potential data breaches before lateral movement occurs.

IOC Summary

Malware Family: Unknown Stealer Total IOCs: 11 IOC Types: domain, ip:port, url

TypeValueThreat TypeFirst SeenConfidence
domainallremdeskriki.combotnet_cc2026-08-19100%
domaindubl1allremriki.combotnet_cc2026-08-19100%
domainwoolvilli.combotnet_cc2026-08-19100%
urlhxxp://dubl2allremriki.com/api/v2botnet_cc2026-08-19100%
urlhxxp://allremdeskriki.com/api/v2botnet_cc2026-08-19100%
urlhxxp://dubl1allremriki.com/api/v2botnet_cc2026-08-19100%
urlhxxp://woolvilli.com/api/v2botnet_cc2026-08-19100%
ip:port136[.]244[.]100[.]54:8899botnet_cc2026-08-1975%
domaindubl2allremriki.combotnet_cc2026-08-19100%
urlhxxp://136[.]244[.]100[.]54/api/v1/agent/wsbotnet_cc2026-08-19100%
urlhxxp://136[.]244[.]100[.]54/api/v1/agent/registerbotnet_cc2026-08-19100%

KQL: Ip Hunt

// Hunt for network connections to known malicious IPs
// Source: ThreatFox - Unknown Stealer
let malicious_ips = dynamic(["136.244.100.54"]);
CommonSecurityLog
| where DestinationIP in (malicious_ips) or SourceIP in (malicious_ips)
| project TimeGenerated, SourceIP, DestinationIP, DestinationPort, DeviceAction, Activity
| order by TimeGenerated desc

KQL: Ip Hunt Device

// Hunt in Defender for Endpoint network events
let malicious_ips = dynamic(["136.244.100.54"]);
DeviceNetworkEvents
| where RemoteIP in (malicious_ips)
| project Timestamp, DeviceName, RemoteIP, RemotePort, InitiatingProcessFileName, ActionType
| order by Timestamp desc

KQL: Domain Hunt

// Hunt for DNS queries to known malicious domains
// Source: ThreatFox - Unknown Stealer
let malicious_domains = dynamic(["allremdeskriki.com", "dubl1allremriki.com", "woolvilli.com", "dubl2allremriki.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(["http://dubl2allremriki.com/api/v2", "http://allremdeskriki.com/api/v2", "http://dubl1allremriki.com/api/v2", "http://woolvilli.com/api/v2", "http://136.244.100.54/api/v1/agent/ws", "http://136.244.100.54/api/v1/agent/register"]);
UrlClickEvents
| where Url has_any (malicious_urls)
| project Timestamp, AccountUpn, Url, ActionType, IsClickedThrough
| order by Timestamp desc

Required Data Sources

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

References

False Positive Guidance

Here are specific false positive scenarios and corresponding filters for the ThreatFox: Unknown Stealer IOCs rule in an enterprise environment:

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