← Back to SOC feed Coverage →

ThreatFox: XTinyLoader IOCs

ioc-hunt HIGH ThreatFox
DeviceFileEventsUrlClickEvents
iocthreatfoxwin-xtinyloader
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-09T23:00:00Z · Confidence: high

Hunt Hypothesis

The ThreatFox: XTinyLoader IOCs rule detects potential adversary activity involving the XTinyLoader malware, which is associated with initial access and command and control communication. SOC teams should proactively hunt for this behavior in Azure Sentinel to identify and mitigate early-stage compromises before lateral movement and data exfiltration occur.

IOC Summary

Malware Family: XTinyLoader Total IOCs: 2 IOC Types: sha256_hash, url

TypeValueThreat TypeFirst SeenConfidence
sha256_hash3cea9df086d111a71c24822aa626380105347dd6d458ae7971557684bf12e097payload2026-06-09100%
urlhxxp://196[.]251[.]107[.]104/geter/index.phpbotnet_cc2026-06-09100%

KQL: Url Hunt

// Hunt for access to known malicious URLs
// Source: ThreatFox - XTinyLoader
let malicious_urls = dynamic(["http://196.251.107.104/geter/index.php"]);
UrlClickEvents
| where Url has_any (malicious_urls)
| project Timestamp, AccountUpn, Url, ActionType, IsClickedThrough
| order by Timestamp desc

KQL: Hash Hunt

// Hunt for files matching known malicious hashes
// Source: ThreatFox - XTinyLoader
let malicious_hashes = dynamic(["3cea9df086d111a71c24822aa626380105347dd6d458ae7971557684bf12e097"]);
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
UrlClickEventsEnsure this data connector is enabled

References

False Positive Guidance

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