From f872e2cd6e9b231949e7dc920d0e90d641fedd11 Mon Sep 17 00:00:00 2001 From: Andriy Brukhovetskyy Date: Fri, 10 Jan 2025 16:39:28 +0100 Subject: [PATCH] fix --- lib/cuckoo/core/plugins.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/cuckoo/core/plugins.py b/lib/cuckoo/core/plugins.py index 24993b3e8bc..9669478a904 100644 --- a/lib/cuckoo/core/plugins.py +++ b/lib/cuckoo/core/plugins.py @@ -706,7 +706,7 @@ def __init__(self, task, results, reprocess=False): # remove unwanted/duplicate information from reporting for process in results["behavior"]["processes"]: # Reprocessing and Behavior set from json file - if isinstance(process["calls"], list): + if isinstance(process["calls"], list) and type(process["calls"]).__name__ != "ParseProcessLog": break process["calls"].begin_reporting() # required to convert object to list