We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bbb3ff7 commit 4b7d506Copy full SHA for 4b7d506
modules/processing/memory.py
@@ -6,7 +6,7 @@
6
# https://github.com/Cisco-Talos/pyrebox/blob/python3migration/pyrebox/volatility_glue.py
7
8
# Vol3 docs - https://volatility3.readthedocs.io/en/latest/index.html
9
-
+import json
10
import logging
11
import os
12
from pathlib import Path
@@ -81,7 +81,7 @@ def visitor(
81
return (acc_map, final_tree)
82
83
error = grid.populate(visitor, final_output, fail_on_errors=True)
84
- return final_output[1], error
+ return json.loads(json.dumps(final_output[1])), error
85
86
87
class VolatilityAPI:
0 commit comments