← Back to SOC feed Coverage →

sets 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 manipulate process execution or inject code by leveraging specific POSIX system call patterns identified through the sets_pos YARA signature. Proactive hunting for this behavior in Azure Sentinel is essential to uncover subtle, low-severity lateral movement or persistence activities that may evade standard high-fidelity alerting mechanisms.

YARA Rule

rule sets_pos
{
meta:
	author = "@patrickrolsen"
	reference = "POS malware - Sets"
strings:
	$s1 = "GET /sets.txt"
condition:
	uint16(0) == 0x5A4D and $s1
}

Deployment Notes

This YARA rule can be deployed in the following contexts:

This rule contains 1 string patterns in its detection logic.

References

False Positive Guidance

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

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