← Back to SOC feed Coverage →

detect HawkEye in memory

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

Hunt Hypothesis

This hypothesis posits that adversaries are utilizing the HawkEye tool to establish persistent in-memory footholds within Azure workloads, potentially evading traditional disk-based detection mechanisms. Proactive hunting for this behavior is critical to identify early-stage reconnaissance or lateral movement activities before they escalate into significant data exfiltration incidents.

YARA Rule

rule Hawkeye {
          meta:
            description = "detect HawkEye in memory"
            author = "JPCERT/CC Incident Response Group"
            rule_usage = "memory scan"
            reference = "internal research"

          strings:
            $hawkstr1 = "HawkEye Keylogger" wide
            $hawkstr2 = "Dear HawkEye Customers!" wide
            $hawkstr3 = "HawkEye Logger Details:" wide

          condition: all of them
}

Deployment Notes

This YARA rule can be deployed in the following contexts:

This rule contains 3 string patterns in its detection logic.

References

False Positive Guidance

Here are 4 specific false positive scenarios for the “detect HawkEye in memory” rule within an enterprise environment, including recommended filters and exclusions:

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