diff --git a/docs/doxygen-user_fr/interesting_files.dox b/docs/doxygen-user_fr/interesting_files.dox index 79d04ae86c..7ee3d0aa44 100644 --- a/docs/doxygen-user_fr/interesting_files.dox +++ b/docs/doxygen-user_fr/interesting_files.dox @@ -1,119 +1,118 @@ -/*! \page interesting_files_identifier_page Interesting Files Identifier Module +/*! \page interesting_files_identifier_page Interesting Files Identifier (Identifiant de fichiers intéressant) [TOC] -\section interesting_files_overview Overview +\section interesting_files_overview Aperçu -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. +Le module "Interesting Files Identifier" vous permet de marquer automatiquement les fichiers et répertoires qui correspondent à un ensemble de règles. Cela peut être utile si vous devez toujours vérifier si des fichiers avec un nom ou un chemin donné se trouvent dans une source de données, ou si vous êtes toujours intéressé par des fichiers ayant un 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. +Ce module vous permet de créer des ensembles de règles qui seront exécutées sur chaque fichiers au fur et à mesure de leur traitement. Si un fichier correspond à l'une des règles, vous verrez une entrée concernant celui-ci dans l'\ref tree_viewer_page. Vous pouvez partager vos règles avec d'autres utilisateurs et importer des ensembles créés par d'autres dans votre copie d'Autopsy. -\section interesting_files_terminology Terminology +\section interesting_files_terminology Terminologie
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 |
Type | Substring/Regex | Texte | Description | Exemple de correspondance |
Full Name | faux | \verbatim test.txt \endverbatim | Correspondra aux fichiers nommés "test.txt" | text.txt |
Full Name | vrai | \verbatim bomb \endverbatim | Associera les fichiers avec "bomb" à n'importe quel endroit de leur nom | Pipe_bomb.png |
Full Name | vrai | \verbatim virus.*\.exe \endverbatim | Correspondra aux fichiers avec "virus" suivi de ".exe" à n'importe quel endroit de leur nom | bad_virus.exe |
Extension Only | faux | \verbatim zip \endverbatim | Correspondra aux fichiers .zip | myArchive.zip |
Extension Only | faux | \verbatim zip,rar,7z \endverbatim | Correspondra aux fichiers .zip, .rar, et .7z files | anotherArchive.rar |
Extension Only | vrai | \verbatim jp \endverbatim | Correspondra aux fichiers .jpg, .jpeg, et tous les autres ayant "jp" dans l'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 |
Regex | Texte | Description | Exemple de correspondance |
faux | \verbatim Documents \endverbatim | Correspond à n'importe quel fichier qui a un dossier nommé "Documents" dans son chemin | /folder1/Documents/fileA.doc |
vrai | \verbatim bomb \endverbatim | Correspond à n'importe quel fichier qui a "bomb" dans son chemin | /folder1/bomb making/file2.doc |
vrai | \verbatim Users/.*/Downloads \endverbatim | Correspond à n'importe quel fichier qui a "Users" et "Downloads" dans son chemin | C:/Users/user1/Downloads/myFile.txt |