← Back to SOC feed Coverage →

ThreatFox: xmrig IOCs

ioc-hunt HIGH ThreatFox
CommonSecurityLogDeviceFileEventsDeviceNetworkEventsUrlClickEvents
iocthreatfoxwin-xmrig
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-19T11:00:00Z · Confidence: high

Hunt Hypothesis

This hunt targets the presence of known IOCs associated with the XMRig cryptocurrency miner, indicating that an adversary has likely deployed a resource-intensive process to steal computational power for mining. Proactively hunting for these indicators in Azure Sentinel is critical to identify and isolate compromised workloads before the miner degrades system performance or signals a broader compromise.

IOC Summary

Malware Family: xmrig Total IOCs: 13 IOC Types: sha256_hash, ip:port, url

TypeValueThreat TypeFirst SeenConfidence
ip:port80[.]74[.]30[.]4:8765botnet_cc2026-09-19100%
ip:port193[.]181[.]209[.]137:8765botnet_cc2026-09-19100%
urlhxxp://80[.]74[.]30[.]4:3000/sparky/comfyui-utils.gitpayload_delivery2026-09-19100%
ip:port208[.]167[.]233[.]7:80botnet_cc2026-09-19100%
urlhxxp://165[.]245[.]138[.]247:81/private/rigel-win.zippayload_delivery2026-09-19100%
urlhxxp://165[.]245[.]138[.]247:81/private/xmrig-win.zippayload_delivery2026-09-19100%
urlhxxp://217[.]76[.]63[.]67:81/private/xmrig-win.zippayload_delivery2026-09-19100%
urlhxxp://217[.]76[.]63[.]67:81/private/rigel-win.zippayload_delivery2026-09-19100%
urlhxxp://103[.]249[.]201[.]108:81/private/xmrig-win.zippayload_delivery2026-09-19100%
urlhxxp://103[.]249[.]201[.]108:81/private/rigel-win.zippayload_delivery2026-09-19100%
sha256_hash6fa80698d7268f6e88aa88c06fb27ee99e1bcee747c2e76911e6206a5b1aeeb3payload2026-09-19100%
sha256_hash0a813de910c312b2a0206a75ccf6f0f329690ff7e706d2e0f954b540c68fe8f3payload2026-09-19100%
sha256_hashb9df548d6214aa93b685c981fd4c39185fd9ef55933f17da1a0d7fe9321107e1payload2026-09-19100%

KQL: Ip Hunt

// Hunt for network connections to known malicious IPs
// Source: ThreatFox - xmrig
let malicious_ips = dynamic(["193.181.209.137", "80.74.30.4", "208.167.233.7"]);
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(["193.181.209.137", "80.74.30.4", "208.167.233.7"]);
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 - xmrig
let malicious_urls = dynamic(["http://80.74.30.4:3000/sparky/comfyui-utils.git", "http://165.245.138.247:81/private/rigel-win.zip", "http://165.245.138.247:81/private/xmrig-win.zip", "http://217.76.63.67:81/private/xmrig-win.zip", "http://217.76.63.67:81/private/rigel-win.zip", "http://103.249.201.108:81/private/xmrig-win.zip", "http://103.249.201.108:81/private/rigel-win.zip"]);
UrlClickEvents
| where Url has_any (malicious_urls)
| project Timestamp, AccountUpn, Url, ActionType, IsClickedThrough
| order by Timestamp desc

KQL: Hash Hunt

// Hunt for files matching known malicious hashes
// Source: ThreatFox - xmrig
let malicious_hashes = dynamic(["6fa80698d7268f6e88aa88c06fb27ee99e1bcee747c2e76911e6206a5b1aeeb3", "0a813de910c312b2a0206a75ccf6f0f329690ff7e706d2e0f954b540c68fe8f3", "b9df548d6214aa93b685c981fd4c39185fd9ef55933f17da1a0d7fe9321107e1"]);
DeviceFileEvents
| where SHA256 in (malicious_hashes) or SHA1 in (malicious_hashes) or MD5 in (malicious_hashes)
| project Timestamp, DeviceName, FileName, FolderPath, SHA256, InitiatingProcessFileName
| order by Timestamp desc

Required Data Sources

Sentinel TableNotes
CommonSecurityLogEnsure this data connector is enabled
DeviceFileEventsEnsure this data connector is enabled
DeviceNetworkEventsEnsure this data connector is enabled
UrlClickEventsEnsure this data connector is enabled

References

False Positive Guidance

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