You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: scripts/evtx_dump_json.py
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -1,6 +1,6 @@
1
1
#!/usr/bin/env python3
2
2
# This file is part of python-evtx.
3
-
# Written by AJ Read with help from evtx_dump.py file written by Willi Ballenthin.
3
+
# Written by AJ Read (ajread4) with help/inspiration from the evtx_dump.py file written by Willi Ballenthin.
4
4
#
5
5
# Purpose: User can dump evtx data into JSON format to either the command line or a JSON file in new line delimited format/JSON array.
6
6
# Details: The JSON object is created with only the EventRecordID from the System section of the evtx XML and all of the information within the EventData section.
@@ -57,7 +57,7 @@ def main():
57
57
58
58
# Add information to the JSON object for this specific log
59
59
json_subline.update({data_name: data_value})
60
-
60
+
61
61
# Print the JSON object for the specific log if not requested to output to file
0 commit comments