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

Group:
Valid Rule

/*
Donut Leaks extortion group
*/

rule DonutLeaks_Note
{
    meta:
        author = "ransomware.live"
        family = "ransomware.donutleaks"
        description = "Detects Donut Leaks extortion note"
        date = "2026-05-04"
        severity = 7
        score = 70

    strings:
        $s1 = "Donut Leaks" ascii nocase
        $s2 = "donutleaks" ascii nocase
        $s3 = "donut.onion" ascii nocase

    condition:
        any of them
}