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

24 lines
No EOL
835 B
Text

rule PoS_Malware_RawPOS2015_service : RawPOS2015_service
{
meta:
author = "Trend Micro, Inc."
date = "2015-03-10"
description = "Used to detect RawPOS RAM service, including 2015 sample set"
reference = "http://sjc1-te-ftp.trendmicro.com/images/tex/pdf/RawPOS%20Technical%20Brief.pdf"
sample_filetype = "exe"
strings:
$string0 = "OpenService failed - %s"
$string1 = "OpenSCManager failed - %s"
$string2 = "Unable to install %s - %s"
$string3 = "File already exists"
$string4 = "Stopping %s."
$string5 = "This may take several seconds. Please wait."
$string6 = "%s failed to stop."
$string7 = "%s removed."
$string8 = "Debugging %s."
$string9 = "Could not create registery key"
$string10 = "\\\\.\\pipe\\susrv"
$string11 = "SYSTEM\\CurrentControlSet\\Services\\EventLog\\Application\\%s"
condition:
all of ($string*)
}