BackdoorZegostSampleA

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

        strings:
            $a = "VIPBlackDDOS" ascii wide
			$b = "SynFlood" ascii wide
			$c = "ICMPFlood" ascii wide
			$d = "UDPFlood" ascii wide
			$e = "DNSFlood" ascii wide
			$f = "Game2Flood" ascii wide
			$g = "HTTPGetFlood" ascii wide
        condition:
            2 of them
}

Rule Metadata

Description
Backdoor.Zegost.rc
ThreatLevel
5

String Definitions

{"name":"$a","value":"\"VIPBlackDDOS\" ascii wide"}
{"name":"$b","value":"\"SynFlood\" ascii wide"}
{"name":"$c","value":"\"ICMPFlood\" ascii wide"}
{"name":"$d","value":"\"UDPFlood\" ascii wide"}
{"name":"$e","value":"\"DNSFlood\" ascii wide"}
{"name":"$f","value":"\"Game2Flood\" ascii wide"}
{"name":"$g","value":"\"HTTPGetFlood\" ascii wide"}

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

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

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

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

Integration Examples

Python (yara-python)

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

ClamAV Integration

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

Rule Information

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