← Back to SOC feed Coverage →

RockLoader Malware

yara LOW Yara-Rules
community
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 Yara-Rules →
Retrieved: 2026-06-29T11:00:01Z · Confidence: medium

Hunt Hypothesis

This detection rule identifies the initial execution of RockLoader malware, which adversaries deploy to establish persistence and prepare for subsequent payload delivery within Azure environments. The SOC team should proactively hunt for this activity because early identification of RockLoader allows analysts to isolate compromised hosts before the malware escalates to more severe threats like credential theft or lateral movement.

YARA Rule

rule RockLoader{
meta:
name = "RockLoader"
description = "RockLoader Malware"
author = "@seanmw"
strings:
$hdr = {4d 5a 90 00}
$op1 = {39 45 f0 0f 8e b0 00 00 00}
$op2 = {32 03 77 73 70 72 69 6e 74 66 41 00 ce 02 53 65}
condition:
$hdr at 0 and all of ($op*) and filesize < 500KB
}

Deployment Notes

This YARA rule can be deployed in the following contexts:

This rule contains 3 string patterns in its detection logic.

False Positive Guidance

Here are 5 specific false positive scenarios for the RockLoader Malware detection rule in an enterprise environment, including suggested filters and exclusions:

Original source: https://github.com/Yara-Rules/rules/blob/main/malware/MALW_Rockloader.yar