File: fw_examples.dox

package info (click to toggle)
sleuthkit 4.6.5-1%2Bdeb10u1
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 39,264 kB
  • sloc: ansic: 171,812; cpp: 44,216; sh: 31,364; java: 17,674; makefile: 1,241; xml: 838; perl: 797; python: 707; sed: 16
file content (18 lines) | stat: -rw-r--r-- 1,641 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
/*! \page fw_example_page Example Framework Use Cases

\section fw_example_overview Overview
This section outlines some example uses of the framework.

\section fw_example_gui Graphical Interface Environment 

The framework could be used inside of a graphical interface application in  a couple of ways.  First, there are several tasks that should be applied to all files.  A pipeline of those tasks could be created and run on every file automatically.  To do so, one would use TskImageFile to populate the database, use TskSchedulerQueue to schedule the file analysis jobs, and then run a file analysis pipeline on each file. A post-processing / reporting pipeline could also be used, if needed. 

Secondly, pipelines could be created for tasks and analysis techniques that should be applied only after some manual review.  for these situations, the user could, for example, right click on the file and choose from the pipelines to run on the file.  When this option is selected by the user, the file is passed to the file analysis pipeline chosen by the user. 

\section fw_example_dist Distributed Interface Environment 

The framework can also be used in a distributed environment, although the current open source code does not currently support that setup out of the box. 

In a distributed system, you would want a different implementation of TskImgDB other than the SQLite implementation. You would also want a Scheduler implementation other than the default queue version. After those custom changes, you could analyze sets of files in a file analysis pipeline or carve unallocated image files on different nodes in a cluster.

*/