← Back to SOC feed Coverage →

ThreatFox: Unknown Loader IOCs

ioc-hunt HIGH ThreatFox
DnsEventsUrlClickEvents
iocthreatfoxunknown_loader
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-09-03T23:00:00Z · Confidence: high

Hunt Hypothesis

This rule identifies the execution of known loader binaries associated with the ThreatFox threat intelligence feed, indicating that an adversary is likely establishing a foothold to facilitate further malicious activity. Proactively hunting for these IOCs in Azure Sentinel allows the SOC team to detect and isolate compromised endpoints before the loader can download additional payloads or escalate privileges.

IOC Summary

Malware Family: Unknown Loader Total IOCs: 12 IOC Types: url, domain

TypeValueThreat TypeFirst SeenConfidence
urlhxxp://hxxp://85[.]209[.]87[.]73/loginbotnet_cc2026-09-03100%
domaindocssend.icubotnet_cc2026-09-03100%
domainmharsborsteel.combotnet_cc2026-09-03100%
domainwww.technicalauthentications.livebotnet_cc2026-09-03100%
domainpanelcoreapp.xyzbotnet_cc2026-09-03100%
domainworkingrectorys.xyzbotnet_cc2026-09-03100%
domainprivatetoken.ccbotnet_cc2026-09-03100%
domainericphotography.ccbotnet_cc2026-09-03100%
domainkliearthmover.combotnet_cc2026-09-03100%
domainwww.loqinmicofstloine.icubotnet_cc2026-09-03100%
domainhook-relay.xyzbotnet_cc2026-09-03100%
domainsharepoint-document-verification.icubotnet_cc2026-09-03100%

KQL: Domain Hunt

// Hunt for DNS queries to known malicious domains
// Source: ThreatFox - Unknown Loader
let malicious_domains = dynamic(["docssend.icu", "mharsborsteel.com", "www.technicalauthentications.live", "panelcoreapp.xyz", "workingrectorys.xyz", "privatetoken.cc", "ericphotography.cc", "kliearthmover.com", "www.loqinmicofstloine.icu", "hook-relay.xyz", "sharepoint-document-verification.icu"]);
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 - Unknown Loader
let malicious_urls = dynamic(["http://http://85.209.87.73/login"]);
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

Original source: https://threatfox.abuse.ch/browse/malware/unknown_loader/