This detection rule identifies potential unknown malware infections by correlating ten distinct Indicators of Compromise (IOCs) that may evade signature-based defenses. The SOC team should proactively hunt for these IOCs in Azure Sentinel to rapidly isolate and investigate novel threats before they establish persistence or propagate laterally across the environment.
Malware Family: Unknown malware Total IOCs: 10 IOC Types: url, domain
| Type | Value | Threat Type | First Seen | Confidence |
|---|---|---|---|---|
| url | hxxps://chessco.co.za/ | payload_delivery | 2026-07-24 | 90% |
| domain | popelkar.pro | payload_delivery | 2026-07-24 | 100% |
| domain | auth-clo-id.cc | payload_delivery | 2026-07-24 | 100% |
| domain | kinikar.pro | payload_delivery | 2026-07-24 | 100% |
| url | hxxps://bbinvinoveritas.com/ | payload_delivery | 2026-07-24 | 90% |
| url | hxxps://alinais.ch/ | payload_delivery | 2026-07-24 | 90% |
| url | hxxps://aacjuvenile.com/ | payload_delivery | 2026-07-24 | 90% |
| url | hxxps://mail.assembleiadedeus.org.br/ | payload_delivery | 2026-07-24 | 90% |
| url | hxxps://popelkar.pro/ | payload_delivery | 2026-07-24 | 90% |
| url | hxxps://kinikar.pro/ | payload_delivery | 2026-07-24 | 90% |
// Hunt for DNS queries to known malicious domains
// Source: ThreatFox - Unknown malware
let malicious_domains = dynamic(["popelkar.pro", "auth-clo-id.cc", "kinikar.pro"]);
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://chessco.co.za/", "https://bbinvinoveritas.com/", "https://alinais.ch/", "https://aacjuvenile.com/", "https://mail.assembleiadedeus.org.br/", "https://popelkar.pro/", "https://kinikar.pro/"]);
UrlClickEvents
| where Url has_any (malicious_urls)
| project Timestamp, AccountUpn, Url, ActionType, IsClickedThrough
| order by Timestamp desc
| Sentinel Table | Notes |
|---|---|
DnsEvents | 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, along with targeted filters and exclusions:
Scenario: Scheduled Antivirus Definition Updates
MsMpEng.exe (Defender) or Symantec Antivirus.exe.Scenario: Internal Software Deployment via SCCM/Intune
Installation Source attribute indicates “System Center Configuration Manager” or “Intune Management Extension.”Scenario: Automated Patching Jobs via WSUS