This hypothesis posits that adversaries are deploying a previously unidentified Remote Access Trojan (RAT) within the environment, evidenced by the presence of specific threat indicators from ThreatFox. Proactive hunting for these IOCs in Azure Sentinel is critical to rapidly detect and contain this novel malware before it establishes persistence or exfiltrates sensitive data.
Malware Family: Unknown RAT Total IOCs: 2 IOC Types: ip:port, domain
| Type | Value | Threat Type | First Seen | Confidence |
|---|---|---|---|---|
| domain | shadowcape.online | botnet_cc | 2026-07-12 | 100% |
| ip:port | 44[.]223[.]110[.]247:1337 | botnet_cc | 2026-07-12 | 100% |
// Hunt for network connections to known malicious IPs
// Source: ThreatFox - Unknown RAT
let malicious_ips = dynamic(["44.223.110.247"]);
CommonSecurityLog
| where DestinationIP in (malicious_ips) or SourceIP in (malicious_ips)
| project TimeGenerated, SourceIP, DestinationIP, DestinationPort, DeviceAction, Activity
| order by TimeGenerated desc
// Hunt in Defender for Endpoint network events
let malicious_ips = dynamic(["44.223.110.247"]);
DeviceNetworkEvents
| where RemoteIP in (malicious_ips)
| project Timestamp, DeviceName, RemoteIP, RemotePort, InitiatingProcessFileName, ActionType
| order by Timestamp desc
// Hunt for DNS queries to known malicious domains
// Source: ThreatFox - Unknown RAT
let malicious_domains = dynamic(["shadowcape.online"]);
DnsEvents
| where Name has_any (malicious_domains)
| project TimeGenerated, Computer, Name, IPAddresses, QueryType
| order by TimeGenerated desc
| Sentinel Table | Notes |
|---|---|
CommonSecurityLog | Ensure this data connector is enabled |
DeviceNetworkEvents | Ensure this data connector is enabled |
DnsEvents | Ensure this data connector is enabled |
Here are specific false positive scenarios for the ThreatFox: Unknown RAT IOCs detection rule, tailored for an enterprise environment:
Endpoint Management Agent Updates
C:\Program Files\Microsoft Intune\* or C:\ProgramData\CrowdStrike\*) that match the IOCs during scheduled maintenance windows.Remote Desktop Administration Sessions
10.20.x.x) or whitelist specific user accounts with the “HelpDesk_Admin” role when accessing standard RDP ports (3389, 5938).Automated Backup and Sync Operations