← Back to SOC feed Coverage →

ThreatFox: Unknown Loader IOCs

ioc-hunt HIGH ThreatFox
DeviceFileEventsDnsEvents
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-20T11:00:00Z · Confidence: high

Hunt Hypothesis

This hypothesis targets the execution of the “Unknown Loader” malware, a high-severity threat that often serves as an initial foothold for further post-exploitation activities. Proactively hunting for these specific IOCs in Azure Sentinel allows the SOC to identify compromised endpoints early, potentially preventing the loader from establishing persistence or downloading additional payloads before traditional detections trigger.

IOC Summary

Malware Family: Unknown Loader Total IOCs: 2 IOC Types: domain, sha256_hash

TypeValueThreat TypeFirst SeenConfidence
domainfallport.cfdbotnet_cc2026-09-20100%
sha256_hash9d08b2f19f1f239652d9fc41500348262101a1fb88b2f9dc1dfe93d54b73d88dpayload2026-09-2095%

KQL: Domain Hunt

// Hunt for DNS queries to known malicious domains
// Source: ThreatFox - Unknown Loader
let malicious_domains = dynamic(["fallport.cfd"]);
DnsEvents
| where Name has_any (malicious_domains)
| project TimeGenerated, Computer, Name, IPAddresses, QueryType
| order by TimeGenerated desc

KQL: Hash Hunt

// Hunt for files matching known malicious hashes
// Source: ThreatFox - Unknown Loader
let malicious_hashes = dynamic(["9d08b2f19f1f239652d9fc41500348262101a1fb88b2f9dc1dfe93d54b73d88d"]);
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
DeviceFileEventsEnsure this data connector is enabled
DnsEventsEnsure this data connector is enabled

References

False Positive Guidance

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