-
Notifications
You must be signed in to change notification settings - Fork 117
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Updates to the testing framework and the command line arguments.
- Loading branch information
1 parent
75f737c
commit 4c12452
Showing
6 changed files
with
387 additions
and
16 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 |
---|---|---|
@@ -1,10 +1,8 @@ | ||
import asyncio | ||
import sys | ||
import asyncio | ||
from src.analyzeMFT.cli import main | ||
|
||
if __name__ == "__main__": | ||
if sys.platform == "win32": | ||
# This sets the event loop policy to use the ProactorEventLoop on Windows | ||
asyncio.set_event_loop_policy(asyncio.WindowsProactorEventLoopPolicy()) | ||
|
||
asyncio.set_event_loop_policy(asyncio.WindowsSelectorEventLoopPolicy()) | ||
asyncio.run(main()) |
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 |
---|---|---|
@@ -1,6 +1,18 @@ | ||
from .windows_time import WindowsTime | ||
from .mft_record import MftRecord | ||
from .mft_analyzer import MftAnalyzer | ||
from .constants import VERSION | ||
from .file_writers import FileWriters | ||
from .constants import VERSION, CSV_HEADER | ||
from .cli import main | ||
|
||
__all__ = ['WindowsTime', 'MftRecord', 'MftAnalyzer', 'VERSION'] | ||
__all__ = [ | ||
'WindowsTime', | ||
'MftRecord', | ||
'MftAnalyzer', | ||
'FileWriters', | ||
'VERSION', | ||
'CSV_HEADER', | ||
'main' | ||
] | ||
|
||
__version__ = VERSION |
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
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
Oops, something went wrong.