← Back to SOC feed Coverage →

ThreatFox: Agent Tesla IOCs

ioc-hunt HIGH ThreatFox
CommonSecurityLogDeviceNetworkEventsDnsEvents
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-08-11T11:00:00Z · Confidence: high

Hunt Hypothesis

This detection rule identifies potential Agent Tesla malware infections by monitoring for specific Indicators of Compromise (IOCs) known to facilitate remote access and data exfiltration. A proactive hunt is essential in Azure Sentinel to rapidly isolate compromised endpoints before adversaries can establish persistence or steal sensitive credentials across the enterprise network.

IOC Summary

Malware Family: Agent Tesla Total IOCs: 2 IOC Types: ip:port, domain

TypeValueThreat TypeFirst SeenConfidence
domainmail.outlook-office365.combotnet_cc2026-08-11100%
ip:port195[.]250[.]27[.]46:21botnet_cc2026-08-1175%

KQL: Ip Hunt

// Hunt for network connections to known malicious IPs
// Source: ThreatFox - Agent Tesla
let malicious_ips = dynamic(["195.250.27.46"]);
CommonSecurityLog
| where DestinationIP in (malicious_ips) or SourceIP in (malicious_ips)
| project TimeGenerated, SourceIP, DestinationIP, DestinationPort, DeviceAction, Activity
| order by TimeGenerated desc

KQL: Ip Hunt Device

// Hunt in Defender for Endpoint network events
let malicious_ips = dynamic(["195.250.27.46"]);
DeviceNetworkEvents
| where RemoteIP in (malicious_ips)
| project Timestamp, DeviceName, RemoteIP, RemotePort, InitiatingProcessFileName, ActionType
| order by Timestamp desc

KQL: Domain Hunt

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

Required Data Sources

Sentinel TableNotes
CommonSecurityLogEnsure this data connector is enabled
DeviceNetworkEventsEnsure this data connector is enabled
DnsEventsEnsure this data connector is enabled

References

False Positive Guidance

False Positive Scenarios: ThreatFox: Agent Tesla IOCs

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