← Back to SOC feed Coverage →

ThreatFox: XMRIG IOCs

ioc-hunt HIGH ThreatFox
CommonSecurityLogDeviceNetworkEvents
elf-xmrigiocthreatfox
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-12T23:00:00Z · Confidence: high

Hunt Hypothesis

This rule detects the presence of known XMRIG indicators, which are frequently used by adversaries to deploy cryptocurrency miners for resource exhaustion and financial gain. Proactively hunting for these IOCs in Azure Sentinel allows the SOC to identify compromised assets before the miners consume excessive compute resources or establish persistence mechanisms.

IOC Summary

Malware Family: XMRIG Total IOCs: 8 IOC Types: ip:port

TypeValueThreat TypeFirst SeenConfidence
ip:port194[.]116[.]236[.]129:53botnet_cc2026-09-12100%
ip:port156[.]229[.]165[.]166:53botnet_cc2026-09-12100%
ip:port107[.]175[.]114[.]96:443botnet_cc2026-09-12100%
ip:port216[.]9[.]226[.]82:443botnet_cc2026-09-12100%
ip:port194[.]116[.]236[.]129:443botnet_cc2026-09-12100%
ip:port156[.]229[.]165[.]166:443botnet_cc2026-09-12100%
ip:port107[.]175[.]114[.]96:53botnet_cc2026-09-12100%
ip:port216[.]9[.]226[.]82:53botnet_cc2026-09-12100%

KQL: Ip Hunt

// Hunt for network connections to known malicious IPs
// Source: ThreatFox - XMRIG
let malicious_ips = dynamic(["156.229.165.166", "194.116.236.129", "216.9.226.82", "107.175.114.96"]);
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(["156.229.165.166", "194.116.236.129", "216.9.226.82", "107.175.114.96"]);
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

Original source: https://threatfox.abuse.ch/browse/malware/elf.xmrig/