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_upx.py #451

Merged
merged 1 commit 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
26 changes: 11 additions & 15 deletions modules/signatures/all/packer_upx.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 UPXCompressed(Signature):
name = "packer_upx"
description = "The executable is compressed using UPX"
Expand All @@ -29,18 +28,15 @@ class UPXCompressed(Signature):
mbcs = ["OB0001", "OB0002", "OB0006", "F0001", "F0001.008"]

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"]:
if section["name"].startswith("UPX"):
descmsg = "name: {0}, entropy: {1}, characteristics: {2}, raw_size: {3}, virtual_size: {4}".format(
section["name"],
section["entropy"],
section["characteristics"],
section["size_of_data"],
section["virtual_size"],
)
self.data.append({"section": descmsg})
return True
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(".upx"):
self.data.append({"section": section})
ret = True

return False
return ret
Loading