Contact us Buy Me a Coffee

Sponsored by Hudson Rock Use Hudson Rock's free cybercrime intelligence tools to learn how Infostealer infections are leading to ransomware attacks

YARA Rule: SilentRansomGroup.yar

Group:
Valid Rule

/*
Silent Ransom Group (Luna Moth affiliate)
*/

rule SilentRansomGroup_Note
{
    meta:
        author = "ransomware.live"
        family = "ransomware.silentransomgroup"
        description = "Detects Silent Ransom Group note"
        date = "2026-05-04"
        severity = 7
        score = 70

    strings:
        $s1 = "Silent Ransom" ascii nocase
        $s2 = "SilentRansom" ascii nocase
        $s3 = "Luna Moth" ascii nocase

    condition:
        any of them
}