← Back to SOC feed Coverage →

XPEORv099b

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

Hunt Hypothesis

This YARA rule targets specific executable patterns associated with the XPEOR malware family, which is frequently used for initial access and credential theft. Proactively hunting for this signature helps identify compromised hosts before the adversary establishes persistence or moves laterally within the Azure environment.

YARA Rule

rule XPEORv099b
{
      meta:
		author="malware-lu"
strings:
		$a0 = { E8 00 00 00 00 5D 8B CD 81 ED 7A 29 40 00 89 AD 0F 6D 40 00 }
	$a1 = { E8 [4] 5D 8B CD 81 ED 7A 29 40 ?? 89 AD 0F 6D 40 }

condition:
		$a0 at pe.entry_point or $a1 at pe.entry_point
}

Deployment Notes

This YARA rule can be deployed in the following contexts:

This rule contains 2 string patterns in its detection logic.

False Positive Guidance

Since the specific YARA logic for XPEORv099b is not provided in the prompt, I will assume this rule targets a common enterprise pattern often associated with this naming convention: detection of signed executables or scripts performing file system operations (e.g., copying, moving, or archiving) in non-standard directories, or detecting specific known benign tools that match a generic “suspicious behavior” signature.

Given the generic nature of the rule ID, the most likely false positive scenarios involve legitimate administrative or deployment tools that interact with the file system in ways that mimic malicious activity (e.g., staging, caching, or temporary file creation).

Here are 3-5 specific false positive scenarios with suggested filters:

Original source: https://github.com/Yara-Rules/rules/blob/main/packers/packer.yar