← Back to SOC feed Coverage →

ThreatFox: Agent Tesla IOCs

ioc-hunt HIGH ThreatFox
DeviceFileEventsDnsEvents
iocthreatfoxwin-agent_tesla
This rule was pulled from an open-source repository and enriched with AI. Validate in a test environment before deploying to production.
View original rule at ThreatFox →
Retrieved: 2026-07-13T23:00:01Z · Confidence: high

Hunt Hypothesis

This detection rule identifies adversary activity consistent with Agent Tesla malware by monitoring for specific indicators of compromise such as suspicious process execution and network connections to known malicious infrastructure. Proactively hunting for these behaviors in Azure Sentinel is critical because early identification of this remote access trojan allows the SOC team to contain potential data exfiltration and credential theft before lateral expansion occurs across the enterprise environment.

IOC Summary

Malware Family: Agent Tesla Total IOCs: 3 IOC Types: domain, md5_hash, sha1_hash

TypeValueThreat TypeFirst SeenConfidence
domainftp.maytestlasb.combotnet_cc2026-07-13100%
sha1_hashb4875cd62a35191d2d62b541a1b4e5505b71e0edpayload2026-07-1395%
md5_hashe57a87dc9ab5bd0bf814434f9579cfffpayload2026-07-1395%

KQL: Domain Hunt

// Hunt for DNS queries to known malicious domains
// Source: ThreatFox - Agent Tesla
let malicious_domains = dynamic(["ftp.maytestlasb.com"]);
DnsEvents
| where Name has_any (malicious_domains)
| project TimeGenerated, Computer, Name, IPAddresses, QueryType
| order by TimeGenerated desc

KQL: Hash Hunt

// Hunt for files matching known malicious hashes
// Source: ThreatFox - Agent Tesla
let malicious_hashes = dynamic(["b4875cd62a35191d2d62b541a1b4e5505b71e0ed", "e57a87dc9ab5bd0bf814434f9579cfff"]);
DeviceFileEvents
| where SHA256 in (malicious_hashes) or SHA1 in (malicious_hashes) or MD5 in (malicious_hashes)
| project Timestamp, DeviceName, FileName, FolderPath, SHA256, InitiatingProcessFileName
| order by Timestamp desc

Required Data Sources

Sentinel TableNotes
DeviceFileEventsEnsure this data connector is enabled
DnsEventsEnsure this data connector is enabled

References

False Positive Guidance

Here are specific false positive scenarios and corresponding exclusion strategies for the ThreatFox: Agent Tesla IOCs detection rule in an enterprise environment:

Original source: https://threatfox.abuse.ch/browse/malware/win.agent_tesla/