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 Nov 5, 2023
1 parent 98b9280 commit 815e219
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion modules/signatures/api_uuidfromstringa.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 api_uuidfromstringa(Signature):
name = "api_uuidfromstringa"
description = "Potential malicious use of UuidFromStringA"
Expand All @@ -34,7 +35,7 @@ def __init__(self, *args, **kwargs):

def on_call(self, call, process):
if call["api"] == "LdrGetProcedureAddress" and self.get_argument(call, "FunctionName") == "UuidFromStringA":
self.dll_loaded = True #RPCRT4.dll
self.dll_loaded = True # RPCRT4.dll
self.ldr = 1
if self.pid:
self.mark_call()
Expand Down

0 comments on commit 815e219

Please sign in to comment.