This detection rule identifies potential compromise by monitoring network and endpoint logs for activity matching a curated set of 52 indicators of compromise (IOCs) linked to previously unidentified malware strains. Proactive hunting in Azure Sentinel is essential because these unknown threats often lack established signatures, requiring manual correlation of emerging IOCs to detect early-stage infections before they escalate into widespread incidents.
Malware Family: Unknown malware Total IOCs: 52 IOC Types: url, sha256_hash, ip:port, md5_hash, domain
| Type | Value | Threat Type | First Seen | Confidence |
|---|---|---|---|---|
| domain | mrarmksmsx.com | botnet_cc | 2026-08-07 | 100% |
| ip:port | 136[.]244[.]104[.]161:3333 | botnet_cc | 2026-08-07 | 75% |
| ip:port | 136[.]244[.]104[.]161:3334 | botnet_cc | 2026-08-07 | 75% |
| domain | findupdatereu.com | botnet_cc | 2026-08-07 | 100% |
| url | hxxps://serve.eastpeak.xyz/health | botnet_cc | 2026-08-07 | 100% |
| domain | serve.eastpeak.xyz | botnet_cc | 2026-08-07 | 100% |
| domain | id-verif-code.info | payload_delivery | 2026-08-07 | 100% |
| domain | molerok.mom | payload_delivery | 2026-08-07 | 100% |
| ip:port | 185[.]250[.]180[.]40:5555 | botnet_cc | 2026-08-07 | 75% |
| ip:port | 147[.]45[.]39[.]50:41117 | botnet_cc | 2026-08-07 | 75% |
| domain | grove-89.com | payload_delivery | 2026-08-07 | 100% |
| sha256_hash | 29be0f56275f051181ea3ec37ddc3d3807cde34cb65de855709fae0e13786a40 | payload | 2026-08-07 | 100% |
| md5_hash | 2169ff5e7be77fc3ff72758f9fa50658 | payload | 2026-08-07 | 100% |
| domain | prestigechauffeurs.com.au | payload_delivery | 2026-08-07 | 100% |
| domain | someapiz.mom | payload_delivery | 2026-08-07 | 100% |
| domain | jardinemajorelle.mom | payload_delivery | 2026-08-07 | 100% |
| domain | cliffsfomoher.mom | payload_delivery | 2026-08-07 | 100% |
| domain | cliffsomoher.mom | payload_delivery | 2026-08-07 | 100% |
| domain | cliiffsofmoher.mom | payload_delivery | 2026-08-07 | 100% |
| domain | clifsofmoher.mom | payload_delivery | 2026-08-07 | 100% |
| domain | cliffsmouhur.mom | payload_delivery | 2026-08-07 | 100% |
| domain | blarneycastle.mom | payload_delivery | 2026-08-07 | 100% |
| domain | museummacan.mom | payload_delivery | 2026-08-07 | 100% |
| domain | mediamarkt.mom | payload_delivery | 2026-08-07 | 100% |
| domain | arqenntta.mom | payload_delivery | 2026-08-07 | 100% |
// Hunt for network connections to known malicious IPs
// Source: ThreatFox - Unknown malware
let malicious_ips = dynamic(["136.244.104.161", "185.250.180.40", "147.45.39.50", "101.37.210.236", "8.218.211.108", "139.212.143.218"]);
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(["136.244.104.161", "185.250.180.40", "147.45.39.50", "101.37.210.236", "8.218.211.108", "139.212.143.218"]);
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(["mrarmksmsx.com", "findupdatereu.com", "serve.eastpeak.xyz", "id-verif-code.info", "molerok.mom", "grove-89.com", "prestigechauffeurs.com.au", "someapiz.mom", "jardinemajorelle.mom", "cliffsfomoher.mom", "cliffsomoher.mom", "cliiffsofmoher.mom", "clifsofmoher.mom", "cliffsmouhur.mom", "blarneycastle.mom", "museummacan.mom", "mediamarkt.mom", "arqenntta.mom", "argennnta.mom", "argnetta.mom", "mallaak.mom", "otphankahr.mom", "biancomonte.mom", "gvnlwdcrl.mom", "astrolline.mom", "helixr2sncrd3ndsz5oho6mzqw3x5u7mvox5zcsngc5wm7v4l5k7oryd.onion", "helix2kvkqjzrkh3ospyukij7uemxwvbdmqberjmrudjmqy4hspwzzqd.onion", "mudrabali.com", "www.mixologyvape.co.nz", "msdnsreset.icu", "prezibase.com", "0x0321c73150543faa9d016c9c46abf293eb6839e4", "jlmarble.com.au", "uzibfmopqrkgcjl.is-a-therapist.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://serve.eastpeak.xyz/health", "https://generatoryieldlab.com/", "https://quietshalecompany.com/", "https://simplecopseholding.com/", "http://165.22.69.214/cat.sh"]);
UrlClickEvents
| where Url has_any (malicious_urls)
| project Timestamp, AccountUpn, Url, ActionType, IsClickedThrough
| order by Timestamp desc
// Hunt for files matching known malicious hashes
// Source: ThreatFox - Unknown malware
let malicious_hashes = dynamic(["29be0f56275f051181ea3ec37ddc3d3807cde34cb65de855709fae0e13786a40", "2169ff5e7be77fc3ff72758f9fa50658"]);
DeviceFileEvents
| where SHA256 in (malicious_hashes) or SHA1 in (malicious_hashes) or MD5 in (malicious_hashes)
| project Timestamp, DeviceName, FileName, FolderPath, SHA256, InitiatingProcessFileName
| order by Timestamp desc
| Sentinel Table | Notes |
|---|---|
CommonSecurityLog | Ensure this data connector is enabled |
DeviceFileEvents | 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 |
Scenario: Enterprise Antivirus/EDR Scheduled Scan
Host_OS = Windows Server 2019 AND Process_Name = MsMpEng.exe) and a Time Window (exclude alerts occurring between 01:30 AM and 04:00 AM daily).Scenario: Automated Patch Deployment via Configuration Management
Process_Name contains Ansible, ccmsetup.exe, or TaskScheduler) and the User Context is a service account (e.g., Domain\User$).Scenario: Third-Party Cloud Backup Agent Activity