This hunt detects adversary behavior consistent with Agent Tesla malware by monitoring for specific indicators of compromise such as unique file hashes and network connections to known command-and-control infrastructure. Proactively hunting for these IOCs in Azure Sentinel is critical because early identification of this remote access trojan can prevent lateral movement and data exfiltration before the threat establishes persistence across the environment.
Malware Family: Agent Tesla Total IOCs: 4 IOC Types: domain
| Type | Value | Threat Type | First Seen | Confidence |
|---|---|---|---|---|
| domain | ftp.altatsradgez.com | botnet_cc | 2026-07-09 | 100% |
| domain | ftp.piovau.com | botnet_cc | 2026-07-09 | 100% |
| domain | ftp.duct-master.com | botnet_cc | 2026-07-09 | 100% |
| domain | ftp.cantablew.top | botnet_cc | 2026-07-09 | 100% |
// Hunt for DNS queries to known malicious domains
// Source: ThreatFox - Agent Tesla
let malicious_domains = dynamic(["ftp.altatsradgez.com", "ftp.piovau.com", "ftp.duct-master.com", "ftp.cantablew.top"]);
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 four specific false positive scenarios for the ThreatFox: Agent Tesla IOCs detection rule in an enterprise environment, along with suggested filters or exclusions:
IT Asset Management Scans via SCCM/MECM
ConfigMgr.exe agent may spawn child processes that interact with specific registry keys or network ports monitored by the Agent Tesla IOCs to verify device compliance. This legitimate background activity can mimic the initial handshake patterns of a remote access tool.\Microsoft\CCM\ and parent process names ccmexec.exe. Additionally, exclude network traffic originating from the SCCM site server IP range during defined maintenance windows (e.g., 02:00–04:00 UTC).Endpoint Detection and Response (EDR) Self-Updates
*.falcon.crowdstrike.com or *.microsoft.com) and restrict alerting to the specific hash signatures of the EDR updater executable (FalconService.exe or MsMpEng.exe).Remote Desktop Administration via Citrix/VMware Horizon