ReflectiveLoader
Description
Detects a unspecified hack tool, crack or malware using a reflective loader - no hard match - further investigation recommended
Query · yara
strings:
$x1 = "ReflectiveLoader" fullword ascii
$x2 = "ReflectivLoader.dll" fullword ascii
$x3 = "?ReflectiveLoader@@" ascii
$x4 = "reflective_dll.x64.dll" fullword ascii
$x5 = "reflective_dll.dll" fullword ascii
$fp1 = "Sentinel Labs, Inc." wide
$fp2 = "Panda Security, S.L." wide ascii
condition:
uint16(0) == 0x5a4d and (
1 of ($x*) or
pe.exports("ReflectiveLoader") or
pe.exports("_ReflectiveLoader@4") or
pe.exports("?ReflectiveLoader@@YGKPAX@Z")
)
and not 1 of ($fp*)