← Back to SOC feed Coverage →

ThreatFox: Unknown RAT IOCs

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

Hunt Hypothesis

This hypothesis targets the deployment of Remote Access Trojans (RATs) by leveraging newly identified indicators of compromise from the ThreatFox feed to detect malicious payloads that may have evaded traditional signature-based detection. Proactively hunting for these unknown IOCs in Azure Sentinel is critical to identify persistent backdoors and establish early visibility into adversary footholds before they progress to lateral movement or data exfiltration.

IOC Summary

Malware Family: Unknown RAT Total IOCs: 13 IOC Types: sha256_hash, domain

TypeValueThreat TypeFirst SeenConfidence
sha256_hashe16d11d02dd4ff355c4832fbdaa950d88852b47133e33a253e043ebc1f5a5dc3payload2026-09-2575%
sha256_hashe94a99395a2f5f33c84020f767151a2e464b1b32d7e323c949dbcee8577e4af2payload2026-09-2575%
sha256_hash086f5e17a9d3a30460f3f8ff95613ef7c5b479831ff5163015b2b7ea42cd3679payload2026-09-2575%
sha256_hash345d1a775867b9e79ee6b0825e1e2416d715550f2162ac32c076f0371c8553e1payload2026-09-2575%
sha256_hashdb11d553f89f4ef02f725c96f7af7a3659bf17831a8e73966f1af4e92be6c594payload2026-09-2575%
sha256_hash1dc438b8979a4d7125cc5cc64b80cc76b49a4b3197fb3b7b7fd6bbfe2ed25c82payload2026-09-2575%
sha256_hashbad0600a850436154f8d7b6f7a191dc45bd136897780cd032b336cb4b358d241payload2026-09-2575%
domainesunager.netbotnet_cc2026-09-2550%
domaindibardo.netbotnet_cc2026-09-2550%
domainsotikan.netbotnet_cc2026-09-2550%
domainmedonaz.netbotnet_cc2026-09-2550%
domainremuloz.netbotnet_cc2026-09-2550%
domaingiperon.netbotnet_cc2026-09-2550%

KQL: Domain Hunt

// Hunt for DNS queries to known malicious domains
// Source: ThreatFox - Unknown RAT
let malicious_domains = dynamic(["esunager.net", "dibardo.net", "sotikan.net", "medonaz.net", "remuloz.net", "giperon.net"]);
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 - Unknown RAT
let malicious_hashes = dynamic(["e16d11d02dd4ff355c4832fbdaa950d88852b47133e33a253e043ebc1f5a5dc3", "e94a99395a2f5f33c84020f767151a2e464b1b32d7e323c949dbcee8577e4af2", "086f5e17a9d3a30460f3f8ff95613ef7c5b479831ff5163015b2b7ea42cd3679", "345d1a775867b9e79ee6b0825e1e2416d715550f2162ac32c076f0371c8553e1", "db11d553f89f4ef02f725c96f7af7a3659bf17831a8e73966f1af4e92be6c594", "1dc438b8979a4d7125cc5cc64b80cc76b49a4b3197fb3b7b7fd6bbfe2ed25c82", "bad0600a850436154f8d7b6f7a191dc45bd136897780cd032b336cb4b358d241"]);
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/unknown_rat/