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

Small improvements to detections of binary tools. #831

Merged
merged 2 commits into from
Jul 31, 2020
Merged
Show file tree
Hide file tree
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
2 changes: 1 addition & 1 deletion src/cpdetect/heuristics/pe_heuristics.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -2117,7 +2117,7 @@ void PeHeuristics::getPeSectionHeuristics()
}
if (secondLastName == ".gentee")
{
addPacker(source, strength, "Gentee");
addCompiler(source, strength, "Gentee");
}
}
if (firstName == "pec1"
Expand Down
12 changes: 0 additions & 12 deletions support/yara_patterns/tools/pe/x86/installers.yara
Original file line number Diff line number Diff line change
Expand Up @@ -239,18 +239,6 @@ rule installshield_uv_05 {
$1 at pe.entry_point
}

rule installshield_2000 {
meta:
tool = "I"
name = "InstallShield"
version = "2000"
pattern = "558BEC6AFF68????????68????????64A1????????50648925????????83C4??535657"
strings:
$1 = { 55 8B EC 6A FF 68 ?? ?? ?? ?? 68 ?? ?? ?? ?? 64 A1 ?? ?? ?? ?? 50 64 89 25 ?? ?? ?? ?? 83 C4 ?? 53 56 57 }
condition:
$1 at pe.entry_point
}

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