← 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-08-14T11:00:00Z · Confidence: high

Hunt Hypothesis

This detection rule identifies potential unknown malware infections by correlating nine specific Indicators of Compromise (IOCs) that may represent emerging threats not yet covered by existing signature-based defenses. Proactively hunting for these IOCs in Azure Sentinel is critical to rapidly detect and contain novel malicious activity before it escalates, ensuring the organization maintains resilience against evolving attack vectors that traditional rules might miss.

IOC Summary

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

TypeValueThreat TypeFirst SeenConfidence
urlhxxps://befaes.mom/payload_delivery2026-08-1490%
ip:port43[.]143[.]118[.]200:22botnet_cc2026-08-14100%
ip:port43[.]143[.]118[.]200:8888botnet_cc2026-08-14100%
domainsigmagranni1.funbotnet_cc2026-08-14100%
domainbratibobotito.funbotnet_cc2026-08-14100%
ip:port45[.]77[.]75[.]145:3000botnet_cc2026-08-14100%
ip:port178[.]16[.]55[.]227:9000botnet_cc2026-08-14100%
ip:port79[.]133[.]42[.]25:8888botnet_cc2026-08-14100%
ip:port38[.]76[.]165[.]176:5000botnet_cc2026-08-14100%

KQL: Ip Hunt

// Hunt for network connections to known malicious IPs
// Source: ThreatFox - Unknown malware
let malicious_ips = dynamic(["43.143.118.200", "79.133.42.25", "38.76.165.176", "45.77.75.145", "178.16.55.227"]);
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(["43.143.118.200", "79.133.42.25", "38.76.165.176", "45.77.75.145", "178.16.55.227"]);
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(["sigmagranni1.fun", "bratibobotito.fun"]);
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://befaes.mom/"]);
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 5 specific false positive scenarios for the ThreatFox: Unknown malware IOCs rule, detailing legitimate enterprise activities that may trigger alerts along with recommended filters or exclusions:

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