mirror of
https://github.com/Yara-Rules/rules
synced 2026-06-08 12:58:40 +00:00
45 lines
966 B
Plaintext
45 lines
966 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 "pe"
|
|
|
|
rule ShadowTech_2
|
|
{
|
|
meta:
|
|
description = "ShadowTech RAT"
|
|
author = "botherder https://github.com/botherder"
|
|
|
|
strings:
|
|
$string1 = /\#(S)trings/
|
|
$string2 = /\#(G)UID/
|
|
$string3 = /\#(B)lob/
|
|
$string4 = /(S)hadowTech Rat\.exe/
|
|
$string5 = /(S)hadowTech_Rat/
|
|
|
|
condition:
|
|
all of them
|
|
}
|
|
rule ShadowTech
|
|
{
|
|
meta:
|
|
author = " Kevin Breen <kevin@techanarchy.net>"
|
|
date = "2014/04"
|
|
ref = "http://malwareconfig.com/stats/ShadowTech"
|
|
maltype = "Remote Access Trojan"
|
|
filetype = "exe"
|
|
|
|
strings:
|
|
$a = "ShadowTech" nocase
|
|
$b = "DownloadContainer"
|
|
$c = "MySettings"
|
|
$d = "System.Configuration"
|
|
$newline = "#-@NewLine@-#" wide
|
|
$split = "pSIL" wide
|
|
$key = "ESIL" wide
|
|
|
|
condition:
|
|
4 of them
|
|
}
|