← Back to SOC feed Coverage →

ThreatFox: Unknown malware IOCs

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

Hunt Hypothesis

This hunt detects adversary behavior characterized by the presence of eleven distinct indicators of compromise (IOCs) linked to previously unidentified malware strains within the Azure Sentinel environment. Proactive hunting is essential because these unknown threats often evade signature-based detection, requiring manual correlation and rapid response to prevent potential lateral movement or data exfiltration before automated rules can be refined.

IOC Summary

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

TypeValueThreat TypeFirst SeenConfidence
urlhxxps://pol[.]1000boger.com/payload_delivery2026-07-2590%
ip:port60[.]205[.]115[.]92:44321botnet_cc2026-07-25100%
ip:port60[.]205[.]115[.]92:4330botnet_cc2026-07-25100%
ip:port111[.]170[.]148[.]134:22botnet_cc2026-07-25100%
ip:port60[.]205[.]115[.]92:44323botnet_cc2026-07-25100%
ip:port60[.]205[.]115[.]92:80botnet_cc2026-07-25100%
ip:port60[.]205[.]115[.]92:22botnet_cc2026-07-25100%
ip:port60[.]205[.]115[.]92:443botnet_cc2026-07-25100%
ip:port189[.]141[.]45[.]95:7443botnet_cc2026-07-25100%
ip:port203[.]195[.]217[.]161:22botnet_cc2026-07-25100%
ip:port111[.]170[.]148[.]134:9000botnet_cc2026-07-25100%

KQL: Ip Hunt

// Hunt for network connections to known malicious IPs
// Source: ThreatFox - Unknown malware
let malicious_ips = dynamic(["60.205.115.92", "203.195.217.161", "189.141.45.95", "111.170.148.134"]);
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(["60.205.115.92", "203.195.217.161", "189.141.45.95", "111.170.148.134"]);
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://pol.1000boger.com/"]);
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
UrlClickEventsEnsure this data connector is enabled

References

False Positive Guidance

False Positive Scenarios for “ThreatFox: Unknown malware IOCs” Rule

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