SUSP_AppDomainInjection_Keyword_May26
Description
Detects link files, archives and binaries that contain keywords related to AppDomain hijacking/injection a technique used by malware to sideload payloads.
Query · yara
strings:
$x1 = "AppDomainInjection" ascii wide fullword
$x2 = "AppDomainHijack" ascii wide fullword
condition:
(
uint16(0) == 0x5a4d // PE
or uint16(0) == 0x4b50 // ZIP
or uint32(0x8000) == 0x30444301 // ISO
or uint16(0) == 0x004c and uint32(4) == 0x00021401 // LNK
)
and 1 of ($x*)