Lightweight_Backdoor

YARA-2025-1364 High general Active
No description available for this rule
Lightweight_Backdoor.yar Valid Syntax
rule Lightweight_Backdoor

{
    meta:
		author = "US CERT"
		reference = "https://www.us-cert.gov/ncas/alerts/TA14-353A"

    strings:
	    $STR1 = "NetMgStart"
		$STR2 = "Netmgmt.srg"

	condition:
    	(uint16(0) == 0x5A4D) and all of them
        }

Rule Metadata

author
US CERT
reference
https://www.us-cert.gov/ncas/alerts/TA14-353A

String Definitions

{"name":"$STR1","value":"\"NetMgStart\""}
{"name":"$STR2","value":"\"Netmgmt.srg\""}

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

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

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

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

Integration Examples

Python (yara-python)

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

ClamAV Integration

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

Rule Information

YARA ID
YARA-2025-1364
Author
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