This rule detects the presence of six specific indicators of compromise associated with an unidentified malware strain, signaling a potential active infection or staging activity within the environment. Proactively hunting for these IOCs in Azure Sentinel is critical to identify and isolate compromised assets before the unknown malware can establish persistence or execute lateral movement.
Malware Family: Unknown malware Total IOCs: 6 IOC Types: url, domain, ip:port
| Type | Value | Threat Type | First Seen | Confidence |
|---|---|---|---|---|
| ip:port | 92[.]223[.]85[.]43:7443 | botnet_cc | 2026-09-11 | 75% |
| ip:port | 193[.]111[.]77[.]180:443 | botnet_cc | 2026-09-11 | 75% |
| ip:port | 193[.]111[.]77[.]180:7443 | botnet_cc | 2026-09-11 | 75% |
| url | hxxps://balancasriograndense.com.br/ | payload_delivery | 2026-09-11 | 90% |
| domain | casasdeplayacostarica.com | payload_delivery | 2026-09-11 | 75% |
| ip:port | 111[.]170[.]148[.]132:12345 | botnet_cc | 2026-09-11 | 100% |
// Hunt for network connections to known malicious IPs
// Source: ThreatFox - Unknown malware
let malicious_ips = dynamic(["193.111.77.180", "92.223.85.43", "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(["193.111.77.180", "92.223.85.43", "111.170.148.132"]);
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(["casasdeplayacostarica.com"]);
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://balancasriograndense.com.br/"]);
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 |
ansible-playbook.exe, terraform.exe, or kubectl.exe and the user account belongs to the svc-devops or ci-cd service account group.%TEMP% or C:\ProgramData that matches an IOC file path or hash.
MsMpEng.exe (Defender) or FalconSensor.exe (CrowdStrike) and the file path contains ProgramData or Temp directories associated with known EDR vendor folders..zip or .tar.gz archive from the internal file server and extracting it to a working directory, triggering a file hash or path-based IOC.
Expand-Archive or tar -x and the source path is on the internal file server (e.g., \\fileserver01\tools\) or the user is in the Domain Admins or IT-Admins group.