← Back to SOC feed Coverage →

Rule to detect XOR DDos infection

yara LOW Yara-Rules
community
This rule was pulled from an open-source repository and enriched with AI. Validate in a test environment before deploying to production.
View original rule at Yara-Rules →
Retrieved: 2026-07-01T23:00:00Z · Confidence: medium

Hunt Hypothesis

This hypothesis posits that adversaries are utilizing XOR-based encryption patterns within network traffic to mask Distributed Denial of Service (DDoS) infection stages before full-scale attacks occur. The SOC team should proactively hunt for these subtle indicators in Azure Sentinel to identify early-stage compromises and strengthen defensive postures against evolving DDoS vectors, even when initial severity signals appear low.

YARA Rule

rule XOR_DDosv1 : DDoS
{
  meta:
    author = "Akamai CSIRT"
    description = "Rule to detect XOR DDos infection"
  strings:
    $st0 = "BB2FA36AAA9541F0"
    $st1 = "md5="
    $st2 = "denyip="
    $st3 = "filename="
    $st4 = "rmfile="
    $st5 = "exec_packet"
    $st6 = "build_iphdr"
  condition:
    all of them
}

Deployment Notes

This YARA rule can be deployed in the following contexts:

This rule contains 7 string patterns in its detection logic.

False Positive Guidance

Here are 4 specific false positive scenarios for the XOR DDoS Infection detection rule in an enterprise environment, along with suggested filters or exclusions:

Original source: https://github.com/Yara-Rules/rules/blob/main/malware/MALW_XOR_DDos.yar