This detection rule identifies the presence of known Agent Tesla indicators of compromise (IOCs) to uncover active reconnaissance or data exfiltration campaigns targeting Azure Sentinel environments. Proactive hunting for these specific signatures is critical because Agent Tesla’s sophisticated keylogging and remote access capabilities can silently compromise sensitive credentials before traditional alerts trigger, necessitating early intervention to prevent lateral movement.
Malware Family: Agent Tesla Total IOCs: 2 IOC Types: url, domain
| Type | Value | Threat Type | First Seen | Confidence |
|---|---|---|---|---|
| domain | narang.cfd | botnet_cc | 2026-08-20 | 100% |
| url | hxxps://api.telegram.org/bot8758444991:AAFF69OIaaE8t3nxSJfNYHB1J5BXA71IuyI/ | botnet_cc | 2026-08-20 | 50% |
// Hunt for DNS queries to known malicious domains
// Source: ThreatFox - Agent Tesla
let malicious_domains = dynamic(["narang.cfd"]);
DnsEvents
| where Name has_any (malicious_domains)
| project TimeGenerated, Computer, Name, IPAddresses, QueryType
| order by TimeGenerated desc
// Hunt for access to known malicious URLs
// Source: ThreatFox - Agent Tesla
let malicious_urls = dynamic(["https://api.telegram.org/bot8758444991:AAFF69OIaaE8t3nxSJfNYHB1J5BXA71IuyI/"]);
UrlClickEvents
| where Url has_any (malicious_urls)
| project Timestamp, AccountUpn, Url, ActionType, IsClickedThrough
| order by Timestamp desc
| Sentinel Table | Notes |
|---|---|
DnsEvents | Ensure this data connector is enabled |
UrlClickEvents | Ensure this data connector is enabled |
Here are specific false positive scenarios and corresponding filters for the ThreatFox: Agent Tesla IOCs detection rule in an enterprise environment:
Scenario 1: Endpoint Protection Scanning Artifacts
C:\Program Files\CrowdStrike\fs_qscan.exe or C:\Windows\System32\mpcmdrun.exe) when they initiate file downloads or extraction tasks in the Temp directory.Scenario 2: Scheduled Backup and Imaging Jobs
C:\Backup or D:\Staging directories.Veeam.Backup.Service.exe) and restrict the rule trigger to exclude file paths containing \Backup\, \Temp\, or specific staging folders used by the imaging software.Scenario 3: IT Admin Deployment via Configuration Management