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

Group:
Valid Rule

/*
LockBit 5.0 (Erebus rebranding)
*/

rule LockBit5_Ransomnote
{
    meta:
        author = "ransomware.live"
        family = "ransomware.lockbit5"
        description = "Detects LockBit 5.0 / Erebus ransom note"
        date = "2026-05-04"
        severity = 7
        score = 70

    strings:
        $s1 = "LockBit 5" ascii nocase
        $s2 = "Erebus" ascii nocase
        $s3 = "lockbit5" ascii nocase

    condition:
        any of them
}