Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Andriy Brukhovetskyy committed Jan 10, 2025
1 parent 724b2b1 commit f872e2c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/cuckoo/core/plugins.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit f872e2c

Please sign in to comment.