Skip to content

Commit

Permalink
Update to 1.4.0
Browse files Browse the repository at this point in the history
  • Loading branch information
ydkhatri committed Jul 17, 2021
1 parent e39068a commit 796e0a8
Show file tree
Hide file tree
Showing 7 changed files with 11 additions and 7 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 20210717 (v1.4.0):

+ Add parsing of Safari WebExtensions and AppExtensions plist

Updates in 20210716 (v1.3.2):

Many contributions from Minoru Kobayashi (@mnrkbys) in this release.
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
# mac_apt - macOS (and iOS) Artifact Parsing Tool
[![Latest version](https://img.shields.io/badge/version-v1.3-blue)](https://github.com/ydkhatri/mac_apt/releases/tag/v1.3)
[![Latest version](https://img.shields.io/badge/version-v1.4-blue)](https://github.com/ydkhatri/mac_apt/releases/tag/v1.4)
[![status](https://img.shields.io/badge/status-stable-green)]()

[![Latest version](https://img.shields.io/badge/version-v1.4.dev-blue)](https://github.com/ydkhatri/mac_apt/releases/tag/v1.4.dev)
[![Latest version](https://img.shields.io/badge/version-v1.5.dev-blue)](https://github.com/ydkhatri/mac_apt/releases/tag/v1.5.dev)
[![status](https://img.shields.io/badge/status-development-orange)]()

mac_apt is a DFIR (Digital Forensics and Incident Response) tool to process Mac computer full disk images (**or _live_ machines**) and extract data/metadata useful for forensic investigation. It is a python based framework, which has plugins to process individual artifacts (such as Safari internet history, Network interfaces, Recently accessed files & volumes, ..)
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.2"
__VERSION = "1.4.0"
__PROGRAMNAME = "APFS metadata extract Tool"
__EMAIL = "[email protected]"

Expand Down
2 changes: 1 addition & 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.2"
__VERSION = "1.4.0"
__PROGRAMNAME = "iOS Artifact Parsing Tool"
__EMAIL = "[email protected]"

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.2"
__VERSION = "1.4.0"
__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.2"
__VERSION = "1.4.0"
__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.2"
__VERSION = "1.4.0"
__PROGRAMNAME = "macOS Artifact Parsing Tool - SYS DATA Mounted mode"
__EMAIL = "[email protected]"

Expand Down

0 comments on commit 796e0a8

Please sign in to comment.