Python Forum
Request for Python code - Features extraction from JSON file (cuckoo)
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Request for Python code - Features extraction from JSON file (cuckoo)
#1
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.
Reply
#2
This is basic code:

import json

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

mydict is a dictionary of the json data
Reply


Possibly Related Threads…
Thread Author Replies Views Last Post
  encrypt data in json file help jacksfrustration 1 74 Yesterday, 05:16 PM
Last Post: deanhystad
  parse json field from csv file lebossejames 4 669 Nov-14-2023, 11:34 PM
Last Post: snippsat
  Python Script to convert Json to CSV file chvsnarayana 8 2,347 Apr-26-2023, 10:31 PM
Last Post: DeaD_EyE
  Loop through json file and reset values [SOLVED] AlphaInc 2 1,963 Apr-06-2023, 11:15 AM
Last Post: AlphaInc
  associating members in a list to more than one features rezagholi 0 583 Mar-09-2023, 03:33 PM
Last Post: rezagholi
  Converting a json file to a dataframe with rows and columns eyavuz21 13 4,179 Jan-29-2023, 03:59 PM
Last Post: eyavuz21
  validate large json file with millions of records in batches herobpv 3 1,223 Dec-10-2022, 10:36 PM
Last Post: bowlofred
  Writing to json file ebolisa 1 970 Jul-17-2022, 04:51 PM
Last Post: deanhystad
  Trying to parse only 3 key values from json file cubangt 8 3,339 Jul-16-2022, 02:05 PM
Last Post: deanhystad
  Python Split json into separate json based on node value CzarR 1 5,478 Jul-08-2022, 07:55 PM
Last Post: Larz60+

Forum Jump:

User Panel Messages

Announcements
Announcement #1 8/1/2020
Announcement #2 8/2/2020
Announcement #3 8/6/2020