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

Group:
Valid Rule

/*
Onyx ransomware
*/

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

    strings:
        $s1 = "ONYX" ascii
        $s2 = ".onyx" ascii nocase
        $s3 = "onyx.readme" ascii nocase

    condition:
        any of them
}