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

Hunt Hypothesis

This hunt targets the presence of Agent Tesla, a prevalent infostealer that exfiltrates credentials and sensitive data, by matching known IOCs to identify compromised endpoints. Proactively hunting for these indicators in Azure Sentinel allows the SOC to detect and isolate active infections before they establish persistence or exfiltrate data, mitigating the high severity risk associated with this common ransomware precursor.

IOC Summary

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

TypeValueThreat TypeFirst SeenConfidence
domainftp.sequences.digitalbotnet_cc2026-09-13100%
sha1_hash1406c0b27cbb8d9b4d50e4eef4d5d1992a8fd566payload2026-09-1395%
md5_hash47f3ce7738a7a1e5bfdd668a3f4e4b77payload2026-09-1395%
sha256_hashd5e8fa1f1a4b3e2aabb4f7b8e2c795b380703474be49e27928b69778153e274fpayload2026-09-1395%
sha1_hashe0faaa80311ada88e8d580e2f618d0efa00aa4eepayload2026-09-1395%
md5_hash5a71e6c07c13f03c7839b0631013d91fpayload2026-09-1395%
sha1_hash00279fe0b46466c6e23cf9c72ac09cf95e969ec8payload2026-09-1395%
md5_hash017d1815c562d887c711c3d5f9ca3cfapayload2026-09-1395%
sha256_hash3ad1bdbba40ea98cc2a89e0e13ec9632cbbbc11306bc04e1203dee1513b95ce9payload2026-09-1395%
sha256_hashc8ef459350bca905aa1576c61090ac8f30cdc675a14fb81e07913b072da6fb9apayload2026-09-1395%

KQL: Domain Hunt

// Hunt for DNS queries to known malicious domains
// Source: ThreatFox - Agent Tesla
let malicious_domains = dynamic(["ftp.sequences.digital"]);
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(["1406c0b27cbb8d9b4d50e4eef4d5d1992a8fd566", "47f3ce7738a7a1e5bfdd668a3f4e4b77", "d5e8fa1f1a4b3e2aabb4f7b8e2c795b380703474be49e27928b69778153e274f", "e0faaa80311ada88e8d580e2f618d0efa00aa4ee", "5a71e6c07c13f03c7839b0631013d91f", "00279fe0b46466c6e23cf9c72ac09cf95e969ec8", "017d1815c562d887c711c3d5f9ca3cfa", "3ad1bdbba40ea98cc2a89e0e13ec9632cbbbc11306bc04e1203dee1513b95ce9", "c8ef459350bca905aa1576c61090ac8f30cdc675a14fb81e07913b072da6fb9a"]);
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

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