BackdoorDediprosA

YARA-2025-1159 High general Active
No description available for this rule
BackdoorDediprosA.yar Valid Syntax
rule BackdoorDediprosA
{
        meta:
			Description  = "Backdoor.Dedipros.rc"
			ThreatLevel  = "5"

        strings:
            $ = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/advapi32.dll" ascii wide
			$ = "rundll32.exe %s, CodeMain lpServiceName" ascii wide
			$ = "C:\\Windows\\System32\\Rundlla.dll" ascii wide
			$ = "s%\\pmeT\\SWODNIW\\:C" ascii wide
			$ = "SYSTEM\\CurrentControlSet\\Services\\%s" ascii wide
			$ = "\\keylog.dat" ascii wide
        condition:
            2 of them
}

Rule Metadata

Description
Backdoor.Dedipros.rc
ThreatLevel
5

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

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

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

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

Integration Examples

Python (yara-python)

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

ClamAV Integration

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

Rule Information

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