Autopsy  4.20.0
Graphical digital forensics platform for The Sleuth Kit and other tools.
MalwareScanIngestModuleFactory.java
Go to the documentation of this file.
1 /*
2  * Autopsy Forensic Browser
3  *
4  * Copyright 2023 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 com.basistech.df.cybertriage.autopsy.malwarescan;
20 
22 import org.openide.util.NbBundle.Messages;
23 import org.openide.util.lookup.ServiceProvider;
28 
32 @ServiceProvider(service = org.sleuthkit.autopsy.ingest.IngestModuleFactory.class)
33 @Messages({
34  "MalwareScanIngestModuleFactory_displayName=Cyber Triage Malware Scanner",
35  "MalwareScanIngestModuleFactory_description=The malware scan ingest module queries the Cyber Triage cloud API for any possible malicious executables.",
36  "MalwareScanIngestModuleFactory_version=1.0.0"
37 })
39 
43  public static String getDisplayName() {
44  return Bundle.MalwareScanIngestModuleFactory_displayName();
45  }
46 
47  @Override
48  public String getModuleDisplayName() {
50  }
51 
52  @Override
53  public String getModuleDescription() {
54  return Bundle.MalwareScanIngestModuleFactory_description();
55  }
56 
57  @Override
58  public String getModuleVersionNumber() {
59  return Bundle.MalwareScanIngestModuleFactory_version();
60  }
61 
62  @Override
63  public boolean isFileIngestModuleFactory() {
64  return true;
65  }
66 
67  @Override
69  return new MalwareScanIngestModule();
70  }
71 
72  @Override
73  public boolean hasGlobalSettingsPanel() {
74  return true;
75  }
76 
77  @Override
79  CTOptionsPanel optionsPanel = new CTOptionsPanel();
80  optionsPanel.loadSavedSettings();
81  return optionsPanel;
82  }
83 
84 }
FileIngestModule createFileIngestModule(IngestModuleIngestJobSettings ingestOptions)

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