← Back to SOC feed Coverage →

reg pos

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

Hunt Hypothesis

This hypothesis targets adversaries attempting to establish persistence by registering specific registry keys or values that indicate early-stage foothold establishment within Windows endpoints. Proactive hunting for these reg_pos events in Azure Sentinel is essential to identify subtle configuration changes before they evolve into more severe, established threats that could compromise long-term system integrity.

YARA Rule

rule reg_pos
{
meta:
	author = "@patrickrolsen"
	reference = "POS malware - RegExpr"
strings:
	$s1 = "T1_FOUND: %s"
	$s2 = "id=%s&log=%s"
	$s3 = "\\d{15,19}=\\d{13,}"
condition:
	uint16(0) == 0x5A4D and 2 of ($s*)
}

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 reg_pos detection rule in an enterprise environment, including recommended filters and exclusions:

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