/*! \page interesting_files_identifier_page Interesting Files Identifier Module [TOC] \section interesting_files_overview Overview The Interesting Files module allows you to automatically flag files and directories that match a set of rules. This can be useful if you always need to check whether files with a given name or path are in the data source, or if you are always interested in files with a certain type. This module allows you to make sets of rules that will be run against each file as it is processed. If a file matches any of the rules, you will see an entry for it in the \ref tree_viewer_page. You can share your rules with other users, and import sets made by others into your copy of Autopsy. \section interesting_files_terminology Terminology
Type | Substring/Regex | Text | Description | Sample match |
---|---|---|---|---|
Full Name | false | \verbatim test.txt \endverbatim | Will match files named "test.txt" | text.txt |
Full Name | true | \verbatim bomb \endverbatim | Will match files with "bomb" anywhere their name | Pipe bomb.png |
Full Name | true | \verbatim virus.*\.exe \endverbatim | Will match files with "virus" followed by ".exe" anywhere their name | bad_virus.exe |
Extension Only | false | \verbatim zip \endverbatim | Will match .zip files | myArchive.zip |
Extension Only | false | \verbatim zip,rar,7z \endverbatim | Will match .zip, .rar, and .7z files | anotherArchive.rar |
Extension Only | true | \verbatim jp \endverbatim | Will match .jpg, .jpeg files, and any others with "jp" in the extension | myImage.jpg |
Regex | Text | Description | Sample match |
---|---|---|---|
false | \verbatim Documents \endverbatim | Match any file that has a folder named "Documents" in its path | /folder1/Documents/fileA.doc |
true | \verbatim bomb \endverbatim | Match any file with "bomb" in the path | /folder1/bomb making/file2.doc |
true | \verbatim Users/.*/Downloads \endverbatim | Match any file with "Users" and "Downloads" in the path | C:/Users/user1/Downloads/myFile.txt |