Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Lz installers install creator #858

Merged
merged 2 commits into from
Sep 25, 2020
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
33 changes: 33 additions & 0 deletions support/yara_patterns/tools/pe/x86/installers.yara
Original file line number Diff line number Diff line change
Expand Up @@ -112,6 +112,21 @@ rule ghost_installer {
all of them
}

rule install_creator {
meta:
tool = "I"
name = "InstallCreator"
strings:
$s01 = { 77 77 67 54 29 48 }
condition:
pe.number_of_sections == 3 and
pe.sections[0].name == "UPX0" and
pe.sections[1].name == "UPX1" and
pe.overlay.offset != 0 and
pe.overlay.size != 0 and
$s01 at pe.overlay.offset
}

rule kgb_sfx {
meta:
tool = "I"
Expand Down Expand Up @@ -641,6 +656,24 @@ rule nsis_1xx_pimp {
$1 at pe.entry_point
}

rule nsis_overlay_data {
meta:
tool = "I"
name = "Nullsoft Install System"
strings:
$s01 = { EF BE AD DE 6E 73 69 73 69 6E 73 74 61 6C 6C 00 }
$s02 = { ED BE AD DE 4E 75 6C 6C 53 6F 66 74 49 6E 73 74 }
$s03 = { 0? 00 00 00 EF BE AD DE 4E 75 6C 6C (53|73) 6F 66 74 49 6E 73 74 }
condition:
pe.number_of_sections > 3 and
pe.overlay.size != 0 and
(
@s01 >= pe.overlay.offset or
@s02 >= pe.overlay.offset or
@s03 >= pe.overlay.offset
)
}

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