← Back to SOC feed Coverage →

ThreatFox: Unknown RAT IOCs

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

Hunt Hypothesis

This detection identifies potential Remote Access Trojan (RAT) activity by monitoring for five specific indicators of compromise that may signal an unknown adversary establishing persistent access within the environment. Proactively hunting for these IOCs in Azure Sentinel is critical to rapidly identify and contain stealthy RAT infections before they can exfiltrate sensitive data or pivot deeper into the network.

IOC Summary

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

TypeValueThreat TypeFirst SeenConfidence
urlhxxps://professional.baby/get/configbotnet_cc2026-08-0250%
urlhxxps://professional.baby/babayla/zor/yarisirlar/botnet_cc2026-08-0250%
urlhxxps://professional.baby/mods/api/log-downloadbotnet_cc2026-08-0250%
urlhxxps://professional.baby/?p=botnet_cc2026-08-0250%
domainprofessional.babybotnet_cc2026-08-0250%

KQL: Domain Hunt

// Hunt for DNS queries to known malicious domains
// Source: ThreatFox - Unknown RAT
let malicious_domains = dynamic(["professional.baby"]);
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 RAT
let malicious_urls = dynamic(["https://professional.baby/get/config", "https://professional.baby/babayla/zor/yarisirlar/", "https://professional.baby/mods/api/log-download", "https://professional.baby/?p="]);
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

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