← Back to SOC feed Coverage →

ThreatFox: TinyLoader IOCs

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

Hunt Hypothesis

The ThreatFox: TinyLoader IOCs rule detects potential adversary activity associated with the TinyLoader malware, which is commonly used to deliver ransomware and other malicious payloads. SOC teams should proactively hunt for this behavior in Azure Sentinel to identify and mitigate early-stage compromises that could lead to data exfiltration or system disruption.

IOC Summary

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

TypeValueThreat TypeFirst SeenConfidence
md5_hashd13cad682fd5abb767313f79c1732822payload2026-06-1195%
sha256_hashb3e6200b05e579b9577686e9f510338b197fe392483f3d2eb50398d3097573cbpayload2026-06-1195%
sha1_hash2a6ff4571b915d61b60ecc2922d342f07bdfb71dpayload2026-06-1195%

KQL: Hash Hunt

// Hunt for files matching known malicious hashes
// Source: ThreatFox - TinyLoader
let malicious_hashes = dynamic(["d13cad682fd5abb767313f79c1732822", "b3e6200b05e579b9577686e9f510338b197fe392483f3d2eb50398d3097573cb", "2a6ff4571b915d61b60ecc2922d342f07bdfb71d"]);
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/win.tinyloader/