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

Update packer_vmprotect.py #450

Merged
merged 2 commits into from
Oct 5, 2024
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
15 changes: 9 additions & 6 deletions modules/signatures/all/packer_vmprotect.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,6 @@

from lib.cuckoo.common.abstracts import Signature


class VMPPacked(Signature):
name = "packer_vmprotect"
description = "The executable is likely packed with VMProtect"
Expand All @@ -29,11 +28,15 @@ class VMPPacked(Signature):
mbcs = ["OB0001", "OB0002", "OB0006", "F0001", "F0001.010"]

def run(self):
if "static" in self.results and "pe" in self.results["static"]:
if "sections" in self.results["static"]["pe"]:
for section in self.results["static"]["pe"]["sections"]:
ret = False

target = self.results.get("target", {})
if target.get("category") in ("file", "static") and target.get("file"):
pe = self.results["target"]["file"].get("pe", [])
if pe:
for section in pe["sections"]:
if section["name"].lower().startswith(".vmp"):
self.data.append({"section": section})
return True
ret = True

return False
return ret
Loading