← Back to SOC feed Coverage →

HawkEye

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

Hunt Hypothesis

This detection identifies potential adversary reconnaissance activities by leveraging the HawkEye YARA signature to flag specific file characteristics indicative of early-stage threat presence. Proactively hunting for this behavior in Azure Sentinel is essential because it enables the SOC team to uncover low-severity indicators that may precede more critical incidents, thereby reducing dwell time before full-scale exploitation occurs.

YARA Rule

rule HawkEye : RAT
{
	meta:
		author = " Kevin Breen <kevin@techanarchy.net>"
		date = "2015/06"
		ref = "http://malwareconfig.com/stats/HawkEye"
		maltype = "KeyLogger"
		filetype = "exe"

	strings:
		$key = "HawkEyeKeylogger" wide
		$salt = "099u787978786" wide
		$string1 = "HawkEye_Keylogger" wide
		$string2 = "holdermail.txt" wide
		$string3 = "wallet.dat" wide
		$string4 = "Keylog Records" wide
        $string5 = "<!-- do not script -->" wide
        $string6 = "\\pidloc.txt" wide
        $string7 = "BSPLIT" wide
        

	condition:
		$key and $salt and all of ($string*)
}

Deployment Notes

This YARA rule can be deployed in the following contexts:

This rule contains 9 string patterns in its detection logic.

False Positive Guidance

Here are 5 specific false positive scenarios for the HawkEye detection rule in an enterprise environment, along with suggested filters or exclusions:

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