This detection rule identifies adversary activity consistent with the DanaBot malware by monitoring for specific Indicators of Compromise (IOCs) known to facilitate command-and-control communication and lateral movement. Proactively hunting for these IOCs within Azure Sentinel is critical because early identification allows the SOC team to isolate infected endpoints before the botnet can expand its reach or exfiltrate sensitive data across the cloud environment.
Malware Family: DanaBot Total IOCs: 2 IOC Types: ip:port
| Type | Value | Threat Type | First Seen | Confidence |
|---|---|---|---|---|
| ip:port | 109[.]227[.]35[.]147:4433 | botnet_cc | 2026-06-28 | 75% |
| ip:port | 177[.]22[.]119[.]145:9001 | botnet_cc | 2026-06-28 | 75% |
// Hunt for network connections to known malicious IPs
// Source: ThreatFox - DanaBot
let malicious_ips = dynamic(["177.22.119.145", "109.227.35.147"]);
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(["177.22.119.145", "109.227.35.147"]);
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 |
Here are four specific false positive scenarios for the ThreatFox: DanaBot IOCs detection rule in an enterprise environment, along with targeted filters or exclusions:
Security Team Manual Threat Hunting
falcon-sensor.exe, TenableAgent.exe) rather than a standard user application like chrome.exe or outlook.exe.Scheduled Antivirus Definition Updates
Symantec AntiVirus.exe, McAfee VirusScan Service). Correlate these with successful “Update Completed” logs from the management console to suppress alerts.**IT Admin Deployment of Patched