Commit dc58afab by mmorenog

Create VikingOrder.yar

parent 61a1f5dc
/*
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 "file"
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)
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment