← Back to SOC feed Coverage →

Auto-generated rule - file BypassUacDll.aps

yara LOW Yara-Rules
backdoorcommunityevasion
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-28T23:00:00Z · Confidence: medium

Hunt Hypothesis

This detection identifies adversary attempts to bypass User Account Control (UAC) using a specific DLL mechanism, which is a common tactic for privilege escalation and silent execution of malicious payloads. SOC teams should proactively hunt for this behavior in Azure Sentinel because UAC bypasses often serve as an early indicator of lateral movement or persistence that may not trigger high-severity alerts until the attack has already progressed.

YARA Rule

rule BypassUac_EXE {
	meta:
		description = "Auto-generated rule - file BypassUacDll.aps"
		author = "yarGen Yara Rule Generator"
		hash = "58d7b24b6870cb7f1ec4807d2f77dd984077e531"
	strings:
		$s1 = "Wole32.dll" wide
		$s3 = "System32\\migwiz" wide
		$s4 = "System32\\migwiz\\CRYPTBASE.dll" wide
		$s5 = "Elevation:Administrator!new:" wide
		$s6 = "BypassUac" wide
	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

Here are 5 specific false positive scenarios for the BypassUacDll.aps detection rule in an enterprise environment, along with targeted exclusion strategies:

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