← Back to SOC feed Coverage →

ThreatFox: Unknown Loader IOCs

ioc-hunt HIGH ThreatFox
DeviceFileEvents
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-16T11:00:01Z · Confidence: high

Hunt Hypothesis

This hunt targets the presence of specific IOCs linked to an unknown loader, indicating a potential initial access or persistence mechanism that may be executing malicious code on endpoints. Proactively hunting for these indicators in Azure Sentinel is critical to identify compromised assets early, as unknown loaders often serve as a precursor to more advanced post-exploitation activities and lateral movement within the environment.

IOC Summary

Malware Family: Unknown Loader Total IOCs: 3 IOC Types: sha256_hash

TypeValueThreat TypeFirst SeenConfidence
sha256_hashafd47ef7378e573c8e575b2030355a2b65a888bdaf56c00a1e6f8e5dc980e7e5payload2026-09-1685%
sha256_hash1a0c3d520e16ae12ffa918032e608f573b716f009a05c35f64b53f128bf7376dpayload2026-09-1685%
sha256_hash28f83470b477e89081c08772af0470c6e841cc01c6bef4472f3b8eed47f852cepayload2026-09-1685%

KQL: Hash Hunt

// Hunt for files matching known malicious hashes
// Source: ThreatFox - Unknown Loader
let malicious_hashes = dynamic(["afd47ef7378e573c8e575b2030355a2b65a888bdaf56c00a1e6f8e5dc980e7e5", "1a0c3d520e16ae12ffa918032e608f573b716f009a05c35f64b53f128bf7376d", "28f83470b477e89081c08772af0470c6e841cc01c6bef4472f3b8eed47f852ce"]);
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

References

False Positive Guidance

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