This detection identifies adversary behavior where malicious actors deploy cryptocurrency mining software to consume system resources and generate unauthorized network traffic via specific ThreatFox indicators of compromise. Proactively hunting for these coinminer signatures in Azure Sentinel is critical to prevent performance degradation on production workloads and to detect early-stage lateral movement before resource exhaustion impacts business operations.
Malware Family: Coinminer Total IOCs: 3 IOC Types: sha1_hash, sha256_hash, md5_hash
| Type | Value | Threat Type | First Seen | Confidence |
|---|---|---|---|---|
| md5_hash | 1ccf41cfd9d85a0e6c49854e25d76ab5 | payload | 2026-06-29 | 95% |
| sha256_hash | 3f076a3e4a0733c630d58f790dc8b6422c5ee6344695f88987b14a060d721d4f | payload | 2026-06-29 | 95% |
| sha1_hash | f2a03400898271b8fb6310151c56edf1120b736c | payload | 2026-06-29 | 95% |
// Hunt for files matching known malicious hashes
// Source: ThreatFox - Coinminer
let malicious_hashes = dynamic(["1ccf41cfd9d85a0e6c49854e25d76ab5", "3f076a3e4a0733c630d58f790dc8b6422c5ee6344695f88987b14a060d721d4f", "f2a03400898271b8fb6310151c56edf1120b736c"]);
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
| Sentinel Table | Notes |
|---|---|
DeviceFileEvents | Ensure this data connector is enabled |
Here are 5 specific false positive scenarios for the ThreatFox: Coinminer IOCs detection rule in an enterprise environment, along with recommended filters or exclusions:
Legitimate Software Updates via Package Managers
ccminer, cgminer) as dependencies for testing blockchain integration modules, triggering the IOCs during installation or dependency resolution.choco.exe, ansible-playbook, ccmexec.exe) and restrict alerts to non-standard directories (e.g., exclude paths under C:\Program Files\Chocolatey or D:\Ansible).Scheduled Antivirus Definition Updates
C:\Program Files\Microsoft Defender\MsMpEng.exe or C:\Program Files\CrowdStrike\csfalcon.exe.DevOps CI/CD Pipeline Execution