This hypothesis posits that adversaries are deploying an unknown Remote Access Trojan (RAT) by leveraging specific Indicators of Compromise to establish persistent command and control channels within the network. Proactive hunting for these IOCs in Azure Sentinel is critical because early detection of this unidentified RAT can prevent lateral movement and data exfiltration before traditional signature-based defenses recognize the threat.
Malware Family: Unknown RAT Total IOCs: 2 IOC Types: domain, ip:port
| Type | Value | Threat Type | First Seen | Confidence |
|---|---|---|---|---|
| domain | gals.kleenghjah.com | botnet_cc | 2026-07-16 | 100% |
| ip:port | 38[.]255[.]40[.]44:4747 | botnet_cc | 2026-07-16 | 75% |
// Hunt for network connections to known malicious IPs
// Source: ThreatFox - Unknown RAT
let malicious_ips = dynamic(["38.255.40.44"]);
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(["38.255.40.44"]);
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(["gals.kleenghjah.com"]);
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 and corresponding exclusion strategies for the ThreatFox: Unknown RAT IOCs rule in an enterprise environment:
Internal Security Tool Updates & Scans
NT SERVICE\DefenderSvc, CrowdStrike Falcon Service) and restrict the IOC match scope to exclude internal IP subnets dedicated to patch management servers.Automated Backup and Synchronization Jobs
C:\Program Files\Microsoft OneDrive\OneDrive.exe, VeeamAgent.exe) combined with a time-based filter that suppresses alerts for these processes during their known maintenance windows (e.g., 02:00–04:00 local time).**Software Deployment