This hunt detects adversary activity by correlating Azure Sentinel logs against known ClearFake indicators of compromise to identify potential lateral movement or data exfiltration attempts. Proactively hunting for these specific IOCs is critical because ClearFake represents a sophisticated threat actor capable of evading standard perimeter defenses, requiring deep internal visibility to prevent early-stage infection and containment.
Malware Family: ClearFake Total IOCs: 13 IOC Types: domain, url
| Type | Value | Threat Type | First Seen | Confidence |
|---|---|---|---|---|
| domain | ttjmpding.biodentax.com | payload_delivery | 2026-08-22 | 100% |
| domain | biodentax.com | payload_delivery | 2026-08-22 | 100% |
| domain | leaf.lonnyross.com | botnet_cc | 2026-08-22 | 90% |
| domain | eng-eng-us-lipovive.com | payload_delivery | 2026-08-22 | 100% |
| domain | kg30.ch | payload_delivery | 2026-08-22 | 90% |
| domain | residence-symbiose.ch | payload_delivery | 2026-08-22 | 90% |
| url | hxxps://cdn.jsdelivr.net/gh/marye4562/rtt76gf84j/re49jmt98 | payload_delivery | 2026-08-22 | 100% |
| domain | eng-eng-beastforce.com | payload_delivery | 2026-08-22 | 100% |
| domain | nmf-training.ch | payload_delivery | 2026-08-22 | 90% |
| domain | bobance.com | payload_delivery | 2026-08-22 | 90% |
| domain | aadsp-danse.com | payload_delivery | 2026-08-22 | 90% |
| domain | tk7r5jj6.bjkg.store | payload_delivery | 2026-08-22 | 100% |
| domain | bjkg.store | payload_delivery | 2026-08-22 | 100% |
// Hunt for DNS queries to known malicious domains
// Source: ThreatFox - ClearFake
let malicious_domains = dynamic(["ttjmpding.biodentax.com", "biodentax.com", "leaf.lonnyross.com", "eng-eng-us-lipovive.com", "kg30.ch", "residence-symbiose.ch", "eng-eng-beastforce.com", "nmf-training.ch", "bobance.com", "aadsp-danse.com", "tk7r5jj6.bjkg.store", "bjkg.store"]);
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 - ClearFake
let malicious_urls = dynamic(["https://cdn.jsdelivr.net/gh/marye4562/rtt76gf84j/re49jmt98"]);
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 false positive scenarios and corresponding exclusion strategies for the ThreatFox: ClearFake IOCs detection rule:
Scenario 1: Scheduled Antivirus Definition Updates
Microsoft Defender Antivirus Service process ID or the specific host group “AV-Update-Servers”.Scenario 2: Software Deployment via Configuration Management
libclearfake.dll) which shares a known hash with one of the ClearFake IOCs. This triggers an alert during routine maintenance windows.ansible-runner.exe (or the specific inventory host group “HR-Portal-Deploy”) and whitelist the specific file path C:\Program Files\InternalApps\HR\libclearfake.dll in the detection logic.Scenario 3: Third-Party Backup Agent Scans