← Back to SOC feed Coverage →

misc 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 execute malicious payloads with non-standard or obfuscated Portable Executable (PE) structures that may evade signature-based defenses. Proactively hunting for these anomalies in Azure Sentinel is critical because they often indicate early-stage fileless attacks or living-off-the-land techniques where attackers leverage legitimate tools with modified binaries to maintain persistence while avoiding initial detection triggers.

YARA Rule

rule misc_pos
{
meta:
	author = "@patrickrolsen"
	reference = "POS Malware"
strings:
	$s1 = "KAPTOXA"
	$s2 = "cmd /c net start %s"
	$s3 = "pid:"
	$s4 = "%ADD%"
	$s5 = "COMSPEC"
	$s6 = "KARTOXA"
condition:
	uint16(0) == 0x5A4D and 3 of ($s*)
}

Deployment Notes

This YARA rule can be deployed in the following contexts:

This rule contains 6 string patterns in its detection logic.

References

False Positive Guidance

Here are 5 specific false positive scenarios for the misc_pos YARA detection rule in an enterprise environment, including suggested filters and exclusions:

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