← Back to SOC feed Coverage →

Adwind RAT

yara LOW Yara-Rules
backdoorcommunity
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-02T23:00:00Z · Confidence: medium

Hunt Hypothesis

This detection rule identifies the execution patterns of the Adwind Remote Access Trojan (RAT), which adversaries deploy to establish persistent command-and-control channels and exfiltrate sensitive data from endpoints. Proactively hunting for this behavior in Azure Sentinel is critical because Adwind’s low-severity signature often evades standard alerting thresholds, requiring manual correlation with process lineage and network traffic to uncover stealthy lateral movement before significant compromise occurs.

YARA Rule

rule Adwind
{
meta:
        author="Asaf Aprozper, asafa AT minerva-labs.com"
        description = "Adwind RAT"
        reference = "https://minerva-labs.com/post/adwind-and-other-evasive-java-rats"
        last_modified = "2017-06-25"
strings:
        $a0 = "META-INF/MANIFEST.MF"
        $a1 = /Main(\$)Q[0-9][0-9][0-9][0-9]/
        $PK = "PK"
condition:
        $PK at 0 and $a0 and $a1
}

Deployment Notes

This YARA rule can be deployed in the following contexts:

This rule contains 3 string patterns in its detection logic.

References

False Positive Guidance

Here are 5 specific false positive scenarios for the Adwind RAT detection rule in an enterprise environment, along with suggested filters or exclusions:

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