Sakurel_backdoor

YARA-2025-0803 High general Active

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

Sakurel_backdoor.yar Valid Syntax
/*
    This Yara ruleset is under the GNU-GPLv2 license (http://www.gnu.org/licenses/gpl-2.0.html) and open to any user or organization, as    long as you use it under this license.

*/
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
}

Rule Metadata

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.

String Definitions

{"name":"$type","value":"\"Microsoft-Windows-Security-Auditing\""}
{"name":"$eventid","value":"\"4688\""}
{"name":"$data","value":"\"Windows\\\\System32\\\\sysprep\\\\sysprep.exe\" nocase"}
{"name":"$type1","value":"\"Microsoft-Windows-Security-Auditing\""}
{"name":"$eventid1","value":"\"4688\""}
{"name":"$data1","value":"\"AppData\\\\Local\\\\Temp\\\\MicroMedia\\\\MediaCenter.exe\" nocase"}

Threat Analysis

This YARA rule is designed to detect general threats.

Severity Level: High

The rule uses pattern matching to identify specific byte sequences, strings, or behavioral patterns associated with malicious activity.

Detection Capabilities

  • File-based detection for executables and documents
  • Memory scanning for running processes
  • Network traffic analysis support

Command Line Usage

# Scan a single file
yara Sakurel_backdoor.yar /path/to/suspicious/file

# Scan a directory recursively
yara -r Sakurel_backdoor.yar /path/to/directory/

# Scan with metadata output
yara -m Sakurel_backdoor.yar target_file

# Scan process memory (Linux)
yara Sakurel_backdoor.yar /proc/[pid]/exe

Integration Examples

Python (yara-python)

import yara
rules = yara.compile(filepath='Sakurel_backdoor.yar')
matches = rules.match('/path/to/file')

ClamAV Integration

clamscan --yara-rules=Sakurel_backdoor.yar /path/to/scan

Rule Information

YARA ID
YARA-2025-0803
Author
Unknown
Created
August 19, 2025
Last Updated
August 19, 2025
Last Imported
Never

Threat Intelligence

Risk Level High
Category general
Detection Confidence Analysis Pending
False Positive Rate Not Available
Last Seen in Wild No Data

Export Options