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

Adding Yara rule for InnoSetup 6.1.0 #989

Merged
merged 2 commits into from
Jul 21, 2021
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
17 changes: 17 additions & 0 deletions support/yara_patterns/tools/pe/x86/installers.yara
Original file line number Diff line number Diff line change
Expand Up @@ -3566,3 +3566,20 @@ rule xt_app_launcher
pe.overlay.size != 0 and
any of them
}

rule inno_610
{
meta:
tool = "I"
name = "Inno Setup"
version = "6.1.0"
author = "Thomas Roccia"
pattern = "entry-point: 55 8B EC 83 C4 A4 53 56 57 33 C0 89 45 C4 89 45 C0 89 45 A4 89 45 D0 89 45 C8 89 45 CC 89 45 D4 89 "
strings:
$s1 = { 55 8B EC 83 C4 A4 53 56 57 33 C0 89 45 C4 89 45 C0 89 45 A4 89 45 D0 89 45 C8 89 45 CC 89 45 D4 89 }
$s2 = "Inno Setup Setup Data (6.1.0) (u)" fullword wide ascii
$s3 = "Inno Setup Messages (6.0.0) (u)" fullword wide ascii
condition:
$s1 at pe.entry_point and
all of ($s*)
}