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

Group:
Valid Rule

/*
Qiulong ransomware
*/

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

    strings:
        $s1 = "Qiulong" ascii nocase
        $s2 = "QIULONG" ascii
        $s3 = "qiulong.onion" ascii nocase

    condition:
        any of them
}