bartblaze / Yara-rules

Collection of private Yara rules.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Ekans Ruleset

josheyr opened this issue · comments

commented

Why is it a good idea to flag occurrences of fairly generic-looking messages in strings as ransomware?

https://github.com/bartblaze/Yara-rules/blob/master/rules/ransomware/Ekans.yar

Surely there's a better way to detect ransomware that isn't susceptible to falsely flagging random people...

Which strings specifically are you referring to?

commented
    $ = "priority files: %v" ascii wide
    $ = "could not send control=%d: %v" ascii wide
    $ = "could not retrieve service status: %v" ascii wide
    $ = "could not access service: %v" ascii wide
    $ = "cant kill process %v : %v" ascii wide
    $ = "There can be only one" ascii wide
    $ = "pub: %v" ascii wide
    $ = "priorityFiles: %v" ascii wide
    $ = "worker %s started job %s" ascii wide

Fair enough, the rule is pretty old in itself anyway. Updated in 3c7e696. Thanks for the notice.