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

Group:
Valid Rule

/*
BrainCipher ransomware (LockBit 3.0 variant)
*/

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

    strings:
        $s1 = "BrainCipher" ascii nocase
        $s2 = "BRAINCIPHER" ascii
        $s3 = "braincipher.onion" ascii nocase

    condition:
        any of them
}