← Back to SOC feed Coverage →

ThreatFox: ClearFake IOCs

ioc-hunt HIGH ThreatFox
CommonSecurityLogDeviceFileEventsDeviceNetworkEventsDnsEventsUrlClickEvents
iocjs-clearfakethreatfox
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-06-30T11:00:00Z · Confidence: high

Hunt Hypothesis

This hunt targets adversary activity involving the specific set of 36 Indicators of Compromise (IOCs) linked to the ClearFake malware campaign. Proactively searching for these indicators in Azure Sentinel is critical because early detection allows the SOC team to identify and contain potential infections before they escalate into widespread data exfiltration or lateral movement events.

IOC Summary

Malware Family: ClearFake Total IOCs: 36 IOC Types: sha256_hash, url, ip:port, domain

TypeValueThreat TypeFirst SeenConfidence
domainkdf.betbacklink.compayload_delivery2026-06-30100%
domaini5sofk6r.xbetone.compayload_delivery2026-06-30100%
domainimohoo.com.brpayload_delivery2026-06-3090%
domainunspanel.rspayload_delivery2026-06-3090%
domainfearlesshomemaker.compayload_delivery2026-06-3090%
domainkeypharmacy.ukpayload_delivery2026-06-3090%
domainlifetimeeyecare.bizpayload_delivery2026-06-3090%
domainajantaappliances.compayload_delivery2026-06-3090%
domainthekiss.grpayload_delivery2026-06-3090%
domainswanriverschool.orgpayload_delivery2026-06-3090%
domaindainikkishoreganj.compayload_delivery2026-06-3090%
domainalpin-tuning.compayload_delivery2026-06-3090%
domaintools4teens.netpayload_delivery2026-06-3090%
domainphcnepal.compayload_delivery2026-06-3090%
domaincakramakmurabadi.compayload_delivery2026-06-3090%
domaininsideautomacao.com.brpayload_delivery2026-06-3090%
domainhashsolution.compayload_delivery2026-06-3090%
domainm-und-c-partners.depayload_delivery2026-06-3090%
domainknowmat.compayload_delivery2026-06-3090%
domainvihangamyoga.orgpayload_delivery2026-06-3090%
domainlisanslab.compayload_delivery2026-06-3090%
sha256_hashce29b8c2576712a33aae06aee02486440c9268fcc19da1496a074feeee0a5178payload2026-06-3090%
urlhxxps://eb0ca005.verifying-your-identity-proceedv1.pages.dev/?x=j7b5cr22&y=1782755817438&z=425693payload_delivery2026-06-30100%
domain46imdg6k.blackjackonlineplay83.compayload_delivery2026-06-30100%
domain328bpzpg[.]313betapk.compayload_delivery2026-06-30100%

KQL: Ip Hunt

// Hunt for network connections to known malicious IPs
// Source: ThreatFox - ClearFake
let malicious_ips = dynamic(["193.233.82.126"]);
CommonSecurityLog
| where DestinationIP in (malicious_ips) or SourceIP in (malicious_ips)
| project TimeGenerated, SourceIP, DestinationIP, DestinationPort, DeviceAction, Activity
| order by TimeGenerated desc

KQL: Ip Hunt Device

// Hunt in Defender for Endpoint network events
let malicious_ips = dynamic(["193.233.82.126"]);
DeviceNetworkEvents
| where RemoteIP in (malicious_ips)
| project Timestamp, DeviceName, RemoteIP, RemotePort, InitiatingProcessFileName, ActionType
| order by Timestamp desc

KQL: Domain Hunt

// Hunt for DNS queries to known malicious domains
// Source: ThreatFox - ClearFake
let malicious_domains = dynamic(["kdf.betbacklink.com", "i5sofk6r.xbetone.com", "imohoo.com.br", "unspanel.rs", "fearlesshomemaker.com", "keypharmacy.uk", "lifetimeeyecare.biz", "ajantaappliances.com", "thekiss.gr", "swanriverschool.org", "dainikkishoreganj.com", "alpin-tuning.com", "tools4teens.net", "phcnepal.com", "cakramakmurabadi.com", "insideautomacao.com.br", "hashsolution.com", "m-und-c-partners.de", "knowmat.com", "vihangamyoga.org", "lisanslab.com", "46imdg6k.blackjackonlineplay83.com", "328bpzpg.313betapk.com", "uhv95fx8.betbuf.live", "0dahrppq.taktikbet.bio", "r32rtlhu.1xbetpartnersiran.com", "moderncloudprotection.com", "publicwebprotection.com", "superfirewallprotection.com", "r4zhwkgz.betbuf.live", "zenithharbinger.digital", "radiantprospera.digital", "latticepatronage.digital"]);
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 - ClearFake
let malicious_urls = dynamic(["https://eb0ca005.verifying-your-identity-proceedv1.pages.dev/?x=j7b5cr22&y=1782755817438&z=425693"]);
UrlClickEvents
| where Url has_any (malicious_urls)
| project Timestamp, AccountUpn, Url, ActionType, IsClickedThrough
| order by Timestamp desc

KQL: Hash Hunt

// Hunt for files matching known malicious hashes
// Source: ThreatFox - ClearFake
let malicious_hashes = dynamic(["ce29b8c2576712a33aae06aee02486440c9268fcc19da1496a074feeee0a5178"]);
DeviceFileEvents
| where SHA256 in (malicious_hashes) or SHA1 in (malicious_hashes) or MD5 in (malicious_hashes)
| project Timestamp, DeviceName, FileName, FolderPath, SHA256, InitiatingProcessFileName
| order by Timestamp desc

Required Data Sources

Sentinel TableNotes
CommonSecurityLogEnsure this data connector is enabled
DeviceFileEventsEnsure this data connector is enabled
DeviceNetworkEventsEnsure this data connector is enabled
DnsEventsEnsure this data connector is enabled
UrlClickEventsEnsure this data connector is enabled

References

False Positive Guidance

Here are specific false positive scenarios for the ThreatFox: ClearFake IOCs detection rule in an enterprise environment, along with recommended filters or exclusions:

Original source: https://threatfox.abuse.ch/browse/malware/js.clearfake/