Skip to content

Commit

Permalink
update ver to 1.3.1
Browse files Browse the repository at this point in the history
  • Loading branch information
ydkhatri committed May 12, 2021
1 parent de41b61 commit 23d1ab0
Show file tree
Hide file tree
Showing 6 changed files with 16 additions and 5 deletions.
4 changes: 4 additions & 0 deletions CHANGES.txt
Original file line number Diff line number Diff line change
@@ -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)
Expand Down
2 changes: 1 addition & 1 deletion extract_apfs_fs.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@
from plugin import *
from uuid import UUID

__VERSION = "1.3"
__VERSION = "1.3.1"
__PROGRAMNAME = "APFS metadata extract Tool"
__EMAIL = "[email protected]"

Expand Down
9 changes: 8 additions & 1 deletion ios_apt.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
import textwrap
from plugin import *

__VERSION = "1.3"
__VERSION = "1.3.1"
__PROGRAMNAME = "iOS Artifact Parsing Tool"
__EMAIL = "[email protected]"

Expand Down Expand Up @@ -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")
Expand Down
2 changes: 1 addition & 1 deletion mac_apt.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@
from plugin import *
from uuid import UUID

__VERSION = "1.3"
__VERSION = "1.3.1"
__PROGRAMNAME = "macOS Artifact Parsing Tool"
__EMAIL = "[email protected]"

Expand Down
2 changes: 1 addition & 1 deletion mac_apt_artifact_only.py
Original file line number Diff line number Diff line change
Expand Up @@ -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 = "[email protected]"

Expand Down
2 changes: 1 addition & 1 deletion mac_apt_mounted_sys_data.py
Original file line number Diff line number Diff line change
Expand Up @@ -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 = "[email protected]"

Expand Down

0 comments on commit 23d1ab0

Please sign in to comment.