← Back to SOC feed Coverage →

hatman loadoff

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 detection identifies potential adversary activity involving the loading of malicious modules or scripts by the Hatman process, which may indicate early-stage fileless execution or living-off-the-land techniques. Proactively hunting for this behavior in Azure Sentinel is essential to uncover stealthy threats that evade traditional signature-based defenses and could serve as a precursor to more complex lateral movement or data exfiltration campaigns.

YARA Rule

rule hatman_loadoff : hatman {
    meta:
        id = "59229427-e982-59af-8fed-59b3db4b5374"
    strings:
        $loadoff_be = { 80 60 00 04  48 00 ?? ??  70 60 ff ff  28 00 00 00
                        40 82 ?? ??  28 03 00 00  41 82 ?? ??              }
        $loadoff_le = { 04 00 60 80  ?? ?? 00 48  ff ff 60 70  00 00 00 28
                        ?? ?? 82 40  00 00 03 28  ?? ?? 82 41              }
    condition:
        $loadoff_be or $loadoff_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

False Positive Scenarios for “hatman loadoff” Rule

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