← Back to SOC feed Coverage →

IOC looks for the creation or termination of a process associated with the Andromeda Trojan. The malware will execute th

yara LOW Yara-Rules
backdoorcobalt-strikecommunity
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-12T23:00:00Z · Confidence: medium

Hunt Hypothesis

The hypothesis is that the detection rule identifies potential Andromeda Trojan activity by monitoring the creation or termination of processes linked to its execution through msiexec.exe in suspicious directories. SOC teams should proactively hunt for this behavior in Azure Sentinel to identify and mitigate early-stage Andromeda infections before they establish deeper persistence or exfiltrate data.

YARA Rule

rule andromeda_bot
{ 
    meta:
        maltype = "Andromeda bot"
        author = "https://github.com/reed1713"
        description = "IOC looks for the creation or termination of a process associated with the Andromeda Trojan. The malware will execute the msiexec.exe within the suspicious directory. Shortly after, it creates and injects itself into the wuauctl.exe (windows update) process. It then attempts to beacon to its C2."
   
    strings:
        $type="Microsoft-Windows-Security-Auditing"
        $eventid="4688"
        $data="AppData\\Local\\Temp\\_.net_\\msiexec.exe"

    condition:
        all 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_Andromeda.yar