← Back to SOC feed Coverage →

LinuxAESDDoS

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-06-26T23:00:00Z · Confidence: medium

Hunt Hypothesis

The LinuxAESDDoS rule detects potential distributed denial-of-service (DDoS) activity by identifying suspicious patterns of traffic or payload behavior associated with Linux-based systems. SOC teams should proactively hunt for this behavior in Azure Sentinel to identify and mitigate early-stage DDoS attacks that could escalate into larger network disruptions.

YARA Rule

rule LinuxAESDDoS
{
    meta:
	Author = "@benkow_"
	Date = "2014/09/12"
	Description = "Strings inside"
        Reference = "http://www.kernelmode.info/forum/viewtopic.php?f=16&t=3483"

    strings:
        $a = "3AES"
        $b = "Hacker"
        $c = "VERSONEX"

    condition:
        2 of them
}

Deployment Notes

This YARA rule can be deployed in the following contexts:

This rule contains 3 string patterns in its detection logic.

False Positive Guidance

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