Skip to content

Commit 4b7d506

Browse files
authored
fix volatility malfind output (#2663)
* Update memory.py * Update memory.py
1 parent bbb3ff7 commit 4b7d506

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

modules/processing/memory.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
# https://github.com/Cisco-Talos/pyrebox/blob/python3migration/pyrebox/volatility_glue.py
77

88
# Vol3 docs - https://volatility3.readthedocs.io/en/latest/index.html
9-
9+
import json
1010
import logging
1111
import os
1212
from pathlib import Path
@@ -81,7 +81,7 @@ def visitor(
8181
return (acc_map, final_tree)
8282

8383
error = grid.populate(visitor, final_output, fail_on_errors=True)
84-
return final_output[1], error
84+
return json.loads(json.dumps(final_output[1])), error
8585

8686

8787
class VolatilityAPI:

0 commit comments

Comments
 (0)