← Back to SOC feed Coverage →

ThreatFox: HijackLoader IOCs

ioc-hunt HIGH ThreatFox
DeviceFileEvents
iocthreatfoxwin-hijackloader
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-07-18T23:00:00Z · Confidence: high

Hunt Hypothesis

This hunt hypothesis targets adversaries utilizing the HijackLoader dropper to establish persistence and execute malicious payloads through known indicators of compromise within the Azure Sentinel environment. Proactive hunting for these specific IOCs is critical because HijackLoader often serves as an initial foothold for advanced threats, allowing the SOC team to detect early-stage infections before they escalate into broader lateral movement or data exfiltration campaigns.

IOC Summary

Malware Family: HijackLoader Total IOCs: 3 IOC Types: md5_hash, sha1_hash, sha256_hash

TypeValueThreat TypeFirst SeenConfidence
sha256_hash72344facd02bea9007c59c2a67bd96d521838b566298caf0f80c6ceecf93520fpayload2026-07-1895%
sha1_hashfb7cd49f47060a8514fe5c358bb2a9f74eb215f4payload2026-07-1895%
md5_hashf238406f5cd53942450f145e1c977476payload2026-07-1895%

KQL: Hash Hunt

// Hunt for files matching known malicious hashes
// Source: ThreatFox - HijackLoader
let malicious_hashes = dynamic(["72344facd02bea9007c59c2a67bd96d521838b566298caf0f80c6ceecf93520f", "fb7cd49f47060a8514fe5c358bb2a9f74eb215f4", "f238406f5cd53942450f145e1c977476"]);
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

Here are 5 specific false positive scenarios for the ThreatFox: HijackLoader IOCs rule in an enterprise environment, along with suggested filters or exclusions:

Original source: https://threatfox.abuse.ch/browse/malware/win.hijackloader/