← Back to SOC feed Coverage →

ThreatFox: AnimateClipper IOCs

ioc-hunt HIGH ThreatFox
DnsEventsUrlClickEvents
iocthreatfoxwin-animate_clipper
This rule was pulled from an open-source repository and enriched with AI. Validate in a test environment before deploying to production.
View original rule at ThreatFox →
Retrieved: 2026-08-11T11:00:00Z · Confidence: high

Hunt Hypothesis

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.

IOC Summary

Malware Family: AnimateClipper Total IOCs: 5 IOC Types: url, domain

TypeValueThreat TypeFirst SeenConfidence
urlhxxps://lb.propertyfind.cc/botnet_cc2026-08-11100%
urlhxxps://monitor.telemetry-controlsystem.in.net/8645-7f5a31344b9ebotnet_cc2026-08-11100%
urlhxxps://health.winnererasable.cc/botnet_cc2026-08-11100%
urlhxxps://monitor.telemetry-controlsystem.in.net/jquery.min.jsbotnet_cc2026-08-11100%
domainmonitor.telemetry-controlsystem.in.netbotnet_cc2026-08-11100%

KQL: Domain Hunt

// 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

KQL: Url Hunt

// 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

Required Data Sources

Sentinel TableNotes
DnsEventsEnsure this data connector is enabled
UrlClickEventsEnsure this data connector is enabled

References

False Positive Guidance

Here are the documented false positive scenarios and corresponding exclusions for the ThreatFox: AnimateClipper IOCs detection rule:

Original source: https://threatfox.abuse.ch/browse/malware/win.animate_clipper/