Sneed-Reactivity/yara-mikesxrs/Florian Roth/gen_sharpcat.yar
Sam Sneed 08e8d462fe OMG ISTG PLS WORK
RED PILL 🔴 💊
2024-07-25 12:43:35 -05:00

21 lines
565 B
Text

/*
Yara Rule Set
Author: Florian Roth
Date: 2016-06-10
Identifier: SharpCat
*/
rule SharpCat {
meta:
description = "Detects command shell SharpCat - file SharpCat.exe"
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
}