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: meow.yar

Group:
Valid Rule

/*
Meow ransomware
*/

rule Meow_Ransomnote
{
    meta:
        author = "ransomware.live"
        family = "ransomware.meow"
        description = "Detects Meow ransomware ransom note"
        date = "2026-05-04"
        severity = 7
        score = 70

    strings:
        $s1 = "MEOW" ascii
        $s2 = ".MEOW" ascii
        $s3 = "meow.onion" ascii nocase
        $s4 = "meowleaks" ascii nocase

    condition:
        any of them
}