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

Added YARA rules for SmartInstall Maker #871

Merged
merged 1 commit into from
Oct 19, 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
36 changes: 36 additions & 0 deletions support/yara_patterns/tools/pe/x86/installers.yara
Original file line number Diff line number Diff line change
Expand Up @@ -515,6 +515,42 @@ rule setup2go {
$1 at pe.entry_point
}

rule smart_install_maker_v4 {
meta:
tool = "I"
name = "Smart Install Maker"
version = "4.x"
strings:
$s01 = "Smart Install Maker" nocase
$s02 = "SMART INSTALL MAKER" nocase
$s03 = "c:\\delphi7\\Lib\\km\\KOL.pas"
$s04 = "TLZMADecompressor"
$s05 = "Can not create DIB section, error:"
condition:
pe.number_of_sections == 8 and
pe.sections[0].name == "CODE" and // Delphi
pe.sections[1].name == "DATA" and
pe.overlay.size != 0 and
all of them
}

rule smart_install_maker_v5 {
meta:
tool = "I"
name = "Smart Install Maker"
version = "5.x"
strings:
$s01 = "Smart Install Maker" nocase
$s02 = "SMART INSTALL MAKER" nocase
condition:
pe.number_of_sections == 8 and
pe.sections[0].name == "CODE" and // Delphi
pe.sections[1].name == "DATA" and
pe.overlay.size != 0 and
$s01 at pe.overlay.offset and
all of them
}

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