This hunt targets adversary behavior involving the deployment of an unknown Remote Access Trojan (RAT) by correlating eight specific Indicators of Compromise (IOCs) to identify early-stage lateral movement and command-and-control communications. Proactive hunting for these signatures in Azure Sentinel is critical because detecting this RAT before it establishes persistence allows the SOC team to mitigate potential data exfiltration and prevent long-term network compromise.
Malware Family: Unknown RAT Total IOCs: 8 IOC Types: url, ip:port
| Type | Value | Threat Type | First Seen | Confidence |
|---|---|---|---|---|
| ip:port | 45[.]88[.]186[.]125:443 | botnet_cc | 2026-07-14 | 75% |
| ip:port | 45[.]13[.]238[.]92:443 | botnet_cc | 2026-07-14 | 75% |
| url | hxxps://irahook.com/babayla/zor/yarisirlar/ | botnet_cc | 2026-07-14 | 100% |
| url | hxxps://irahook.com/?p= | botnet_cc | 2026-07-14 | 100% |
| url | hxxp://44[.]223[.]110[.]247:1337/get/config | botnet_cc | 2026-07-14 | 100% |
| url | hxxp://44[.]223[.]110[.]247:1337/mods/api/log-download | botnet_cc | 2026-07-14 | 100% |
| url | hxxp://44[.]223[.]110[.]247:1337/babayla/zor/yarisirlar/ | botnet_cc | 2026-07-14 | 100% |
| url | hxxp://44[.]223[.]110[.]247:1337/?p= | botnet_cc | 2026-07-14 | 100% |
// Hunt for network connections to known malicious IPs
// Source: ThreatFox - Unknown RAT
let malicious_ips = dynamic(["45.13.238.92", "45.88.186.125"]);
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(["45.13.238.92", "45.88.186.125"]);
DeviceNetworkEvents
| where RemoteIP in (malicious_ips)
| project Timestamp, DeviceName, RemoteIP, RemotePort, InitiatingProcessFileName, ActionType
| order by Timestamp desc
// Hunt for access to known malicious URLs
// Source: ThreatFox - Unknown RAT
let malicious_urls = dynamic(["https://irahook.com/babayla/zor/yarisirlar/", "https://irahook.com/?p=", "http://44.223.110.247:1337/get/config", "http://44.223.110.247:1337/mods/api/log-download", "http://44.223.110.247:1337/babayla/zor/yarisirlar/", "http://44.223.110.247:1337/?p="]);
UrlClickEvents
| where Url has_any (malicious_urls)
| project Timestamp, AccountUpn, Url, ActionType, IsClickedThrough
| order by Timestamp desc
| Sentinel Table | Notes |
|---|---|
CommonSecurityLog | Ensure this data connector is enabled |
DeviceNetworkEvents | Ensure this data connector is enabled |
UrlClickEvents | Ensure this data connector is enabled |
Here are specific false positive scenarios and corresponding exclusion strategies for the ThreatFox: Unknown RAT IOCs detection rule in an enterprise environment:
Endpoint Security Agent Updates & Telemetry
csagent.exe, MsMpEng.exe, SentinelOneService.exe) and restrict the detection to only trigger if the source IP is external to the known vendor update ranges.IT Administration via Remote Desktop Services
DOMAIN\svc_patch_deploy, DOMAIN\Admin_Grp) and filter out traffic destined for internal IP subnets designated as “Management Infrastructure” or specific trusted CDNs used by the patch management vendor.Scheduled Backup and Data Synchronization Jobs