This hunt detects adversary activity involving the TonRAT remote access trojan by monitoring for specific indicators of compromise across network and endpoint telemetry within Azure Sentinel. Proactively hunting for these IOCs is critical to identify early-stage lateral movement and command-and-control communications that could lead to persistent data exfiltration or credential theft before full-scale exploitation occurs.
Malware Family: TonRAT Total IOCs: 11 IOC Types: domain
| Type | Value | Threat Type | First Seen | Confidence |
|---|---|---|---|---|
| domain | drivephoto-guest.info | payload_delivery | 2026-08-21 | 100% |
| domain | ejevanjc.info | payload_delivery | 2026-08-21 | 100% |
| domain | extranet-help-desk26.com | payload_delivery | 2026-08-21 | 100% |
| domain | file-load-20.info | payload_delivery | 2026-08-21 | 100% |
| domain | haksdkweqw219dms.com | payload_delivery | 2026-08-21 | 100% |
| domain | img-load2280.info | payload_delivery | 2026-08-21 | 100% |
| domain | load-file0228.info | payload_delivery | 2026-08-21 | 100% |
| domain | load-file2754.info | payload_delivery | 2026-08-21 | 100% |
| domain | reservationcheckid9567.info | payload_delivery | 2026-08-21 | 100% |
| domain | testload19.skin | payload_delivery | 2026-08-21 | 100% |
| domain | file-download.info | payload_delivery | 2026-08-21 | 100% |
// Hunt for DNS queries to known malicious domains
// Source: ThreatFox - TonRAT
let malicious_domains = dynamic(["drivephoto-guest.info", "ejevanjc.info", "extranet-help-desk26.com", "file-load-20.info", "haksdkweqw219dms.com", "img-load2280.info", "load-file0228.info", "load-file2754.info", "reservationcheckid9567.info", "testload19.skin", "file-download.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/exclusions for the ThreatFox: TonRAT IOCs detection rule in an enterprise environment:
Scenario 1: Automated Endpoint Security Scans
MsMpEng.exe (Microsoft Defender) or FalconSensor.exe (CrowdStrike), provided the file path resides within the vendor’s installation directory (e.g., C:\Program Files\Microsoft Defender Antivirus).Scenario 2: Legacy Admin Maintenance Scripts
IT_Operations group AND the command line contains the string --mode=maintenance. Additionally, whitelist the specific hash for this legacy script if it is verified as benign.Scenario 3: Third-Party Backup Agent Operations