This detection identifies potential unknown malware infections by correlating five distinct indicators of compromise that may evade standard signature-based defenses. Proactively hunting for these IOCs in Azure Sentinel is critical to rapidly isolate early-stage threats before they establish persistence or exfiltrate sensitive data from the environment.
Malware Family: Unknown malware Total IOCs: 5 IOC Types: ip:port, domain
| Type | Value | Threat Type | First Seen | Confidence |
|---|---|---|---|---|
| ip:port | 194[.]26[.]192[.]117:7443 | botnet_cc | 2026-07-05 | 75% |
| domain | mekasa.pro | payload_delivery | 2026-07-05 | 100% |
| ip:port | 18[.]190[.]175[.]45:7443 | botnet_cc | 2026-07-05 | 100% |
| ip:port | 18[.]136[.]74[.]230:8888 | botnet_cc | 2026-07-05 | 100% |
| ip:port | 154[.]220[.]94[.]57:8888 | botnet_cc | 2026-07-05 | 100% |
// Hunt for network connections to known malicious IPs
// Source: ThreatFox - Unknown malware
let malicious_ips = dynamic(["18.190.175.45", "194.26.192.117", "154.220.94.57", "18.136.74.230"]);
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(["18.190.175.45", "194.26.192.117", "154.220.94.57", "18.136.74.230"]);
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(["mekasa.pro"]);
DnsEvents
| where Name has_any (malicious_domains)
| project TimeGenerated, Computer, Name, IPAddresses, QueryType
| order by TimeGenerated 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 |
Here are 4 specific false positive scenarios for the ThreatFox: Unknown malware IOCs rule in an enterprise environment, along with suggested filters or exclusions:
Endpoint Protection Engine Updates & Signature Refreshes
10.x.x.x ranges for CrowdStrike or Microsoft Azure Update endpoints) and specifically filtering out processes named CfEngine.exe, MsMpEng.exe, or S1Service.exe when communicating with their respective update domains.Automated Software Deployment via Configuration Management
DOMAIN\SCCM_Service_Account or ansible-runner) and restrict alerts to only trigger if the file path is outside of standard deployment directories like C:\Windows\CCMCache or