This hunt detects adversary activity involving known TonRAT indicators of compromise to identify potential remote access trojan infections within the environment. Proactively hunting for these specific IOCs in Azure Sentinel is critical because TonRAT enables attackers to establish persistent command and control channels that can lead to data exfiltration or lateral movement if left undetected.
Malware Family: TonRAT Total IOCs: 2 IOC Types: domain
| Type | Value | Threat Type | First Seen | Confidence |
|---|---|---|---|---|
| domain | photo-drivehotel.com | payload_delivery | 2026-08-25 | 100% |
| domain | photo-id83247.info | payload_delivery | 2026-08-25 | 100% |
// Hunt for DNS queries to known malicious domains
// Source: ThreatFox - TonRAT
let malicious_domains = dynamic(["photo-drivehotel.com", "photo-id83247.info"]);
DnsEvents
| where Name has_any (malicious_domains)
| project TimeGenerated, Computer, Name, IPAddresses, QueryType
| order by TimeGenerated desc
| Sentinel Table | Notes |
|---|---|
DnsEvents | Ensure this data connector is enabled |
Here are specific false positive scenarios and corresponding filters for the ThreatFox: TonRAT IOCs detection rule in an enterprise environment:
Scenario: Legitimate EDR Agent Communication with Cloud Management Console
FalconSensor.exe (CrowdStrike) or MsMpEng.exe / SenseService.exe (Microsoft Defender) communicating with known internal management subnets or specific cloud endpoints (e.g., *.falcon.crowdstrike.com).Scenario: Scheduled Software Deployment via SCCM/Intune
ccmsetup.exe or AppxDeploymentAgent.exe and the connection destination matches the specific IP ranges used by the organization’s Software Update Point (SUP) servers.Scenario: Automated Backup Jobs to Cloud Storage