Skip to content

Commit

Permalink
Merge pull request #853 from avast/LZ_Installers_FlyStudio
Browse files Browse the repository at this point in the history
Added YARA rules for FlyStudio installer
  • Loading branch information
s3rvac committed Sep 18, 2020
2 parents f3cbd33 + 0a1f03b commit 5a455d7
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions support/yara_patterns/tools/pe/x86/installers.yara
Original file line number Diff line number Diff line change
Expand Up @@ -66,6 +66,18 @@ rule create_install {
all of them
}

rule fly_studio {
meta:
tool = "I"
name = "FlyStudio"
condition:
pe.overlay.size > 16 and
uint32(pe.overlay.offset) == 0x829ab7a5 and
uint32(pe.overlay.offset + 4) == 0x04 and
uint32(pe.overlay.offset + pe.overlay.size - 4) == 0x829ab7a5 and
pe.overlay.offset == filesize - uint32(pe.overlay.offset + pe.overlay.size - 8) - 0x08
}

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

0 comments on commit 5a455d7

Please sign in to comment.