This hunt identifies potential DanaBot infections by correlating known indicators of compromise with asset telemetry to detect the presence of this high-severity banking trojan. Proactively hunting for these IOCs in Azure Sentinel is critical to uncover dormant or stealthy intrusions before the adversary can leverage the malware to intercept credentials or deploy additional payloads.
Malware Family: DanaBot Total IOCs: 2 IOC Types: ip:port
| Type | Value | Threat Type | First Seen | Confidence |
|---|---|---|---|---|
| ip:port | 207[.]211[.]189[.]214:443 | botnet_cc | 2026-09-24 | 75% |
| ip:port | 177[.]22[.]119[.]68:9001 | botnet_cc | 2026-09-24 | 75% |
// Hunt for network connections to known malicious IPs
// Source: ThreatFox - DanaBot
let malicious_ips = dynamic(["207.211.189.214", "177.22.119.68"]);
CommonSecurityLog
| where DestinationIP in (malicious_ips) or SourceIP in (malicious_ips)
| project TimeGenerated, SourceIP, DestinationIP, DestinationPort, DeviceAction, Activity
| order by TimeGenerated desc
// Hunt in Defender for Endpoint network events
let malicious_ips = dynamic(["207.211.189.214", "177.22.119.68"]);
DeviceNetworkEvents
| where RemoteIP in (malicious_ips)
| project Timestamp, DeviceName, RemoteIP, RemotePort, InitiatingProcessFileName, ActionType
| order by Timestamp desc
| Sentinel Table | Notes |
|---|---|
CommonSecurityLog | Ensure this data connector is enabled |
DeviceNetworkEvents | Ensure this data connector is enabled |
curl or wget to download a build artifact or dependency package from a public CDN that shares the same IP address or domain listed in the DanaBot IOC set (e.g., a shared hosting provider or a compromised mirror).
curl.exe, wget.exe, or powershell.exe and the destination path is within standard development directories (e.g., C:\Users\<User>\.nuget\, C:\dev\, or C:\builds\).schtasks.exe or a specific service like BackupAgent.exe) and the user context is a non-interactive service account (e.g., DOMAIN\svc-backup or NT AUTHORITY\SYSTEM).nmap or Masscan to scan internal segments, inadvertently hitting an IOC IP that is also a legitimate internal monitoring or telemetry endpoint.
nmap.exe, masscan.exe, zmap.exe) or where the user is part of the SecurityOps or ThreatHunt AD group.