This hypothesis posits that adversaries are leveraging the Unknown Loader campaign to establish persistence by executing malicious payloads identified through seven specific Indicators of Compromise (IOCs). Proactive hunting for these IOCs in Azure Sentinel is critical because early detection of this loader’s activity can prevent lateral movement and data exfiltration before the adversary fully embeds within the network.
Malware Family: Unknown Loader Total IOCs: 7 IOC Types: ip:port, domain
| Type | Value | Threat Type | First Seen | Confidence |
|---|---|---|---|---|
| domain | three.followfromapps.icu | botnet_cc | 2026-07-04 | 100% |
| domain | goto.followfromapps.icu | botnet_cc | 2026-07-04 | 100% |
| domain | blackkkkkdate.icu | botnet_cc | 2026-07-04 | 100% |
| domain | ps.blackkkkkdate.icu | botnet_cc | 2026-07-04 | 100% |
| ip:port | 154[.]194[.]99[.]166:63973 | botnet_cc | 2026-07-04 | 75% |
| domain | gtm-tracker.xyz | payload_delivery | 2026-07-04 | 100% |
| domain | tag-manager.xyz | payload_delivery | 2026-07-04 | 100% |
// Hunt for network connections to known malicious IPs
// Source: ThreatFox - Unknown Loader
let malicious_ips = dynamic(["154.194.99.166"]);
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(["154.194.99.166"]);
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 Loader
let malicious_domains = dynamic(["three.followfromapps.icu", "goto.followfromapps.icu", "blackkkkkdate.icu", "ps.blackkkkkdate.icu", "gtm-tracker.xyz", "tag-manager.xyz"]);
DnsEvents
| where Name has_any (malicious_domains)
| project TimeGenerated, Computer, Name, IPAddresses, QueryType
| order by TimeGenerated 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 |
Here are 4 specific false positive scenarios for the ThreatFox: Unknown Loader IOCs detection rule, tailored for an enterprise environment:
Endpoint Protection Policy Updates via Microsoft Intune/SCCM
*.intune.microsoft.com, sccm-server.internal) or specific service accounts (e.g., DOMAIN\SCCM_ServiceAccount) during standard maintenance windows (02:00–04:00 UTC).Third-Party Patch Management Execution
C:\Program Files\Ivanti\, C:\ProgramData\Chocolatey\bin\) and exclude events where the parent process is identified as the patch management service executable (e.g., patchagent.exe, choco.exe).Scheduled PowerShell Script Execution for Compliance Audits