This hunt detects adversary activity linked to the AnimateClipper threat actor by monitoring for three specific indicators of compromise known to facilitate their initial access and lateral movement within cloud environments. A proactive search in Azure Sentinel is critical because early identification of these IOCs enables the SOC team to rapidly isolate affected assets before the attacker can establish persistence or exfiltrate sensitive data.
Malware Family: AnimateClipper Total IOCs: 3 IOC Types: ip:port, domain
| Type | Value | Threat Type | First Seen | Confidence |
|---|---|---|---|---|
| ip:port | 109[.]172[.]54[.]136:443 | botnet_cc | 2026-08-13 | 100% |
| domain | media.barmaidlushness.cc | botnet_cc | 2026-08-13 | 100% |
| ip:port | 45[.]155[.]68[.]45:443 | botnet_cc | 2026-08-13 | 100% |
// Hunt for network connections to known malicious IPs
// Source: ThreatFox - AnimateClipper
let malicious_ips = dynamic(["109.172.54.136", "45.155.68.45"]);
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(["109.172.54.136", "45.155.68.45"]);
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 - AnimateClipper
let malicious_domains = dynamic(["media.barmaidlushness.cc"]);
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 5 specific false positive scenarios for the ThreatFox: AnimateClipper IOCs detection rule, along with targeted filters and exclusions suitable for an enterprise environment:
Scenario: Enterprise Endpoint Protection Scanning
svc-crowdstrike, mdefender-agent) or filter out events where the source process is FalconSensor.exe or MsMpEng.exe.Scenario: Scheduled Backup Job Execution
01:30 and 05:00 on weekdays where the source process is VeeamAgent.exe or rubrik-agent, specifically targeting the known backup share path (e.g., \\FileServer\Media_Archive).Scenario: CI/CD Pipeline Artifact Deployment