← Back to SOC feed Coverage →

FSGv110Engdulekxt

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

Hunt Hypothesis

This YARA rule targets specific file signatures associated with the FSGv110Engdulekxt artifact, indicating the presence of a known low-severity threat component or benign file variant within the environment. Proactively hunting for this signature in Azure Sentinel allows the SOC team to identify and triage these files early, ensuring they are correctly classified and preventing potential misattributions or overlooked low-fidelity indicators of compromise.

YARA Rule

rule FSGv110Engdulekxt
{
      meta:
		author="malware-lu"
strings:
		$a0 = { BB D0 01 40 ?? BF ?? 10 40 ?? BE }
	$a1 = { E8 01 00 00 00 [2] E8 ?? 00 00 00 }
	$a2 = { EB 01 ?? EB 02 [3] 80 [2] 00 }

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

Deployment Notes

This YARA rule can be deployed in the following contexts:

This rule contains 3 string patterns in its detection logic.

False Positive Guidance

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