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

Group:
Valid Rule

/*
global ransomware
*/

rule global_Ransomnote
{
    meta:
        author = "ransomware.live"
        family = "ransomware.global"
        description = "Detects global ransomware ransom note or artifact"
        date = "2026-05-04"
        severity = 7
        score = 70

    strings:
        $name1 = "global" ascii nocase
        $name2 = "GLOBAL" ascii
        $onion  = "global.onion" ascii nocase

    condition:
        any of them
}