mirror of
https://github.com/Yara-Rules/rules
synced 2026-06-08 12:58:40 +00:00
836d7f74c4
New malware rules classification
24 lines
544 B
Plaintext
24 lines
544 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
|
|
{
|
|
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
|
|
}
|