This detection rule identifies unknown malware indicators that adversaries utilize to exfiltrate sensitive data and establish persistent access through compromised credentials or exploited vulnerabilities. The SOC team should proactively hunt for these signals in Azure Sentinel to rapidly identify stealthy threats before they can solidify their foothold and execute long-term data theft operations.
Malware Family: Unknown malware Total IOCs: 11 IOC Types: ip:port, url
| Type | Value | Threat Type | First Seen | Confidence |
|---|---|---|---|---|
| ip:port | 111[.]170[.]148[.]132:18082 | botnet_cc | 2026-08-16 | 100% |
| ip:port | 2[.]27[.]63[.]244:443 | botnet_cc | 2026-08-16 | 100% |
| ip:port | 111[.]170[.]148[.]132:10001 | botnet_cc | 2026-08-16 | 100% |
| ip:port | 111[.]170[.]148[.]132:10003 | botnet_cc | 2026-08-16 | 100% |
| ip:port | 155[.]117[.]155[.]237:7443 | botnet_cc | 2026-08-16 | 100% |
| ip:port | 111[.]170[.]148[.]132:3306 | botnet_cc | 2026-08-15 | 100% |
| ip:port | 91[.]236[.]230[.]143:7443 | botnet_cc | 2026-08-15 | 75% |
| ip:port | 143[.]110[.]197[.]12:65000 | botnet_cc | 2026-08-15 | 75% |
| ip:port | 102[.]117[.]167[.]183:7443 | botnet_cc | 2026-08-15 | 100% |
| url | hxxps://cuuwa.ca/ | payload_delivery | 2026-08-15 | 90% |
| ip:port | 111[.]170[.]148[.]132:13000 | botnet_cc | 2026-08-15 | 100% |
// Hunt for network connections to known malicious IPs
// Source: ThreatFox - Unknown malware
let malicious_ips = dynamic(["91.236.230.143", "2.27.63.244", "102.117.167.183", "155.117.155.237", "143.110.197.12", "111.170.148.132"]);
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(["91.236.230.143", "2.27.63.244", "102.117.167.183", "155.117.155.237", "143.110.197.12", "111.170.148.132"]);
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://cuuwa.ca/"]);
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 |
Here are 5 specific false positive scenarios for the ThreatFox: Unknown malware IOCs detection rule, including suggested filters and exclusions tailored for an enterprise environment:
Scenario: Automated Endpoint Antivirus Definition Updates
svc-crowdstrike or NT SERVICE\DefenderSvc) connecting to known vendor update domains (e.g., *.crowdstrike.com, *.microsoft.com). Additionally, filter out processes with a known “Update” signature in the file path.Scenario: Scheduled Backup and Data Archiving Jobs
VeeamBackupService, CommvaultAgent) during defined maintenance windows (e.g., 02:00–06:00 local time). Filter alerts where the destination IP belongs to the organization’s known cloud storage CIDR blocks.Scenario: Software Deployment via Configuration Management Tools