signature-base/yara/mal_cryp_rat.yar
Florian Roth 9a0e7a44fb Cryp RAT
2019-01-08 09:18:45 +01:00

19 lines
472 B
Plaintext

import "pe"
rule MAL_CrypRAT_Jan19_1 {
meta:
description = "Detects CrypRAT"
author = "Florian Roth"
license = "https://creativecommons.org/licenses/by-nc/4.0/"
reference = "Internal Research"
score = 90
date = "2019-01-07"
strings:
$x1 = "Cryp_RAT" fullword wide
condition:
uint16(0) == 0x5a4d and filesize < 600KB and (
pe.imphash() == "2524e5e9fe04d7bfe5efb3a5e400fe4b" or
1 of them
)
}