Skip to content

Commit

Permalink
Merge pull request #855 from avast/LZ_Installers_GenteeInstaller
Browse files Browse the repository at this point in the history
Added YARA rule for Gentee Installer
  • Loading branch information
s3rvac authored Sep 21, 2020
2 parents 694b836 + 174f781 commit ee8f4dd
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions support/yara_patterns/tools/pe/x86/installers.yara
Original file line number Diff line number Diff line change
Expand Up @@ -78,6 +78,20 @@ rule fly_studio {
pe.overlay.offset == filesize - uint32(pe.overlay.offset + pe.overlay.size - 8) - 0x08
}

rule gentee_installer {
meta:
tool = "I"
name = "GenteeInstaller"
strings:
$s01 = "Gentee installer"
condition:
pe.overlay.size > 16 and
uint32(0x3F0) == pe.overlay.offset and
(uint32(0x3F4) + uint32(0x3F8)) <= pe.overlay.size and
(uint32(pe.overlay.offset) == uint32(0x3F8)) and
$s01 at pe.sections[2].raw_data_offset
}

rule kgb_sfx {
meta:
tool = "I"
Expand Down

0 comments on commit ee8f4dd

Please sign in to comment.