← Back to SOC feed Coverage →

hatman origaddr

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 identifies adversary activity where malicious processes originate from unexpected network addresses, potentially indicating lateral movement or command-and-control communication attempts. Proactively hunting for this behavior in Azure Sentinel allows the SOC team to validate legitimate traffic patterns and rapidly isolate anomalous connections before they escalate into significant security incidents.

YARA Rule

rule hatman_origaddr : hatman {
    strings:
        $oaddr_be   = { 3c 60 00 03  60 63 96 f4  4e 80 00 20 }
        $oaddr_le   = { 03 00 60 3c  f4 96 63 60  20 00 80 4e }
    condition:
        $oaddr_be or $oaddr_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 4 specific false positive scenarios for the hatman_origaddr detection rule in an enterprise environment, along with suggested filters or exclusions:

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