-
Notifications
You must be signed in to change notification settings - Fork 103
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
7 changed files
with
19 additions
and
17 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -9,7 +9,7 @@ __pycache__/ | |
*_compiled* | ||
*$py.class | ||
kill_pycache.bat | ||
|
||
.DS_Store | ||
libewf* | ||
|
||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -35,8 +35,8 @@ | |
from plugins.helpers.disk_report import * | ||
from plugin import * | ||
from uuid import UUID | ||
from version import __VERSION | ||
|
||
__VERSION = "1.4.2.dev" | ||
__PROGRAMNAME = "APFS metadata extract Tool" | ||
__EMAIL = "[email protected]" | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -15,18 +15,19 @@ | |
NOTE: This currently works only on Python3.7 or higher. | ||
''' | ||
|
||
import sys | ||
import os | ||
import argparse | ||
import logging | ||
import os | ||
import sys | ||
import textwrap | ||
import time | ||
import traceback | ||
import plugins.helpers.macinfo as macinfo | ||
|
||
from plugins.helpers.writer import * | ||
import logging | ||
import time | ||
import textwrap | ||
from plugin import * | ||
from version import __VERSION | ||
|
||
__VERSION = "1.4.2.dev" | ||
__PROGRAMNAME = "iOS Artifact Parsing Tool" | ||
__EMAIL = "[email protected]" | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -35,8 +35,8 @@ | |
from plugins.helpers.disk_report import * | ||
from plugin import * | ||
from uuid import UUID | ||
from version import __VERSION | ||
|
||
__VERSION = "1.4.2.dev" | ||
__PROGRAMNAME = "macOS Artifact Parsing Tool" | ||
__EMAIL = "[email protected]" | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -18,18 +18,18 @@ | |
NOTE: This currently works only on Python3.7 or higher. | ||
''' | ||
|
||
import sys | ||
import os | ||
import argparse | ||
import traceback | ||
import plugins.helpers.macinfo as macinfo | ||
from plugins.helpers.writer import * | ||
import logging | ||
import time | ||
import os | ||
import plugins.helpers.macinfo as macinfo | ||
import sys | ||
import textwrap | ||
import time | ||
import traceback | ||
from plugin import * | ||
from plugins.helpers.writer import * | ||
from version import __VERSION | ||
|
||
__VERSION = "1.4.2.dev" | ||
__PROGRAMNAME = "macOS Artifact Parsing Tool - Artifact Only mode" | ||
__EMAIL = "[email protected]" | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -31,8 +31,8 @@ | |
from plugins.helpers.writer import * | ||
from plugins.helpers.disk_report import * | ||
from plugin import * | ||
from version import __VERSION | ||
|
||
__VERSION = "1.4.2.dev" | ||
__PROGRAMNAME = "macOS Artifact Parsing Tool - SYS DATA Mounted mode" | ||
__EMAIL = "[email protected]" | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
__VERSION = "1.4.3.dev (20210904)" |