mirror of
https://github.com/valitydev/signature-base.git
synced 2024-11-06 18:15:20 +00:00
23 lines
627 B
Plaintext
23 lines
627 B
Plaintext
/*
|
|
Yara Rule Set
|
|
Author: Florian Roth
|
|
Date: 2016-06-10
|
|
Identifier: SharpCat
|
|
*/
|
|
|
|
rule SharpCat {
|
|
meta:
|
|
description = "Detects command shell SharpCat - file SharpCat.exe"
|
|
license = "https://creativecommons.org/licenses/by-nc/4.0/"
|
|
author = "Florian Roth"
|
|
reference = "https://github.com/Cn33liz/SharpCat"
|
|
date = "2016-06-10"
|
|
hash1 = "96dcdf68b06c3609f486f9d560661f4fec9fe329e78bd300ad3e2a9f07e332e9"
|
|
strings:
|
|
$x1 = "ShellZz" fullword ascii
|
|
$s2 = "C:\\Windows\\System32\\cmd.exe" fullword wide
|
|
$s3 = "currentDirectory" fullword ascii
|
|
condition:
|
|
uint16(0) == 0x5a4d and filesize < 20KB and all of them
|
|
}
|