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 13b40b2 commit cddace8
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
3 changes: 2 additions & 1 deletion modules/signatures/all/packer_aspack.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 ASPackPacked(Signature):
name = "packer_aspack"
description = "Executable file is packed/obfuscated with ASPack"
Expand All @@ -37,6 +38,6 @@ def run(self):
for section in pe["sections"]:
if section["name"].lower().startswith("aspack"):
self.data.append({"section": section})
ret = True
ret = True

return ret
3 changes: 2 additions & 1 deletion modules/signatures/all/packer_enigma.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 EnigmaPacked(Signature):
name = "packer_enigma"
description = "Executable file is packed/obfuscated with Enigma"
Expand All @@ -37,6 +38,6 @@ def run(self):
for section in pe["sections"]:
if section["name"].lower().startswith(".enigma"):
self.data.append({"section": section})
ret = True
ret = True

return ret

0 comments on commit cddace8

Please sign in to comment.