mirror of
https://github.com/valitydev/signature-base.git
synced 2024-11-06 18:15:20 +00:00
32 lines
1.1 KiB
Plaintext
32 lines
1.1 KiB
Plaintext
/*
|
|
Yara Rule Set
|
|
Author: Florian Roth
|
|
Date: 2018-03-06
|
|
Identifier: TSCookie RAT
|
|
Reference: http://blog.jpcert.or.jp/2018/03/malware-tscooki-7aa0.html
|
|
*/
|
|
|
|
/* Rule Set ----------------------------------------------------------------- */
|
|
|
|
import "pe"
|
|
|
|
rule TSCookie_RAT {
|
|
meta:
|
|
description = "Detects TSCookie RAT"
|
|
license = "https://creativecommons.org/licenses/by-nc/4.0/"
|
|
author = "Florian Roth"
|
|
reference = "http://blog.jpcert.or.jp/2018/03/malware-tscooki-7aa0.html"
|
|
date = "2018-03-06"
|
|
hash1 = "2bd13d63797864a70b775bd1994016f5052dc8fd1fd83ce1c13234b5d304330d"
|
|
strings:
|
|
$x1 = "[-] DecryptPassword_Outlook failed(err=%d)" fullword ascii
|
|
$x2 = "----------------------- Firefox Passwords ------------------" fullword ascii
|
|
$x3 = "--------------- Outlook Passwords ------------------" fullword ascii
|
|
$x4 = "----------------------- IE Passwords ------------------" fullword ascii
|
|
condition:
|
|
uint16(0) == 0x5a4d and filesize < 1000KB and (
|
|
( pe.exports("DoWork") and pe.exports("PrintF") ) or
|
|
1 of them
|
|
)
|
|
}
|