Skip to content

Commit

Permalink
style: Automatic code formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
actions-user committed Oct 5, 2024
1 parent dfbccf8 commit 1e5ccd9
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion modules/signatures/all/packer_upx.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@

from lib.cuckoo.common.abstracts import Signature


class UPXCompressed(Signature):
name = "packer_upx"
description = "The executable is compressed using UPX"
Expand All @@ -37,6 +38,6 @@ def run(self):
for section in pe["sections"]:
if section["name"].lower().startswith(".upx"):
self.data.append({"section": section})
ret = True
ret = True

return ret

0 comments on commit 1e5ccd9

Please sign in to comment.