This detection rule identifies indicators of compromise linked to the TonRAT remote access trojan, which adversaries leverage to establish persistent footholds and execute lateral movement within compromised networks. Proactively hunting for these specific IOCs in Azure Sentinel is critical because early identification of TonRAT activity enables rapid containment before attackers can exfiltrate sensitive data or deploy additional payloads.
Malware Family: TonRAT Total IOCs: 4 IOC Types: domain
| Type | Value | Threat Type | First Seen | Confidence |
|---|---|---|---|---|
| domain | drive-photopage.info | payload_delivery | 2026-08-10 | 100% |
| domain | folder-photohotel.info | payload_delivery | 2026-08-10 | 100% |
| domain | guestsafeimage.icu | payload_delivery | 2026-08-10 | 100% |
| domain | load-drivefile.info | payload_delivery | 2026-08-10 | 100% |
// Hunt for DNS queries to known malicious domains
// Source: ThreatFox - TonRAT
let malicious_domains = dynamic(["drive-photopage.info", "folder-photohotel.info", "guestsafeimage.icu", "load-drivefile.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: Legitimate Endpoint Protection Scanning
ProcessName matches MsMpEng.exe, CnsNotify.exe, or csagent.exe. Additionally, filter out events originating from specific system paths such as C:\Program Files\Microsoft Defender\Antimalware\ or C:\ProgramData\CrowdStrike\.Scenario: Scheduled Backup and Archiving Jobs
ParentProcessName matching backup service executables (e.g., vssvc.exe, veeamagent.exe) and restrict triggers to business hours (08:00–18:00) if the IOCs are known to be triggered by off-hour backups. Alternatively, exclude file paths containing keywords like \Backup\ or \Staging\.Scenario: Software Deployment via Configuration Management