This detection rule identifies adversary behavior characterized by the execution of known coin mining indicators, which often signal a post-compromise resource hijacking or an initial foothold established through malicious downloads. A SOC team should proactively hunt for these IOCs in Azure Sentinel to rapidly isolate infected assets and prevent performance degradation caused by unauthorized cryptocurrency mining operations before they escalate into broader infrastructure strain.
Malware Family: Coinminer Total IOCs: 9 IOC Types: sha1_hash, sha256_hash, md5_hash
| Type | Value | Threat Type | First Seen | Confidence |
|---|---|---|---|---|
| sha1_hash | 6ed072ae91ff6f7f0de6d9b1a382647968e76b34 | payload | 2026-08-25 | 95% |
| md5_hash | 5e7f62683bb66cd08d61ea820bea6fe7 | payload | 2026-08-25 | 95% |
| sha256_hash | f0b45ac6bb1d96981900bb46d9129c6c3facf2575529cac1ff0145079ef96cbd | payload | 2026-08-25 | 95% |
| sha1_hash | 3727f5bde57b562a6c66c1ffdedf2fc52daa47fe | payload | 2026-08-25 | 95% |
| md5_hash | c6dc1c09565cf12e833d1e5b35688e4e | payload | 2026-08-25 | 95% |
| sha256_hash | 4037fc3edbee83ac3544c8bb948b2d237c4bc7ca7f5fc23147d8350fa248e081 | payload | 2026-08-25 | 95% |
| sha256_hash | 2b93212ee63dbb290d88bc845aafae192552b6de80d93a2f4a6453afb3738676 | payload | 2026-08-25 | 95% |
| sha1_hash | 77613a3182bd1f5034776bd971707a44bce37f78 | payload | 2026-08-25 | 95% |
| md5_hash | ab06fb2409787be402ccf1b4288b87b3 | payload | 2026-08-25 | 95% |
// Hunt for files matching known malicious hashes
// Source: ThreatFox - Coinminer
let malicious_hashes = dynamic(["6ed072ae91ff6f7f0de6d9b1a382647968e76b34", "5e7f62683bb66cd08d61ea820bea6fe7", "f0b45ac6bb1d96981900bb46d9129c6c3facf2575529cac1ff0145079ef96cbd", "3727f5bde57b562a6c66c1ffdedf2fc52daa47fe", "c6dc1c09565cf12e833d1e5b35688e4e", "4037fc3edbee83ac3544c8bb948b2d237c4bc7ca7f5fc23147d8350fa248e081", "2b93212ee63dbb290d88bc845aafae192552b6de80d93a2f4a6453afb3738676", "77613a3182bd1f5034776bd971707a44bce37f78", "ab06fb2409787be402ccf1b4288b87b3"]);
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 specific false positive scenarios and corresponding exclusion strategies for the ThreatFox: Coinminer IOCs detection rule in an enterprise environment:
Legitimate Scheduled Crypto-Asset Auditing Job
curl or wget) for asset valuation reports. This activity generates network connections and process execution patterns that match the Coinminer IOCs, particularly if the script utilizes specific ports or hash signatures common in mining software.svchost.exe with SchedLgU service) or the PowerShell host (powershell.exe) executing scripts located within the trusted directory C:\ProgramData\Finance\Scripts.DevOps CI/CD Pipeline Artifact Scanning
*-ci-runner-* or *-jenkins-agent-*, and the process path is contained within the container orchestration directory (e.g., /var/lib/jenkins/workspace on Linux or D:\Jenkins\workspace on Windows).Endpoint Security Agent Performance Monitoring