SUSP_DLL_SideLoading_Characteristics_Feb26
Description
Detects suspicious log.dll used by Bitdefender Submission Wizard and seen being used in LotusBlossom toolkit
Query · yara
strings:
$s1 = "log.dll" fullword ascii
condition:
uint16(0) == 0x5a4d
and ( // this is what makes it suspicious
filesize < 300KB
or filesize > 500KB
)
and pe.exports("LogInit")
and pe.exports("LogWrite")
and $s1
and filename == "log.dll"