← Back to SOC feed Coverage →

ThreatFox: Unknown malware IOCs

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

Hunt Hypothesis

This detection rule identifies potential unknown malware infections by correlating nine distinct indicators of compromise that may evade traditional signature-based defenses. A proactive hunt is essential in Azure Sentinel to rapidly isolate these emerging threats before they establish persistence or exfiltrate sensitive data within the cloud environment.

IOC Summary

Malware Family: Unknown malware Total IOCs: 9 IOC Types: ip:port

TypeValueThreat TypeFirst SeenConfidence
ip:port45[.]158[.]116[.]86:7443botnet_cc2026-09-0275%
ip:port43[.]133[.]164[.]200:9090botnet_cc2026-09-0275%
ip:port189[.]141[.]23[.]165:7443botnet_cc2026-09-0275%
ip:port124[.]198[.]132[.]172:443botnet_cc2026-09-0250%
ip:port94[.]154[.]32[.]34:443botnet_cc2026-09-0250%
ip:port84[.]54[.]33[.]208:443botnet_cc2026-09-0250%
ip:port77[.]83[.]39[.]20:443botnet_cc2026-09-0250%
ip:port45[.]148[.]10[.]133:443botnet_cc2026-09-0250%
ip:port152[.]136[.]56[.]105:80botnet_cc2026-09-02100%

KQL: Ip Hunt

// Hunt for network connections to known malicious IPs
// Source: ThreatFox - Unknown malware
let malicious_ips = dynamic(["124.198.132.172", "152.136.56.105", "94.154.32.34", "84.54.33.208", "45.158.116.86", "77.83.39.20", "43.133.164.200", "45.148.10.133", "189.141.23.165"]);
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(["124.198.132.172", "152.136.56.105", "94.154.32.34", "84.54.33.208", "45.158.116.86", "77.83.39.20", "43.133.164.200", "45.148.10.133", "189.141.23.165"]);
DeviceNetworkEvents
| where RemoteIP in (malicious_ips)
| project Timestamp, DeviceName, RemoteIP, RemotePort, InitiatingProcessFileName, ActionType
| order by Timestamp desc

Required Data Sources

Sentinel TableNotes
CommonSecurityLogEnsure this data connector is enabled
DeviceNetworkEventsEnsure 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 and exclusions tailored for an enterprise environment:

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