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

Group:
Valid Rule

/*
FunkSec ransomware (AI-assisted)
*/

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

    strings:
        $s1 = "FunkSec" ascii nocase
        $s2 = "FUNKSEC" ascii
        $s3 = "funksec.onion" ascii nocase
        $s4 = ".funksec" ascii

    condition:
        any of them
}