Skip to content

Commit

Permalink
Renaming signatures to lower_snake_case (#921)
Browse files Browse the repository at this point in the history
  • Loading branch information
cccs-kevin authored Jun 15, 2022
1 parent d912471 commit 9d5a7fe
Showing 1 changed file with 12 additions and 12 deletions.
24 changes: 12 additions & 12 deletions modules/signatures/CAPE.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@


class CAPE_Compression(Signature):
name = "Compression"
name = "compression"
description = "Behavioural detection: Decompression of executable module(s)."
severity = 1
categories = ["malware"]
Expand Down Expand Up @@ -57,7 +57,7 @@ def on_complete(self):


class CAPE_RegBinary(Signature):
name = "RegBinary"
name = "reg_binary"
description = "Behavioural detection: PE binary written to registry."
severity = 3
categories = ["malware"]
Expand Down Expand Up @@ -87,7 +87,7 @@ def on_complete(self):


class CAPE_Decryption(Signature):
name = "Decryption"
name = "decryption"
description = "Behavioural detection: Decryption of executable module(s)."
severity = 1
categories = ["malware"]
Expand Down Expand Up @@ -116,7 +116,7 @@ def on_complete(self):


class CAPE_Unpacker(Signature):
name = "Unpacker"
name = "unpacker"
description = "Behavioural detection: Executable code extraction - unpacking"
severity = 1
categories = ["allocation"]
Expand Down Expand Up @@ -159,7 +159,7 @@ def on_call(self, call, process):


class CAPE_InjectionCreateRemoteThread(Signature):
name = "InjectionCreateRemoteThread"
name = "injection_create_remote_thread"
description = "Behavioural detection: Injection with CreateRemoteThread in a remote process"
severity = 3
categories = ["injection"]
Expand Down Expand Up @@ -242,7 +242,7 @@ def on_complete(self):


class CAPE_InjectionProcessHollowing(Signature):
name = "InjectionProcessHollowing"
name = "injection_process_hollowing"
description = "Behavioural detection: Injection (Process Hollowing)"
severity = 3
categories = ["injection"]
Expand Down Expand Up @@ -319,7 +319,7 @@ def on_call(self, call, process):


class CAPE_InjectionSetWindowLong(Signature):
name = "InjectionSetWindowLong"
name = "injection_set_window_long"
description = "Behavioural detection: Injection with SetWindowLong in a remote process"
severity = 3
categories = ["injection"]
Expand Down Expand Up @@ -383,7 +383,7 @@ def on_call(self, call, process):


class CAPE_Injection(Signature):
name = "InjectionInterProcess"
name = "injection_inter_process"
description = "Behavioural detection: Injection (inter-process)"
severity = 3
categories = ["injection"]
Expand Down Expand Up @@ -433,7 +433,7 @@ def on_complete(self):


class CAPE_EvilGrab(Signature):
name = "EvilGrab"
name = "evil_grab"
description = "Behavioural detection: EvilGrab"
severity = 3
categories = ["malware"]
Expand Down Expand Up @@ -468,7 +468,7 @@ def on_complete(self):


class CAPE_PlugX(Signature):
name = "PlugX"
name = "plugx"
description = "Behavioural detection: PlugX"
severity = 3
categories = ["chinese", "malware"]
Expand Down Expand Up @@ -503,7 +503,7 @@ def on_complete(self):


class CAPE_Doppelganging(Signature):
name = "Doppelganging"
name = "doppelganging"
description = "Behavioural detection: Process Doppelganging"
severity = 3
categories = ["injection"]
Expand Down Expand Up @@ -542,7 +542,7 @@ def on_call(self, call, process):


class CAPE_TransactedHollowing(Signature):
name = "TransactedHollowing"
name = "transacted_hollowing"
description = "Behavioural detection: Transacted Hollowing"
severity = 3
categories = ["injection"]
Expand Down

0 comments on commit 9d5a7fe

Please sign in to comment.