← 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-07-28T23:00:00Z · Confidence: high

Hunt Hypothesis

This detection rule identifies adversary behavior involving the deployment of XMRIG cryptocurrency mining tools to establish a persistent presence and consume host resources for potential cryptomining or lateral movement activities. A SOC team should proactively hunt for these indicators in Azure Sentinel because early identification of XMRIOCs allows for rapid containment of unauthorized mining processes before they escalate into significant performance degradation or serve as a foothold for broader network compromise.

IOC Summary

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

TypeValueThreat TypeFirst SeenConfidence
ip:port216[.]9[.]226[.]82:80botnet_cc2026-07-28100%
ip:port194[.]116[.]236[.]129:80botnet_cc2026-07-28100%

KQL: Ip Hunt

// Hunt for network connections to known malicious IPs
// Source: ThreatFox - XMRIG
let malicious_ips = dynamic(["216.9.226.82", "194.116.236.129"]);
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(["216.9.226.82", "194.116.236.129"]);
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 specific false positive scenarios and corresponding filters for the ThreatFox: XMRIG IOCs detection rule in an enterprise environment:

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