← Back to SOC feed Coverage →

ThreatFox: Agent Tesla IOCs

ioc-hunt HIGH ThreatFox
DeviceFileEvents
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-09-04T11:00:00Z · Confidence: high

Hunt Hypothesis

This hypothesis targets the presence of Agent Tesla, a keylogger that injects into processes to steal credentials and keystrokes, often introduced via phishing campaigns. Proactively hunting for these IOCs in Azure Sentinel allows the SOC to identify compromised endpoints early, preventing the exfiltration of sensitive data to command-and-control servers before an adversary achieves full persistence.

IOC Summary

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

TypeValueThreat TypeFirst SeenConfidence
md5_hashe2b4438f72c986add83c9d96d5aa46f7payload2026-09-0495%
sha256_hash252f94e8ae17237b19cb38dd3b82e8c09f53c33a323d4a6a6ddd202dd4b59435payload2026-09-0495%
sha1_hash463b0ea39778cad205d21bb657b044dcd889f289payload2026-09-0495%

KQL: Hash Hunt

// Hunt for files matching known malicious hashes
// Source: ThreatFox - Agent Tesla
let malicious_hashes = dynamic(["e2b4438f72c986add83c9d96d5aa46f7", "252f94e8ae17237b19cb38dd3b82e8c09f53c33a323d4a6a6ddd202dd4b59435", "463b0ea39778cad205d21bb657b044dcd889f289"]);
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

References

False Positive Guidance

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