This detection rule identifies potential compromise by correlating network and endpoint telemetry against eleven specific indicators of unknown malware activity within the Azure environment. Proactively hunting for these signals is critical to uncover stealthy threats that may bypass standard signature-based defenses before they establish persistence or exfiltrate sensitive data.
Malware Family: Unknown malware Total IOCs: 11 IOC Types: sha256_hash, ip:port, url, domain
| Type | Value | Threat Type | First Seen | Confidence |
|---|---|---|---|---|
| url | hxxps://maloke.pro/ | payload_delivery | 2026-07-15 | 90% |
| domain | auth-code-verif.beer | payload_delivery | 2026-07-15 | 100% |
| domain | maloke.pro | payload_delivery | 2026-07-15 | 100% |
| ip:port | 82[.]38[.]171[.]235:8091 | botnet_cc | 2026-07-15 | 75% |
| url | hxxps://productionai-shop.pages.dev/recaptcha-verify | payload_delivery | 2026-07-15 | 90% |
| sha256_hash | 04dcae7c2f31870f4a59ed6faec513a5e252491d911ae9e62b9c3026ccf598cd | payload | 2026-07-15 | 75% |
| url | hxxps://pbhwzixj.boro1.bet/4f9a7c78-781f-4987-9e83-e804fb9a98e2/gc.key | payload_delivery | 2026-07-15 | 75% |
| domain | privatetoken.app | botnet_cc | 2026-07-15 | 75% |
| ip:port | 72[.]5[.]43[.]195:443 | botnet_cc | 2026-07-15 | 70% |
| url | hxxps://watersolutionsfl.com/ | payload_delivery | 2026-07-15 | 90% |
| url | hxxps://marjdl.pro/ | payload_delivery | 2026-07-15 | 90% |
// Hunt for network connections to known malicious IPs
// Source: ThreatFox - Unknown malware
let malicious_ips = dynamic(["82.38.171.235", "72.5.43.195"]);
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(["82.38.171.235", "72.5.43.195"]);
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(["auth-code-verif.beer", "maloke.pro", "privatetoken.app"]);
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://maloke.pro/", "https://productionai-shop.pages.dev/recaptcha-verify", "https://pbhwzixj.boro1.bet/4f9a7c78-781f-4987-9e83-e804fb9a98e2/gc.key", "https://watersolutionsfl.com/", "https://marjdl.pro/"]);
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(["04dcae7c2f31870f4a59ed6faec513a5e252491d911ae9e62b9c3026ccf598cd"]);
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 |
Here are specific false positive scenarios for the ThreatFox: Unknown malware IOCs detection rule, tailored for an enterprise environment:
Enterprise Endpoint Protection Scans and Updates
%TEMP% directory that match generic “unknown” IOCs before being fully whitelisted by the local engine.C:\ProgramData\Microsoft\Windows Defender\Updates) and filter out processes with known publisher hashes for the EDR vendor’s service executables.Automated Patch Management Deployments
IvantiAgent.exe, WSUSClient.exe) and whitelist specific destination IP ranges used by the organization’s internal patch repository servers.IT Administration Script Execution
7-Zip, Git, or curl) that generate network traffic and file system changes matching the “unknown malware”