mirror of
https://github.com/Yara-Rules/rules
synced 2026-06-08 12:58:40 +00:00
25 lines
660 B
Plaintext
25 lines
660 B
Plaintext
/*
|
|
This Yara ruleset is under the GNU-GPLv2 license (http://www.gnu.org/licenses/gpl-2.0.html) and open to any user or organization, as long as you use it under this license.
|
|
*/
|
|
|
|
import "androguard"
|
|
import "cuckoo"
|
|
|
|
|
|
rule VikingBotnet
|
|
{
|
|
meta:
|
|
author = "https://twitter.com/koodous_project"
|
|
description = "Rule to detect Viking Order Botnet."
|
|
sample = "85e6d5b3569e5b22a16245215a2f31df1ea3a1eb4d53b4c286a6ad2a46517b0c"
|
|
|
|
strings:
|
|
$a = "cv7obBkPVC2pvJmWSfHzXh"
|
|
$b = "http://joyappstech.biz:11111/knock/"
|
|
$c = "I HATE TESTERS onGlobalLayout"
|
|
$d = "http://144.76.70.213:7777/ecspectapatronum/"
|
|
|
|
condition:
|
|
($a and $c) or ($b and $d)
|
|
}
|