← Back to SOC feed Coverage →

ThreatFox: Unknown malware IOCs

ioc-hunt HIGH ThreatFox
CommonSecurityLogDeviceFileEventsDeviceNetworkEventsUrlClickEvents
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-06-30T11:00:00Z · Confidence: high

Hunt Hypothesis

This hunt detects adversary behavior characterized by the presence of twenty distinct indicators of compromise linked to previously unidentified malware families within the Azure Sentinel environment. Proactively hunting for these unknown threats is critical because it enables the SOC team to identify and contain novel attack vectors before they escalate into widespread incidents, thereby reducing dwell time for emerging risks that standard signature-based rules may miss.

IOC Summary

Malware Family: Unknown malware Total IOCs: 20 IOC Types: sha256_hash, ip:port, url

TypeValueThreat TypeFirst SeenConfidence
urlhxxps://www.einvoicesolutions.com/payload_delivery2026-06-3090%
urlhxxps://www.m-und-c-partners.de/payload_delivery2026-06-3090%
ip:port170[.]64[.]130[.]99:7443botnet_cc2026-06-3075%
ip:port136[.]113[.]49[.]8:7443botnet_cc2026-06-3075%
urlhxxp://31[.]56[.]48[.]179:666/wpayload_delivery2026-06-3075%
urlhxxp://31[.]56[.]48[.]179:666/.real_mndpayload_delivery2026-06-3075%
urlhxxp://31[.]56[.]48[.]179:666/.mconfpayload_delivery2026-06-3075%
sha256_hash27cc6cf232ba7ed8dc92dcb0795bdb7185197928ec3061a8d6de097f9efc5440payload2026-06-3075%
sha256_hash0f63bea320d768fb12bb53a287f210b8b9ccec563ac66dc80b7967628e455566payload2026-06-3075%
urlhxxps://isabeladandaro.com.br/diagnostico-de-honorarios-convite/?src=Org_Site&utm_source=Org&utm_medium=Site&utm_content=&utm_campaign=&utm_term=payload_delivery2026-06-3090%
urlhxxps://www.ibogainerapiddetox.com/payload_delivery2026-06-3090%
urlhxxps://ottixpimobiliaria.com/payload_delivery2026-06-3090%
urlhxxps://patrickfarrellbooks.com/payload_delivery2026-06-3090%
urlhxxps://portalpsicosocial.es/payload_delivery2026-06-3090%
urlhxxps://romayahomes.co.uk/payload_delivery2026-06-3090%
urlhxxps://seniorcitizenjournal.com/payload_delivery2026-06-3090%
urlhxxps://leinstermetalrecycling.ie/payload_delivery2026-06-3090%
urlhxxps://itsrealmedia.com/payload_delivery2026-06-3090%
ip:port110[.]42[.]252[.]147:8888botnet_cc2026-06-30100%
ip:port155[.]138[.]218[.]137:7443botnet_cc2026-06-2975%

KQL: Ip Hunt

// Hunt for network connections to known malicious IPs
// Source: ThreatFox - Unknown malware
let malicious_ips = dynamic(["136.113.49.8", "170.64.130.99", "110.42.252.147", "155.138.218.137"]);
CommonSecurityLog
| where DestinationIP in (malicious_ips) or SourceIP in (malicious_ips)
| project TimeGenerated, SourceIP, DestinationIP, DestinationPort, DeviceAction, Activity
| order by TimeGenerated desc

KQL: Ip Hunt Device

// Hunt in Defender for Endpoint network events
let malicious_ips = dynamic(["136.113.49.8", "170.64.130.99", "110.42.252.147", "155.138.218.137"]);
DeviceNetworkEvents
| where RemoteIP in (malicious_ips)
| project Timestamp, DeviceName, RemoteIP, RemotePort, InitiatingProcessFileName, ActionType
| order by Timestamp desc

KQL: Url Hunt

// Hunt for access to known malicious URLs
// Source: ThreatFox - Unknown malware
let malicious_urls = dynamic(["https://www.einvoicesolutions.com/", "https://www.m-und-c-partners.de/", "http://31.56.48.179:666/w", "http://31.56.48.179:666/.real_mnd", "http://31.56.48.179:666/.mconf", "https://isabeladandaro.com.br/diagnostico-de-honorarios-convite/?src=Org_Site&utm_source=Org&utm_medium=Site&utm_content=&utm_campaign=&utm_term=", "https://www.ibogainerapiddetox.com/", "https://ottixpimobiliaria.com/", "https://patrickfarrellbooks.com/", "https://portalpsicosocial.es/", "https://romayahomes.co.uk/", "https://seniorcitizenjournal.com/", "https://leinstermetalrecycling.ie/", "https://itsrealmedia.com/"]);
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 malware
let malicious_hashes = dynamic(["27cc6cf232ba7ed8dc92dcb0795bdb7185197928ec3061a8d6de097f9efc5440", "0f63bea320d768fb12bb53a287f210b8b9ccec563ac66dc80b7967628e455566"]);
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
CommonSecurityLogEnsure this data connector is enabled
DeviceFileEventsEnsure this data connector is enabled
DeviceNetworkEventsEnsure this data connector is enabled
UrlClickEventsEnsure this data connector is enabled

References

False Positive Guidance

Here are 5 specific false positive scenarios for the ThreatFox: Unknown malware IOCs rule, including suggested filters or exclusions tailored for an enterprise environment:

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