← Back to SOC feed Coverage →

ShadowTech 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-14T23:00:00Z · Confidence: medium

Hunt Hypothesis

This detection rule identifies the presence of the ShadowTech Remote Access Trojan (RAT) by monitoring for its specific behavioral indicators within the Azure Sentinel environment. Proactive hunting is essential to uncover silent infections that may evade standard signature-based alerts, ensuring early containment before adversaries establish persistent command and control channels.

YARA Rule

rule ShadowTech_2
{
    meta:
        description = "ShadowTech RAT"
	author = "botherder https://github.com/botherder"

    strings:
        $string1 = /\#(S)trings/
        $string2 = /\#(G)UID/
        $string3 = /\#(B)lob/
        $string4 = /(S)hadowTech Rat\.exe/
        $string5 = /(S)hadowTech_Rat/

    condition:
        all of them
}

Deployment Notes

This YARA rule can be deployed in the following contexts:

This rule contains 5 string patterns in its detection logic.

False Positive Guidance

Here are 3-5 specific false positive scenarios for the ShadowTech RAT detection rule in an enterprise environment, including suggested filters and exclusions:

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