This hypothesis detects TonRAT activity by identifying indicators of compromise associated with a remote access trojan that establishes persistence through phishing vectors to execute commands and exfiltrate sensitive data. A proactive hunt is essential in Azure Sentinel to rapidly identify initial infection points via malicious email links or attachments, thereby preventing the establishment of long-term unauthorized access before attackers can fully entrench their command-and-control infrastructure.
Malware Family: TonRAT Total IOCs: 2 IOC Types: domain
| Type | Value | Threat Type | First Seen | Confidence |
|---|---|---|---|---|
| domain | fileview-directa.info | payload_delivery | 2026-08-03 | 100% |
| domain | viewphotodrive.info | payload_delivery | 2026-08-03 | 100% |
// Hunt for DNS queries to known malicious domains
// Source: ThreatFox - TonRAT
let malicious_domains = dynamic(["fileview-directa.info", "viewphotodrive.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 5 specific false positive scenarios for the ThreatFox: TonRAT IOCs detection rule, including suggested filters and exclusions tailored for an enterprise environment:
Scenario: Legitimate Phishing Simulation Campaigns
@knowbe4.com, @proofpoint.com) and specific internal campaign subdomains in the detection logic.Scenario: Scheduled Remote Management Tasks
DOMAIN\svc-intune, DOMAIN\svc-sccm) or whitelist the executable hashes of known RMM agents (IntuneAgent.exe, TeamViewer_Service.exe).Scenario: Automated Backup and Data Exfiltration Jobs