File: module_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 (55 lines) | stat: -rw-r--r-- 4,558 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
/*! \page mod_example_page Example Modules

This page provides some tips about how you might implement some commonly needed modules. As outlined in \ref pipe_types, modules can be written for file analysis pipelines or post-processing pipelines.  
The main difference between the two types of module is how often and when they are run.  
File analysis modules are run on each individual file and post-processing modules are run once, after all the files in an image have been analyzed.  
In general, if your module will only examine a very small subset of the files in an image, then it is more efficient to make it a post-processing module. 
If your module will analyze every file in an image, then it should be a file analysis module. 

\section mod_ex_hash MD5 Hash Calculation Module
It is common to calculate the MD5 hash for each file in an image.  
Because we want it to calculate the hash of every file, an MD5 hash calculation module would be a file analysis module.

Libraries for calculating MD5 hash sums usually do not have setup or cleanup requirements, so we most likely would write <tt>initialize()</tt> and <tt>finalize()</tt> functions that do little more than return a status of TskModule::OK.

The <tt>run()</tt> function of the module would need code to read the contents of the file using TskFile::read(), and to push the file contents into the hash calculation functions of the MD5 library.  
The calculated MD5 value would be added to the image database by making a call to TskFile::setHash(). 

NOTE: The source code for a hash calculation module that produces either or both MD5 and SHA-1 hashes is included with the framework. 


\section mod_ex_hashlook MD5 Hash Lookup Module
It is also common to look up the MD5 hash values of files in hash databases to identify known files and detect duplicate files. 
Because this kind of lookup is done for all files, it would be implemented in a file analysis module.

The <tt>initialize()</tt> function of a hash lookup module would probably open the hash database the module uses, and the module's <tt>finalize()</tt> function would close the database connection. 

The <tt>run()</tt> function would get the MD5 hash of the given file using TskFile::getHash(). It would then look up the hash value in the hash database. 
Hits would be posted to the blackboard as \ref TSK_HASHSET_HIT artifacts with a \ref TSK_SET_NAME attribute identifying the hash database. 
The module would also use TskImgDB::updateKnownStatus() to set the status of the file on hits, and if the module was doing known good lookups, a hit would make the function return TskModule::STOP to terminate further analysis of the file.

NOTE: The source code for an MD5 hash lookup module that uses TSK's hash database support is included with the framework.

\section mod_registry Registry Analysis Module
It would be common for a disk image analysis system to have a module that reads registry data. Because there are only a few registry hives on a Windows system, the module would probably be implemented as a post-processing module. 

The <tt>initialize()</tt> and <tt>finalize()</tt> functions of a registry analysis module would probably simply return TskModule::OK. 

The <tt>report()</tt> method would use TskImgDB::getFileIds() with a condition argument formulated to get the file ids of the registry hive files.  
The file ids would then be used to get TskFile objects to support analysis of the hives. 

The results of the registry analysis might be used to generate a report.  

NOTE: The source code for a registry analysis module that uses the open source RegRipper tool is included with the framework.

\section mod_ex_zip_extraction Zip File Extraction Module

A disk image analysis system would probably need a module to extract files zipped up in archive files. Because a zip file extraction module would need to examine each file in an image to determine if it was an archive file, it would be a file analysis module.

A zip file extraction module would probably have <tt>initialize()</tt> and <tt>finalize()</tt> functions that immediately return a status of TskModule::OK.
 
The module's <tt>run()</tt> function would need to check the given file to see if it was a zip file. If so, the module would need to process the file and then use calls to TskFileManager::addFile() and Scheduler::schedule() to add and schedule analysis for the extracted files.   
 
NOTE: The source code for a zip file extraction module that uses the ZipArchive class in the Poco Zip library is included with the framework.

*/