← Back to SOC feed Coverage →

ThreatFox: Unknown malware IOCs

ioc-hunt HIGH ThreatFox
CommonSecurityLogDeviceNetworkEventsDnsEventsUrlClickEvents
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-07-12T11:00:00Z · Confidence: high

Hunt Hypothesis

This hunt targets adversary behavior involving the execution of unknown malware by correlating 18 specific Indicators of Compromise (IOCs) against Azure Sentinel telemetry to identify early-stage infections. Proactively hunting for these IOCs is critical because it enables the SOC team to detect and contain novel threats before they establish persistence or exfiltrate sensitive data within the cloud environment.

IOC Summary

Malware Family: Unknown malware Total IOCs: 18 IOC Types: domain, ip:port, url

TypeValueThreat TypeFirst SeenConfidence
ip:port96[.]44[.]138[.]102:80botnet_cc2026-07-12100%
ip:port96[.]44[.]138[.]102:8080botnet_cc2026-07-12100%
ip:port96[.]44[.]138[.]102:443botnet_cc2026-07-12100%
ip:port96[.]44[.]138[.]102:60000botnet_cc2026-07-12100%
ip:port93[.]95[.]226[.]207:7443botnet_cc2026-07-1275%
ip:port104[.]207[.]93[.]150:443botnet_cc2026-07-1275%
ip:port104[.]207[.]93[.]150:7443botnet_cc2026-07-1275%
domaini-like-ele-phants-verification.livebotnet_cc2026-07-1275%
domaininoxarreda.itpayload_delivery2026-07-1275%
domaintecnoibrid.compayload_delivery2026-07-1275%
urlhxxps://mhw.codes/checkpayload_delivery2026-07-1290%
ip:port66[.]92[.]249[.]136:8888botnet_cc2026-07-12100%
urlhxxp://178[.]17[.]59[.]40:5506/qk.vbspayload_delivery2026-07-1190%
urlhxxp://inkbookwriters.com/verifypayload_delivery2026-07-1190%
ip:port103[.]236[.]95[.]191:8080botnet_cc2026-07-11100%
ip:port103[.]236[.]95[.]191:80botnet_cc2026-07-11100%
ip:port103[.]236[.]95[.]191:60000botnet_cc2026-07-11100%
ip:port103[.]236[.]95[.]191:443botnet_cc2026-07-11100%

KQL: Ip Hunt

// Hunt for network connections to known malicious IPs
// Source: ThreatFox - Unknown malware
let malicious_ips = dynamic(["103.236.95.191", "66.92.249.136", "96.44.138.102", "104.207.93.150", "93.95.226.207"]);
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(["103.236.95.191", "66.92.249.136", "96.44.138.102", "104.207.93.150", "93.95.226.207"]);
DeviceNetworkEvents
| where RemoteIP in (malicious_ips)
| project Timestamp, DeviceName, RemoteIP, RemotePort, InitiatingProcessFileName, ActionType
| order by Timestamp desc

KQL: Domain Hunt

// Hunt for DNS queries to known malicious domains
// Source: ThreatFox - Unknown malware
let malicious_domains = dynamic(["i-like-ele-phants-verification.live", "inoxarreda.it", "tecnoibrid.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://mhw.codes/check", "http://178.17.59.40:5506/qk.vbs", "http://inkbookwriters.com/verify"]);
UrlClickEvents
| where Url has_any (malicious_urls)
| project Timestamp, AccountUpn, Url, ActionType, IsClickedThrough
| order by Timestamp desc

Required Data Sources

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

References

False Positive Guidance

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

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