SUSP_ELF_LNX_UPX_Compressed_File
Description
Detects a suspicious ELF binary with UPX compression
Query · yara
strings:
$s1 = "PROT_EXEC|PROT_WRITE failed." fullword ascii
$s2 = "$Id: UPX" fullword ascii
$s3 = "$Info: This file is packed with the UPX executable packer" ascii
$fp1 = "check your UCL installation !"
condition:
uint16(0) == 0x457f and filesize < 2000KB and
filesize > 30KB and 2 of ($s*)
and not 1 of ($fp*)