This hunt detects adversary behavior characterized by the presence of eleven distinct indicators of compromise (IOCs) linked to previously unidentified malware strains within the Azure Sentinel environment. Proactive hunting is essential because these unknown threats often evade signature-based detection, requiring manual correlation and rapid response to prevent potential lateral movement or data exfiltration before automated rules can be refined.
Malware Family: Unknown malware Total IOCs: 11 IOC Types: ip:port, url
| Type | Value | Threat Type | First Seen | Confidence |
|---|---|---|---|---|
| url | hxxps://pol[.]1000boger.com/ | payload_delivery | 2026-07-25 | 90% |
| ip:port | 60[.]205[.]115[.]92:44321 | botnet_cc | 2026-07-25 | 100% |
| ip:port | 60[.]205[.]115[.]92:4330 | botnet_cc | 2026-07-25 | 100% |
| ip:port | 111[.]170[.]148[.]134:22 | botnet_cc | 2026-07-25 | 100% |
| ip:port | 60[.]205[.]115[.]92:44323 | botnet_cc | 2026-07-25 | 100% |
| ip:port | 60[.]205[.]115[.]92:80 | botnet_cc | 2026-07-25 | 100% |
| ip:port | 60[.]205[.]115[.]92:22 | botnet_cc | 2026-07-25 | 100% |
| ip:port | 60[.]205[.]115[.]92:443 | botnet_cc | 2026-07-25 | 100% |
| ip:port | 189[.]141[.]45[.]95:7443 | botnet_cc | 2026-07-25 | 100% |
| ip:port | 203[.]195[.]217[.]161:22 | botnet_cc | 2026-07-25 | 100% |
| ip:port | 111[.]170[.]148[.]134:9000 | botnet_cc | 2026-07-25 | 100% |
// Hunt for network connections to known malicious IPs
// Source: ThreatFox - Unknown malware
let malicious_ips = dynamic(["60.205.115.92", "203.195.217.161", "189.141.45.95", "111.170.148.134"]);
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(["60.205.115.92", "203.195.217.161", "189.141.45.95", "111.170.148.134"]);
DeviceNetworkEvents
| where RemoteIP in (malicious_ips)
| project Timestamp, DeviceName, RemoteIP, RemotePort, InitiatingProcessFileName, ActionType
| order by Timestamp desc
// Hunt for access to known malicious URLs
// Source: ThreatFox - Unknown malware
let malicious_urls = dynamic(["https://pol.1000boger.com/"]);
UrlClickEvents
| where Url has_any (malicious_urls)
| project Timestamp, AccountUpn, Url, ActionType, IsClickedThrough
| order by Timestamp desc
| Sentinel Table | Notes |
|---|---|
CommonSecurityLog | Ensure this data connector is enabled |
DeviceNetworkEvents | Ensure this data connector is enabled |
UrlClickEvents | Ensure this data connector is enabled |
Scenario: Enterprise Antivirus Signature Updates
AV-UPDATE-SRV01) or where the file extension is specific to signature updates (.cab, .dat). Additionally, filter out events occurring within a 30-minute window after the scheduled update job runs.Scenario: Development Environment Deployment Pipelines
10.20.45.0/24) or where the process name contains known pipeline identifiers like jenkins-agent or azure-build-runner.Scenario: Third-Party Software Patching Cycles