← Back to SOC feed Coverage →

hatman memcpy

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-02T23:00:00Z · Confidence: medium

Hunt Hypothesis

This hunt hypothesis targets adversaries employing memory-based exploitation techniques, such as unauthorized data copying or payload injection, which often evade traditional disk-centric detection methods. A proactive search within Azure Sentinel is essential to identify these subtle in-memory activities early, preventing potential stealthy attacks before they escalate into significant security incidents.

YARA Rule

rule hatman_memcpy : hatman {
    meta:
        id = "ddbd452a-bf74-5dcb-98a6-034846188aa5"
    strings:
        $memcpy_be  = { 7c a9 03 a6  38 84 ff ff  38 63 ff ff  8c a4 00 01
                        9c a3 00 01  42 00 ff f8  4e 80 00 20              }
        $memcpy_le  = { a6 03 a9 7c  ff ff 84 38  ff ff 63 38  01 00 a4 8c
                        01 00 a3 9c  f8 ff 00 42  20 00 80 4e              }
    condition:
        $memcpy_be or $memcpy_le
}

Deployment Notes

This YARA rule can be deployed in the following contexts:

This rule contains 2 string patterns in its detection logic.

False Positive Guidance

Here are 5 specific false positive scenarios for the hatman_memcpy detection rule, including targeted filters and exclusions:

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