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

Remove too broad YARA rules for VMProtect packer detection. #778

Merged
merged 1 commit into from
Jun 2, 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
22 changes: 0 additions & 22 deletions support/yara_patterns/tools/pe/x86/packers.yara
Original file line number Diff line number Diff line change
Expand Up @@ -16747,28 +16747,6 @@ rule visual_protect_uv {
$1 at pe.entry_point
}

rule vmprotect_uv_01 {
meta:
tool = "P"
name = "VMProtect"
pattern = "68????????E8??????00"
strings:
$1 = { 68 ?? ?? ?? ?? E8 ?? ?? ?? 00 }
condition:
$1 at pe.entry_point
}

rule vmprotect_uv_02 {
meta:
tool = "P"
name = "VMProtect"
pattern = "68????????E8??????FF"
strings:
$1 = { 68 ?? ?? ?? ?? E8 ?? ?? ?? FF }
condition:
$1 at pe.entry_point
}

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