backoff

YARA-2014-0023 Medium general Active

Identify Backoff

backoff.yar Valid Syntax
rule backoff {
    meta:
        author = "Brian Wallace @botnet_hunter"
        author_email = "bwall@ballastsecurity.net"
        date = "2014-08-21"
        description = "Identify Backoff"
	strings:
    	$s1 = "&op=%d&id=%s&ui=%s&wv=%d&gr=%s&bv=%s"
        $s2 = "%s @ %s"
        $s3 = "Upload KeyLogs"
    condition:
        all of them
}

Rule Metadata

author
Brian Wallace @botnet_hunter
author_email
bwall@ballastsecurity.net
date
2014-08-21
description
Identify Backoff

String Definitions

{"name":"$s1","value":"\"&op=%d&id=%s&ui=%s&wv=%d&gr=%s&bv=%s\""}
{"name":"$s2","value":"\"%s @ %s\""}
{"name":"$s3","value":"\"Upload KeyLogs\""}

Threat Analysis

This YARA rule is designed to detect general threats.

Severity Level: Medium

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

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

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

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

Integration Examples

Python (yara-python)

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

ClamAV Integration

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

Rule Information

YARA ID
YARA-2014-0023
Created
August 19, 2025
Last Updated
August 19, 2025
Last Imported
Never

Threat Intelligence

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

Export Options