From 23d1ab0c0a85f28bafa52de01c85b988577dc80b Mon Sep 17 00:00:00 2001 From: ydkhatri Date: Wed, 12 May 2021 17:58:42 -0400 Subject: [PATCH] update ver to 1.3.1 --- CHANGES.txt | 4 ++++ extract_apfs_fs.py | 2 +- ios_apt.py | 9 ++++++++- mac_apt.py | 2 +- mac_apt_artifact_only.py | 2 +- mac_apt_mounted_sys_data.py | 2 +- 6 files changed, 16 insertions(+), 5 deletions(-) diff --git a/CHANGES.txt b/CHANGES.txt index ab0c625..9e1ec63 100644 --- a/CHANGES.txt +++ b/CHANGES.txt @@ -1,3 +1,7 @@ +Updates in 20210512 (v1.3.1): + ++ Fixes small compilation issue in ios_apt.exe (no actual code changes) which caused some issues when the EXE was run + Updates in 20210506 (v1.3): + New AXIOMZIP option to read Axiom created targeted collection (not full disk image) diff --git a/extract_apfs_fs.py b/extract_apfs_fs.py index 63ea0f4..3b8d046 100644 --- a/extract_apfs_fs.py +++ b/extract_apfs_fs.py @@ -36,7 +36,7 @@ from plugin import * from uuid import UUID -__VERSION = "1.3" +__VERSION = "1.3.1" __PROGRAMNAME = "APFS metadata extract Tool" __EMAIL = "yogesh@swiftforensics.com" diff --git a/ios_apt.py b/ios_apt.py index 7c08b4e..770c3df 100644 --- a/ios_apt.py +++ b/ios_apt.py @@ -26,7 +26,7 @@ import textwrap from plugin import * -__VERSION = "1.3" +__VERSION = "1.3.1" __PROGRAMNAME = "iOS Artifact Parsing Tool" __EMAIL = "yogesh@swiftforensics.com" @@ -54,6 +54,13 @@ def FindIosFiles(ios_info): log.error("Could not find iOS system version!") return False +def Exit(message=''): + if log and (len(message) > 0): + log.info(message) + sys.exit() + else: + sys.exit(message) + def SetupExportLogger(output_params): '''Creates the csv writer for logging files exported''' output_params.export_path = os.path.join(output_params.output_path, "Export") diff --git a/mac_apt.py b/mac_apt.py index 77b92a0..9b19a43 100644 --- a/mac_apt.py +++ b/mac_apt.py @@ -36,7 +36,7 @@ from plugin import * from uuid import UUID -__VERSION = "1.3" +__VERSION = "1.3.1" __PROGRAMNAME = "macOS Artifact Parsing Tool" __EMAIL = "yogesh@swiftforensics.com" diff --git a/mac_apt_artifact_only.py b/mac_apt_artifact_only.py index efa4dc4..029db63 100644 --- a/mac_apt_artifact_only.py +++ b/mac_apt_artifact_only.py @@ -29,7 +29,7 @@ import textwrap from plugin import * -__VERSION = "1.3" +__VERSION = "1.3.1" __PROGRAMNAME = "macOS Artifact Parsing Tool - Artifact Only mode" __EMAIL = "yogesh@swiftforensics.com" diff --git a/mac_apt_mounted_sys_data.py b/mac_apt_mounted_sys_data.py index 9700f1d..d41a21e 100644 --- a/mac_apt_mounted_sys_data.py +++ b/mac_apt_mounted_sys_data.py @@ -32,7 +32,7 @@ from plugins.helpers.disk_report import * from plugin import * -__VERSION = "1.3" +__VERSION = "1.3.1" __PROGRAMNAME = "macOS Artifact Parsing Tool - SYS DATA Mounted mode" __EMAIL = "yogesh@swiftforensics.com"