signature-base/yara/gen_susp_lnk.yar

12 lines
330 B
Plaintext
Raw Normal View History

2019-02-05 08:11:16 +00:00
rule SUSP_LNK_Big_Link_File {
meta:
description = "Detects a suspiciously big LNK file - maybe with embedded content"
author = "Florian Roth"
reference = "Internal Research"
date = "2018-05-15"
score = 65
condition:
uint16(0) == 0x004c and uint32(4) == 0x00021401 and filesize > 200KB
}