← Back to SOC feed Coverage →

VBOXv43v46

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

Hunt Hypothesis

This rule detects the presence of VirtualBox guest utilities or drivers, which may indicate an adversary has established a virtualized environment for staging payloads, evading host-based detections, or executing malicious code in an isolated context. Proactively hunting for these artifacts in Azure Sentinel helps identify potential hidden execution environments or compromised hosts that are leveraging virtualization to obscure their activities from standard monitoring tools.

YARA Rule

rule VBOXv43v46
{
      meta:
		author="malware-lu"
strings:
		$a0 = { 8B C5 8B C5 8B C5 8B C5 8B C5 8B C5 8B C5 8B C5 8B C5 8B C5 8B C5 8B C5 8B C5 8B C5 8B C5 8B C5 }
	$a1 = { 90 03 C4 33 C4 33 C5 2B C5 33 C5 8B C5 [2] 2B C5 48 [2] 0B C0 86 E0 8C E0 [2] 8C E0 86 E0 03 C4 40 }

condition:
		$a0 or $a1
}

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

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