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

Group:
Valid Rule

/*
Frag ransomware
*/

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

    strings:
        $s1 = "FRAG" ascii
        $s2 = ".frag" ascii nocase
        $s3 = "frag.onion" ascii nocase
        $s4 = "frag_readme" ascii nocase

    condition:
        any of them
}