Skip to content

Commit

Permalink
Added detection of AppPacker
Browse files Browse the repository at this point in the history
  • Loading branch information
Ladislav Zezula authored and PeterMatula committed Aug 14, 2023
1 parent 616d0ce commit b9791c8
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions support/yara_patterns/tools/pe/x86/packers.yara
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,19 @@
import "pe"
import "dotnet"

rule AppPacker_1_3_x {
meta:
tool = "P"
name = "AppPacker 1.3.x"
strings:
$h01 = { 3C 53 65 72 47 72 65 65 6E 3E } // Overlay: "<SerGreen>"
condition:
pe.data_directories[0x0E].virtual_address != 0 and // No pe.is_dotnet in retdec's YARA
pe.version_info["Comments"] contains "Packed portable application inside" and
pe.version_info["CompanyName"] contains "SerGreen" and
$h01 at pe.overlay.offset
}

rule blizzard_protector {
meta:
tool = "P"
Expand Down

0 comments on commit b9791c8

Please sign in to comment.