This hypothesis targets the presence of DanaBot malware, which facilitates command-and-control communications and data exfiltration, indicating a potential compromise of sensitive assets. Proactively hunting for these IOCs in Azure Sentinel is critical to identify and isolate infected endpoints before the adversary can establish persistent access or complete their exfiltration objectives.
Malware Family: DanaBot Total IOCs: 4 IOC Types: ip:port
| Type | Value | Threat Type | First Seen | Confidence |
|---|---|---|---|---|
| ip:port | 88[.]223[.]43[.]37:443 | botnet_cc | 2026-09-11 | 75% |
| ip:port | 88[.]223[.]43[.]216:443 | botnet_cc | 2026-09-11 | 75% |
| ip:port | 162[.]141[.]69[.]37:443 | botnet_cc | 2026-09-11 | 75% |
| ip:port | 154[.]205[.]175[.]206:443 | botnet_cc | 2026-09-11 | 75% |
// Hunt for network connections to known malicious IPs
// Source: ThreatFox - DanaBot
let malicious_ips = dynamic(["88.223.43.216", "88.223.43.37", "162.141.69.37", "154.205.175.206"]);
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(["88.223.43.216", "88.223.43.37", "162.141.69.37", "154.205.175.206"]);
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 |
env=lab or role=red-team in your asset inventory, or create a dynamic exclusion list for known C2 framework binaries (e.g., beacon.exe, sliver_client.exe) during scheduled testing windows.svc_ansible, chef_client) or exclude connections to known internal IP ranges associated with your configuration management servers.vbrservice.exe, cvpproxy.exe) or exclude network sessions to known backup storage endpoints (e.g., backup.internal.corp, s3.amazonaws.com) during scheduled backup windows.