This hunt targets adversaries executing the Noderat cryptocurrency miner within system memory to evade traditional disk-based detection and consume host resources. Proactively hunting for this behavior in Azure Sentinel is critical because early identification of these stealthy processes prevents prolonged resource degradation and potential lateral movement before they escalate into high-severity incidents.
rule Noderat {
meta:
description = "detect Noderat in memory"
author = "JPCERT/CC Incident Response Group"
rule_usage = "memory scan"
reference = "https://blogs.jpcert.or.jp/ja/2019/02/tick-activity.html"
strings:
$config = "/config/app.json"
$key = "/config/.regeditKey.rc"
$message = "uninstall error when readFileSync: "
condition: all of them
}
This YARA rule can be deployed in the following contexts:
This rule contains 3 string patterns in its detection logic.
Here are 4 specific false positive scenarios for the detect Noderat in memory rule within an enterprise environment, including suggested filters and exclusions:
Scheduled Antivirus Scans with Heuristic Engines
C:\Program Files\CrowdStrike\fsas.exe, MsMpEng.exe) and whitelist the specific process IDs (PIDs) associated with scheduled scan jobs defined in the Group Policy or agent configuration.CI/CD Pipeline Build Agents on Hosted Runners
OU=DevOps_Builders) and filter out processes spawned by known build orchestrators like java.exe (Jenkins), node.exe running under the System account, or specific container runtimes (containerd, dockerd).Enterprise Software Updates via Management Consoles