This hunt detects adversary behavior characterized by the presence of fifteen distinct indicators of compromise (IOCs) linked to previously unidentified malware strains within the Azure Sentinel environment. Proactively hunting for these unknown threats is critical to enable early detection and rapid containment before the malware can establish persistence or propagate laterally across the organization’s cloud infrastructure.
Malware Family: Unknown malware Total IOCs: 15 IOC Types: url, ip:port, domain
| Type | Value | Threat Type | First Seen | Confidence |
|---|---|---|---|---|
| ip:port | 152[.]228[.]249[.]243:443 | botnet_cc | 2026-07-31 | 50% |
| url | hxxps://qyvbm.fun/api/command | botnet_cc | 2026-07-31 | 50% |
| domain | qyvbm.fun | botnet_cc | 2026-07-31 | 50% |
| ip:port | 217[.]60[.]11[.]126:443 | botnet_cc | 2026-07-31 | 50% |
| ip:port | 188[.]166[.]238[.]207:7443 | botnet_cc | 2026-07-31 | 100% |
| ip:port | 77[.]110[.]127[.]186:443 | payload_delivery | 2026-07-31 | 100% |
| domain | hairpi9911.icu | payload_delivery | 2026-07-31 | 100% |
| ip:port | 95[.]133[.]166[.]43:7443 | botnet_cc | 2026-07-31 | 75% |
| domain | www.contratoscliente.online | payload_delivery | 2026-07-31 | 100% |
| domain | fosterandfunnel.com | payload_delivery | 2026-07-31 | 75% |
| domain | awantunai.co.id | payload_delivery | 2026-07-31 | 75% |
| ip:port | 114[.]66[.]58[.]253:3232 | botnet_cc | 2026-07-31 | 100% |
| ip:port | 114[.]66[.]58[.]253:8889 | botnet_cc | 2026-07-31 | 100% |
| ip:port | 114[.]66[.]58[.]253:22 | botnet_cc | 2026-07-31 | 100% |
| ip:port | 114[.]66[.]58[.]253:80 | botnet_cc | 2026-07-31 | 100% |
// Hunt for network connections to known malicious IPs
// Source: ThreatFox - Unknown malware
let malicious_ips = dynamic(["188.166.238.207", "77.110.127.186", "95.133.166.43", "114.66.58.253", "217.60.11.126", "152.228.249.243"]);
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(["188.166.238.207", "77.110.127.186", "95.133.166.43", "114.66.58.253", "217.60.11.126", "152.228.249.243"]);
DeviceNetworkEvents
| where RemoteIP in (malicious_ips)
| project Timestamp, DeviceName, RemoteIP, RemotePort, InitiatingProcessFileName, ActionType
| order by Timestamp desc
// Hunt for DNS queries to known malicious domains
// Source: ThreatFox - Unknown malware
let malicious_domains = dynamic(["qyvbm.fun", "hairpi9911.icu", "www.contratoscliente.online", "fosterandfunnel.com", "awantunai.co.id"]);
DnsEvents
| where Name has_any (malicious_domains)
| project TimeGenerated, Computer, Name, IPAddresses, QueryType
| order by TimeGenerated desc
// Hunt for access to known malicious URLs
// Source: ThreatFox - Unknown malware
let malicious_urls = dynamic(["https://qyvbm.fun/api/command"]);
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 |
DnsEvents | Ensure this data connector is enabled |
UrlClickEvents | Ensure this data connector is enabled |
Here are specific false positive scenarios and corresponding filters for the ThreatFox: Unknown malware IOCs detection rule in an enterprise environment:
Scenario: Automated Endpoint Protection Scans generating high-volume network traffic.
svc-antivirus-scan) or restrict alerts to only trigger when the source process is not one of the known AV executables (e.g., MsMpEng.exe, FalconSensor.exe).Scenario: Legitimate Software Deployment via Configuration Management Tools.
ccmexec.exe, ansible-runner) and the destination IP range falls within the enterprise’s internal Software Distribution Network or trusted CDN subnets.Scenario: Developer Workstations executing CI/CD Artifacts.