← Back to SOC feed Coverage →

LuminosityLink

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-13T23:00:01Z · Confidence: medium

Hunt Hypothesis

This detection identifies potential lateral movement or data exfiltration activities where adversaries utilize custom scripts matching the LuminosityLink signature to establish persistent communication channels within the Azure environment. Proactive hunting for this behavior is essential because its low severity classification suggests it may represent early-stage reconnaissance that could be overlooked by automated alerts, allowing attackers to expand their foothold before triggering higher-priority incidents.

YARA Rule

rule LuminosityLink : RAT
{
    meta:
        author = " Kevin Breen <kevin@techanarchy.net>"
        date = "2014/04"
        ref = "http://malwareconfig.com/stats/LuminosityLink"
        maltype = "Remote Access Trojan"
        filetype = "exe"

    strings:
        $a = "SMARTLOGS" wide
        $b = "RUNPE" wide
        $c = "b.Resources" wide
        $d = "CLIENTINFO*" wide
        $e = "Invalid Webcam Driver Download URL, or Failed to Download File!" wide
        $f = "Proactive Anti-Malware has been manually activated!" wide
        $g = "REMOVEGUARD" wide
        $h = "C0n1f8" wide
        $i = "Luminosity" wide
        $j = "LuminosityCryptoMiner" wide
        $k = "MANAGER*CLIENTDETAILS*" wide

    condition:
        all of them
}

Deployment Notes

This YARA rule can be deployed in the following contexts:

This rule contains 11 string patterns in its detection logic.

False Positive Guidance

Here are 4 specific false positive scenarios for the LuminosityLink detection rule in an enterprise environment, including suggested filters and exclusions:

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