← Back to SOC feed Coverage →

Dynamic DLL abuse executable

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

Hunt Hypothesis

The Dynamic DLL abuse executable rule detects adversaries leveraging dynamically loaded DLLs to execute arbitrary code, potentially bypassing standard application whitelisting. SOC teams should proactively hunt for this behavior in Azure Sentinel to identify potential code injection or persistence tactics that may evade traditional detection mechanisms.

YARA Rule

rule Intel_Virtualization_Wizard_exe {
  meta:
    author = "[email protected]"
    description = "Dynamic DLL abuse executable"

    file_1_seen = "2013-05-21"
    file_1_sha256 = "7787757ae851f4a162f46f794be1532ab78e1928185212bdab83b3106f28c708"

  strings:
    $a = {4C 6F 61 64 53 54 52 49 4E 47}
    $b = {49 6E 69 74 69 61 6C 69 7A 65 4B 65 79 48 6F 6F 6B}
    $c = {46 69 6E 64 52 65 73 6F 75 72 63 65 73}
    $d = {4C 6F 61 64 53 54 52 49 4E 47 46 72 6F 6D 48 4B 43 55}
    $e = {68 63 63 75 74 69 6C 73 2E 44 4C 4C}
  condition:
    all of them
}

Deployment Notes

This YARA rule can be deployed in the following contexts:

This rule contains 5 string patterns in its detection logic.

False Positive Guidance

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