Python Forum

Full Version: Request for Python code - Features extraction from JSON file (cuckoo)
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hello

Would you please help me to create a script that can extract features or artifacts from JSON files (CUCKOO) that I got after malware analysis? I am not a programmer and someone share with me this website for help.

Thank you for your time.
This is basic code:

import json

with open(myfile) as fp:
    mydict = json.load(fp)
[/python]

mydict is a dictionary of the json data