← Back to SOC feed Coverage →

ThreatFox: Unknown Loader IOCs

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

Hunt Hypothesis

This hunt targets the presence of five specific IOCs linked to an unknown loader, indicating a potential initial access or execution mechanism that may be used to establish a foothold in the environment. Proactively hunting for these indicators in Azure Sentinel allows the SOC team to identify and isolate compromised assets before the loader can deploy additional payloads or escalate privileges.

IOC Summary

Malware Family: Unknown Loader Total IOCs: 5 IOC Types: url, sha256_hash

TypeValueThreat TypeFirst SeenConfidence
urlhxxp://91[.]92[.]43[.]245/payload_delivery2026-09-25100%
urlhxxp://puytrewdv.compayload_delivery2026-09-25100%
urlhxxps://pub-22c5fb19472741eba9206c96fcd10f9c.r2.devpayload_delivery2026-09-25100%
urlhxxps://lucciodontologiaintegrada.com.br/16/zong.ps1payload_delivery2026-09-2550%
sha256_hash597e1f47936b2dc91df74e9769273a62730043b835e260c77950672db2c5b009payload2026-09-2585%

KQL: Url Hunt

// Hunt for access to known malicious URLs
// Source: ThreatFox - Unknown Loader
let malicious_urls = dynamic(["http://91.92.43.245/", "http://puytrewdv.com", "https://pub-22c5fb19472741eba9206c96fcd10f9c.r2.dev", "https://lucciodontologiaintegrada.com.br/16/zong.ps1"]);
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 - Unknown Loader
let malicious_hashes = dynamic(["597e1f47936b2dc91df74e9769273a62730043b835e260c77950672db2c5b009"]);
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/unknown_loader/