Skip to content

Commit

Permalink
fix: filter condition dump script (#68)
Browse files Browse the repository at this point in the history
* fix: filter condition leveldb dump script
  • Loading branch information
lxndrblz authored Jan 21, 2024
1 parent 51a9f3d commit e79f1ea
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion CITATION.cff
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,6 @@ keywords:
- Forensics
- Electron
abstract: "Autopsy Plugin for the Digital Forensic Acquisition and Analysis of Artefacts Generated by Microsoft Teams."
version: 0.8.0
version: 0.8.1
license: MIT
date-released: "2021-08-07"
2 changes: 1 addition & 1 deletion src/forensicsim/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "0.8.0"
__version__ = "0.8.1"
2 changes: 1 addition & 1 deletion tools/dump_leveldb.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ def process_level_db(
input_path: Path, output_path: Path, blob_path: Optional[Path] = None
) -> None:
# convert the database to a python list with nested dictionaries
extracted_values = parse_db(input_path, blob_path, do_not_filter=True)
extracted_values = parse_db(input_path, blob_path, do_not_filter=False)

# write the output to a json file
write_results_to_json(extracted_values, output_path)
Expand Down

0 comments on commit e79f1ea

Please sign in to comment.