Autopsy  4.19.3
Graphical digital forensics platform for The Sleuth Kit and other tools.
EncryptionProgramsRule.java
Go to the documentation of this file.
1 /*
2  * Autopsy
3  *
4  * Copyright 2019 Basis Technology Corp.
5  * Contact: carrier <at> sleuthkit <dot> org
6  *
7  * Licensed under the Apache License, Version 2.0 (the "License");
8  * you may not use this file except in compliance with the License.
9  * You may obtain a copy of the License at
10  *
11  * http://www.apache.org/licenses/LICENSE-2.0
12  *
13  * Unless required by applicable law or agreed to in writing, software
14  * distributed under the License is distributed on an "AS IS" BASIS,
15  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16  * See the License for the specific language governing permissions and
17  * limitations under the License.
18  */
19 package org.sleuthkit.autopsy.logicalimager.configuration;
20 
21 import java.util.ArrayList;
22 import java.util.List;
23 import org.openide.util.NbBundle;
24 
28 @NbBundle.Messages({
29  "EncryptionProgramsRule.encryptionProgramsRuleName=Encryption Programs",
30  "EncryptionProgramsRule.encryptionProgramsRuleDescription=Find encryption programs"
31 })
32 final class EncryptionProgramsRule {
33 
34  private static final String ENCRYPTION_PROGRAMS_RULE_NAME = Bundle.EncryptionProgramsRule_encryptionProgramsRuleName();
35  private static final String ENCRYPTION_PROGRAMS_RULE_DESCRIPTION = Bundle.EncryptionProgramsRule_encryptionProgramsRuleDescription();
36  private static final List<String> FILENAMES = new ArrayList<>();
37 
38  private EncryptionProgramsRule() {
39  //private no arg constructor intentionally blank
40  }
41 
42  static {
43  // Truecrypt
44  FILENAMES.add("truecrypt.exe"); // NON-NLS
45 
46  // AxCrypt
47  FILENAMES.add("AxCrypt.exe"); // NON-NLS
48 
49  // VeraCrypt
50  FILENAMES.add("VeraCrypt.exe"); // NON-NLS
51  FILENAMES.add("VeraCrypt Format.exe"); // NON-NLS
52  FILENAMES.add("VeraCrypt Setup.exe"); // NON-NLS
53  FILENAMES.add("VeraCryptExpander.exe"); // NON-NLS
54 
55  // GnuPG
56  FILENAMES.add("gpg-agent.exe"); // NON-NLS
57  FILENAMES.add("gpg-connect-agent.exe"); // NON-NLS
58  FILENAMES.add("gpg-preset-passphrase.exe"); // NON-NLS
59  FILENAMES.add("gpg-wks-client.exe"); // NON-NLS
60  FILENAMES.add("gpg.exe"); // NON-NLS
61  FILENAMES.add("gpgconf.exe"); // NON-NLS
62  FILENAMES.add("gpgme-w32spawn.exe"); // NON-NLS
63  FILENAMES.add("gpgsm.exe"); // NON-NLS
64  FILENAMES.add("gpgtar.exe"); // NON-NLS
65  FILENAMES.add("gpgv.exe"); // NON-NLS
66 
67  // Symantec Encryption Desktop aka PGP
68  FILENAMES.add("PGP Viewer.exe"); // NON-NLS
69  FILENAMES.add("PGPcbt64.exe"); // NON-NLS
70  FILENAMES.add("PGPdesk.exe"); // NON-NLS
71  FILENAMES.add("PGPfsd.exe"); // NON-NLS
72  FILENAMES.add("PGPmnApp.exe"); // NON-NLS
73  FILENAMES.add("pgpnetshare.exe"); // NON-NLS
74  FILENAMES.add("pgpp.exe"); // NON-NLS
75  FILENAMES.add("PGPpdCreate.exe"); // NON-NLS
76  FILENAMES.add("pgppe.exe"); // NON-NLS
77  FILENAMES.add("pgpstart.exe"); // NON-NLS
78  FILENAMES.add("PGPtray.exe"); // NON-NLS
79  FILENAMES.add("PGPwde.exe"); // NON-NLS
80  FILENAMES.add("PGP Portable.exe"); // NON-NLS
81 
82  }
83 
84  static String getName() {
85  return ENCRYPTION_PROGRAMS_RULE_NAME;
86  }
87 
88  static String getDescription() {
89  return ENCRYPTION_PROGRAMS_RULE_DESCRIPTION;
90  }
91 
92  static List<String> getFilenames() {
93  return FILENAMES;
94  }
95 }

Copyright © 2012-2022 Basis Technology. Generated on: Tue Jun 27 2023
This work is licensed under a Creative Commons Attribution-Share Alike 3.0 United States License.