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

Group:
Valid Rule

/*
Embargo ransomware (Rust-based)
*/

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

    strings:
        $s1 = "Embargo" ascii nocase
        $s2 = "EMBARGO" ascii
        $s3 = "embargo.onion" ascii nocase
        $s4 = "HOW-TO-RECOVER.txt" ascii nocase

    condition:
        any of them
}