← Back to SOC feed Coverage →

malware creates a process in the temp directory and performs the sysprep UAC bypass method.

yara LOW Yara-Rules
communityevasion
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-29T11:00:01Z · Confidence: medium

Hunt Hypothesis

This hypothesis posits that adversaries are executing malicious processes within temporary directories to leverage the Sysprep User Account Control (UAC) bypass technique for privilege escalation without triggering standard alerts. Proactive hunting in Azure Sentinel is critical because this specific combination of low-severity indicators often evades signature-based detection, allowing attackers to establish persistence and execute further lateral movement undetected.

YARA Rule

rule Sakurel_backdoor
{
	meta:
		maltype = "Sakurel backdoor"
    ref = "https://github.com/reed1713"
		reference = "http://www.microsoft.com/security/portal/threat/encyclopedia/entry.aspx?Name=Trojan:Win32/Sakurel.A#tab=2"
		description = "malware creates a process in the temp directory and performs the sysprep UAC bypass method."
	strings:
		$type="Microsoft-Windows-Security-Auditing"
		$eventid="4688"
		$data="Windows\\System32\\sysprep\\sysprep.exe" nocase

		$type1="Microsoft-Windows-Security-Auditing"
		$eventid1="4688"
		$data1="AppData\\Local\\Temp\\MicroMedia\\MediaCenter.exe" nocase
	condition:
		all of them
}

Deployment Notes

This YARA rule can be deployed in the following contexts:

This rule contains 6 string patterns in its detection logic.

References

False Positive Guidance

Here are 4 specific false positive scenarios for the rule “Malware creates a process in the temp directory and performs the Sysprep UAC bypass method,” along with suggested filters or exclusions:

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