Backdoor_Jolob

YARA-2025-0715 High general Active

the backdoor registers an auto start service with the display name \

Backdoor_Jolob.yar Valid Syntax
rule Backdoor_Jolob
{
	meta:
		maltype = "Backdoor.Jolob"
    ref = "https://github.com/reed1713"
		reference = "http://www.symantec.com/connect/blogs/new-flash-zero-day-linked-yet-more-watering-hole-attacks"
		description = "the backdoor registers an auto start service with the display name \"Network Access Management Agent\" pointing to the dll netfilter.dll. This is accomplished without notifying the user via the sysprep UAC bypass method."
	strings:   
		$type = "Microsoft-Windows-Security-Auditing"
		$eventid = "4673"
		$data1 = "Security"
		$data2 = "SeCreateGlobalPrivilege"
		$data3 = "Windows\\System32\\sysprep\\sysprep.exe" nocase
        
		$type1 = "Microsoft-Windows-Security-Auditing"
		$eventid1 = "4688"
		$data4 = "Windows\\System32\\sysprep\\sysprep.exe" nocase
        
		$type2 = "Service Control Manager"
		$eventid2 = "7036"
		$data5 = "Network Access Management Agent"
		$data6 = "running"
        
		$type3 = "Service Control Manager"
		$eventid3 = "7045"
		$data7 = "Network Access Management Agent"
		$data8 = "user mode service"
		$data9 = "auto start"      
    condition:
    	all of them
}

Rule Metadata

maltype
Backdoor.Jolob
ref
https://github.com/reed1713
reference
http://www.symantec.com/connect/blogs/new-flash-zero-day-linked-yet-more-watering-hole-attacks
description
the backdoor registers an auto start service with the display name \

String Definitions

{"name":"$type","value":"\"Microsoft-Windows-Security-Auditing\""}
{"name":"$eventid","value":"\"4673\""}
{"name":"$data1","value":"\"Security\""}
{"name":"$data2","value":"\"SeCreateGlobalPrivilege\""}
{"name":"$data3","value":"\"Windows\\\\System32\\\\sysprep\\\\sysprep.exe\" nocase"}
{"name":"$type1","value":"\"Microsoft-Windows-Security-Auditing\""}
{"name":"$eventid1","value":"\"4688\""}
{"name":"$data4","value":"\"Windows\\\\System32\\\\sysprep\\\\sysprep.exe\" nocase"}
{"name":"$type2","value":"\"Service Control Manager\""}
{"name":"$eventid2","value":"\"7036\""}
{"name":"$data5","value":"\"Network Access Management Agent\""}
{"name":"$data6","value":"\"running\""}
{"name":"$type3","value":"\"Service Control Manager\""}
{"name":"$eventid3","value":"\"7045\""}
{"name":"$data7","value":"\"Network Access Management Agent\""}
{"name":"$data8","value":"\"user mode service\""}
{"name":"$data9","value":"\"auto start\""}

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 Backdoor_Jolob.yar /path/to/suspicious/file

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

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

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

Integration Examples

Python (yara-python)

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

ClamAV Integration

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

Rule Information

YARA ID
YARA-2025-0715
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