SUSP_Imphash_Mar23_3
Description
Detects imphash often found in malware samples (Maximum 0,25% hits with search for 'imphash:x p:0' on Virustotal) = 99,75% hits
Query · yara
condition:
uint16(0) == 0x5A4D and (
// no size limit as some samples are 20MB+ and the hash is calculated only on the header
//pe.imphash() == "87bed5a7cba00c7e1f4015f1bdae2183" or // UPX imphash
//pe.imphash() == "09d0478591d4f788cb3e5ea416c25237" or // PECompact imphash
// pe.imphash() == "6ed4f5f04d62b18d96b26d6db7c18840" or // too many fp by now
// pe.imphash() == "0b5552dccd9d0a834cea55c0c8fc05be"
// pe.imphash() == "fc6683d30d9f25244a50fd5357825e79" or
pe.imphash() == "afcdf79be1557326c854b6e20cb900a7" or
pe.imphash() == "2c5f2513605e48f2d8ea5440a870cb9e"
)
and pe.number_of_signatures == 0