← 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-05T23:00:00Z · Confidence: high

Hunt Hypothesis

This rule detects the presence of Agent Tesla, a remote access trojan that injects into processes to capture sensitive data such as credentials and keystrokes. Proactively hunting for these IOCs in Azure Sentinel allows the SOC to identify compromised endpoints early, preventing the exfiltration of critical business data before the adversary achieves their objectives.

IOC Summary

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

TypeValueThreat TypeFirst SeenConfidence
md5_hash22ce7aa4be44869abd89ae411023739cpayload2026-09-0595%
sha256_hash0e8021b43a43c8927aadebd29f5c04d0c6500d5f91f18f10e169695e7870c82cpayload2026-09-0595%
sha1_hash43b89773b250ed4cb5a9a8b1fa56db88260ccbbdpayload2026-09-0595%

KQL: Hash Hunt

// Hunt for files matching known malicious hashes
// Source: ThreatFox - Agent Tesla
let malicious_hashes = dynamic(["22ce7aa4be44869abd89ae411023739c", "0e8021b43a43c8927aadebd29f5c04d0c6500d5f91f18f10e169695e7870c82c", "43b89773b250ed4cb5a9a8b1fa56db88260ccbbd"]);
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/