Reflective_DLL_Loader_Aug17_1
Description
Detects Reflective DLL Loader
Query · yara
strings:
$x1 = "\\Release\\reflective_dll.pdb" ascii
$x2 = "reflective_dll.x64.dll" fullword ascii
$s3 = "DLL Injection" fullword ascii
$s4 = "?ReflectiveLoader@@YA_KPEAX@Z" fullword ascii
condition:
( uint16(0) == 0x5a4d and
filesize < 300KB and
(
pe.imphash() == "4bf489ae7d1e6575f5bb81ae4d10862f" or
pe.exports("?ReflectiveLoader@@YA_KPEAX@Z") or
( 1 of ($x*) or 2 of them )
)
) or ( 2 of them )