← Back to SOC feed Coverage →

hatman mftmsr

yara LOW signature-base
florian-roth
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 signature-base →
Retrieved: 2026-08-03T11:00:00Z · Confidence: medium

Hunt Hypothesis

This hunt hypothesis targets adversaries leveraging the Hatman malware family to establish memory-resident or file-based persistence within Azure Sentinel environments. Proactive hunting for this behavior is essential because early detection of these subtle persistence mechanisms allows the SOC team to identify and contain stealthy threats before they escalate into significant incidents.

YARA Rule

rule hatman_mftmsr : hatman {
    meta:
        id = "56b400d4-2989-5c34-9e8a-0a14b0bf0af1"
    strings:
        $mfmsr_be   = { 7c 63 00 a6 }
        $mfmsr_le   = { a6 00 63 7c }
        $mtmsr_be   = { 7c 63 01 24 }
        $mtmsr_le   = { 24 01 63 7c }
    condition:
        ($mfmsr_be and $mtmsr_be) or ($mfmsr_le and $mtmsr_le)
}

Deployment Notes

This YARA rule can be deployed in the following contexts:

This rule contains 4 string patterns in its detection logic.

False Positive Guidance

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

Original source: https://github.com/Neo23x0/signature-base/blob/main/yara/apt_hatman.yar