← Back to SOC feed Coverage →

ThreatFox: Unknown malware IOCs

ioc-hunt HIGH ThreatFox
DnsEventsUrlClickEvents
iocthreatfoxunknown
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-14T23:00:00Z · Confidence: high

Hunt Hypothesis

This hypothesis targets the presence of seven specific IOCs linked to unknown malware, indicating potential compromise by an adversary leveraging novel or unclassified malicious artifacts. Proactively hunting for these indicators in Azure Sentinel allows the SOC to identify and isolate affected assets before the unknown malware can establish persistence or execute lateral movement within the environment.

IOC Summary

Malware Family: Unknown malware Total IOCs: 7 IOC Types: domain, url

TypeValueThreat TypeFirst SeenConfidence
urlhxxps://hashedsolver.icu/update1.ps1payload_delivery2026-09-1490%
urlhxxps://kachadigital.com/payload_delivery2026-09-1490%
urlhxxps://copiose.org/test_proliv/b?o=df2d61526e27a2bcpayload_delivery2026-09-1490%
domainlittlevictories.infopayload_delivery2026-09-1490%
domainpagyamorim.com.brpayload_delivery2026-09-1490%
domainnigerianationalsanitationconference.compayload_delivery2026-09-1490%
domainyumppad.compayload_delivery2026-09-1490%

KQL: Domain Hunt

// Hunt for DNS queries to known malicious domains
// Source: ThreatFox - Unknown malware
let malicious_domains = dynamic(["littlevictories.info", "pagyamorim.com.br", "nigerianationalsanitationconference.com", "yumppad.com"]);
DnsEvents
| where Name has_any (malicious_domains)
| project TimeGenerated, Computer, Name, IPAddresses, QueryType
| order by TimeGenerated desc

KQL: Url Hunt

// Hunt for access to known malicious URLs
// Source: ThreatFox - Unknown malware
let malicious_urls = dynamic(["https://hashedsolver.icu/update1.ps1", "https://kachadigital.com/", "https://copiose.org/test_proliv/b?o=df2d61526e27a2bc"]);
UrlClickEvents
| where Url has_any (malicious_urls)
| project Timestamp, AccountUpn, Url, ActionType, IsClickedThrough
| order by Timestamp desc

Required Data Sources

Sentinel TableNotes
DnsEventsEnsure this data connector is enabled
UrlClickEventsEnsure this data connector is enabled

References

False Positive Guidance

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