← Back to SOC feed Coverage →

hatman mftmsr

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-30T11:00:00Z · Confidence: medium

Hunt Hypothesis

This detection targets adversary behavior involving the execution of the Hatman MFTMSR module, which often indicates reconnaissance or data staging activities within the environment. Proactively hunting for this signature in Azure Sentinel is critical to identify early-stage lateral movement or file transfer operations that may precede more significant exfiltration events.

YARA Rule

rule hatman_mftmsr : hatman {
    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 4 specific false positive scenarios for the hatman_mftmsr detection rule in an enterprise environment, including suggested filters and exclusions:

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