← Back to SOC feed Coverage →

ThreatFox: XMRIG IOCs

ioc-hunt HIGH ThreatFox
CommonSecurityLogDeviceFileEventsDeviceNetworkEvents
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-06-14T11:00:00Z · Confidence: high

Hunt Hypothesis

The ThreatFox: XMRIG IOCs rule detects potential cryptocurrency mining malware activity by identifying known indicators associated with the XMRIG miner, which is commonly used in ransomware and malware campaigns. SOC teams should proactively hunt for these IOCs in Azure Sentinel to identify and mitigate early-stage compromise attempts that could lead to data exfiltration or system degradation.

IOC Summary

Malware Family: XMRIG Total IOCs: 7 IOC Types: sha256_hash, ip:port

TypeValueThreat TypeFirst SeenConfidence
sha256_hash01baaef04cf032d418dcd85f047d129aa54b0eeabde2fed7287046c0604c3f1bpayload2026-06-1485%
sha256_hash16d3440fcc067823afc44dcbccea9fbbc2f8c68ae53b7aea45f9adff4c127086payload2026-06-1485%
sha256_hash8a68d1c08ea31250063f70b1ccb5051db1f7ab6e17d46e9dd3cc292b9849878bpayload2026-06-1485%
sha256_hasha8460f446be540410004b1a8db4083773fa46f7fe76fa84219c93daa1669f8f2payload2026-06-1485%
ip:port159[.]89[.]83[.]151:22payload_delivery2026-06-1485%
ip:port37[.]58[.]136[.]133:22payload_delivery2026-06-1485%
sha256_hash783adb7ad6b16fe9818f3e6d48b937c3ca1994ef24e50865282eeedeab7e0d59payload2026-06-1485%

KQL: Ip Hunt

// Hunt for network connections to known malicious IPs
// Source: ThreatFox - XMRIG
let malicious_ips = dynamic(["159.89.83.151", "37.58.136.133"]);
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(["159.89.83.151", "37.58.136.133"]);
DeviceNetworkEvents
| where RemoteIP in (malicious_ips)
| project Timestamp, DeviceName, RemoteIP, RemotePort, InitiatingProcessFileName, ActionType
| order by Timestamp desc

KQL: Hash Hunt

// Hunt for files matching known malicious hashes
// Source: ThreatFox - XMRIG
let malicious_hashes = dynamic(["01baaef04cf032d418dcd85f047d129aa54b0eeabde2fed7287046c0604c3f1b", "16d3440fcc067823afc44dcbccea9fbbc2f8c68ae53b7aea45f9adff4c127086", "8a68d1c08ea31250063f70b1ccb5051db1f7ab6e17d46e9dd3cc292b9849878b", "a8460f446be540410004b1a8db4083773fa46f7fe76fa84219c93daa1669f8f2", "783adb7ad6b16fe9818f3e6d48b937c3ca1994ef24e50865282eeedeab7e0d59"]);
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

References

False Positive Guidance

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