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

Group:
Valid Rule

/*
Pay2Key ransomware (Iranian APT)
*/

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

    strings:
        $s1 = "Pay2Key" ascii nocase
        $s2 = "PAY2KEY" ascii
        $s3 = "pay2key.onion" ascii nocase

    condition:
        any of them
}