We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent df1f3fd commit bba9e22Copy full SHA for bba9e22
1 file changed
scripts/evtx_dump_json.py
@@ -1,10 +1,12 @@
1
-# Written by AJ Read with help from evtx_dump.py file. Adds functionality to dump EVTX to JSON.
+# Written by AJ Read with help from evtx_dump.py file
2
+# Adds functionality to evtx_dump so that the user can dump evtx data formatted in JSON to the command line or a file.
3
+# The JSON data uses only the "EventRecordID" from the "System" XML structure while using all the fields in the "EventData" xml structure.
4
5
import Evtx.Evtx as evtx
6
import Evtx.Views as e_views
-import os
-import xmltodict
7
-import json
+import os #added dependency
8
+import xmltodict #added dependency
9
+import json #added dependency
10
11
def main():
12
import argparse
0 commit comments