mirror of
https://github.com/valitydev/signature-base.git
synced 2024-11-06 18:15:20 +00:00
27 lines
787 B
Plaintext
27 lines
787 B
Plaintext
/*
|
|
Yara Rule Set
|
|
Author: Florian Roth
|
|
Date: 2015-05-07
|
|
Identifier: Kraken_Malware
|
|
*/
|
|
|
|
rule Kraken_Bot_Sample {
|
|
meta:
|
|
description = "Kraken Bot Sample - file inf.bin"
|
|
license = "https://creativecommons.org/licenses/by-nc/4.0/"
|
|
author = "Florian Roth"
|
|
reference = "https://blog.gdatasoftware.com/blog/article/dissecting-the-kraken.html"
|
|
date = "2015-05-07"
|
|
hash = "798e9f43fc199269a3ec68980eb4d91eb195436d"
|
|
score = 90
|
|
strings:
|
|
$s2 = "%s=?getname" fullword ascii
|
|
$s4 = "&COMPUTER=^" fullword ascii
|
|
$s5 = "xJWFwcGRhdGElAA=" fullword ascii /* base64 encoded string '%appdata%' */
|
|
$s8 = "JVdJTkRJUi" fullword ascii /* base64 encoded string '%WINDIR' */
|
|
$s20 = "btcplug" fullword ascii
|
|
condition:
|
|
uint16(0) == 0x5a4d and all of them
|
|
}
|
|
|