-
Notifications
You must be signed in to change notification settings - Fork 592
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
DFIQ Analyzer Implementation (#3178)
* DFIQ Analyzer implementation * Dynamic import of DFIQ analyzers * Integration into the analyzer framework * Trigger via DFIQ Approaches being added to a sketch * Linked Analysis with Approach objects * Trigger chck for analysis from the API Endpoint * DFIQ analyzer trigger via uploaded timeline * Adding a function to deregister analyzers to the manager * Ensuring the index is ready before analyzers are executed * Linking Analysis and InvestigativeQuestionConclusion objects. * Adding unit tests for the scenarios API `check_and_run_dfiq_analysis_steps` function.
- Loading branch information
Showing
11 changed files
with
720 additions
and
29 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
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
"""DFIQ Analyzer module.""" | ||
|
||
from timesketch.lib.analyzers.dfiq_plugins import manager as dfiq_analyzer_manager | ||
|
||
dfiq_analyzer_manager.load_dfiq_analyzers() |
Oops, something went wrong.