This hunt detects adversary behavior linked to the AnimateClipper threat actor by actively searching for five specific Indicators of Compromise (IOCs) within Azure Sentinel logs. Proactively hunting for these IOCs is critical because early identification of this sophisticated campaign allows the SOC team to isolate compromised assets before lateral movement or data exfiltration occurs.
Malware Family: AnimateClipper Total IOCs: 5 IOC Types: url, domain
| Type | Value | Threat Type | First Seen | Confidence |
|---|---|---|---|---|
| url | hxxps://lb.propertyfind.cc/ | botnet_cc | 2026-08-11 | 100% |
| url | hxxps://monitor.telemetry-controlsystem.in.net/8645-7f5a31344b9e | botnet_cc | 2026-08-11 | 100% |
| url | hxxps://health.winnererasable.cc/ | botnet_cc | 2026-08-11 | 100% |
| url | hxxps://monitor.telemetry-controlsystem.in.net/jquery.min.js | botnet_cc | 2026-08-11 | 100% |
| domain | monitor.telemetry-controlsystem.in.net | botnet_cc | 2026-08-11 | 100% |
// Hunt for DNS queries to known malicious domains
// Source: ThreatFox - AnimateClipper
let malicious_domains = dynamic(["monitor.telemetry-controlsystem.in.net"]);
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 - AnimateClipper
let malicious_urls = dynamic(["https://lb.propertyfind.cc/", "https://monitor.telemetry-controlsystem.in.net/8645-7f5a31344b9e", "https://health.winnererasable.cc/", "https://monitor.telemetry-controlsystem.in.net/jquery.min.js"]);
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 the documented false positive scenarios and corresponding exclusions for the ThreatFox: AnimateClipper IOCs detection rule:
Scenario: Legitimate deployment of Microsoft 365 Copilot or Teams updates via Intune.
AnimateClipper signature often matches file hashes associated with legitimate Microsoft update packages (specifically the Teams and Office runtime components) that utilize similar animation libraries. When Intune pushes a major update to endpoints, the detection logic flags these known-good binaries as potential IOCs.Microsoft Corporation) and File Path containing C:\Program Files\Microsoft Teams or C:\Program Files (x86)\Microsoft Office. Additionally, exclude processes spawned by msiexec.exe where the parent process is IntuneManagementExtension.exe.Scenario: Scheduled maintenance jobs running Adobe Creative Cloud updates.
AnimateClipper IOCs during the background synchronization phase.Adobe Creative Cloud.exe or file paths under C:\Program Files\Adobe.Scenario: Automated browser rendering tasks in Quality Assurance (QA) environments.