mirror of
https://github.com/overcuriousity/autopsy-flatpak.git
synced 2025-07-11 23:46:15 +00:00
Merge pull request #3814 from dgrove727/3847_AlertPasswordProtected
3847 alert password protected
This commit is contained in:
commit
ae3d94fb38
@ -22,7 +22,7 @@ import java.io.Serializable;
|
||||
import java.util.ArrayList;
|
||||
import java.util.Collections;
|
||||
import java.util.Date;
|
||||
import java.util.HashMap;
|
||||
import java.util.LinkedHashMap;
|
||||
import java.util.List;
|
||||
import java.util.Map;
|
||||
import java.util.concurrent.CopyOnWriteArrayList;
|
||||
@ -224,8 +224,8 @@ public final class DataSourceIngestJob {
|
||||
/**
|
||||
* Make mappings of ingest module factory class names to templates.
|
||||
*/
|
||||
Map<String, IngestModuleTemplate> dataSourceModuleTemplates = new HashMap<>();
|
||||
Map<String, IngestModuleTemplate> fileModuleTemplates = new HashMap<>();
|
||||
Map<String, IngestModuleTemplate> dataSourceModuleTemplates = new LinkedHashMap<>();
|
||||
Map<String, IngestModuleTemplate> fileModuleTemplates = new LinkedHashMap<>();
|
||||
for (IngestModuleTemplate template : ingestModuleTemplates) {
|
||||
if (template.isDataSourceIngestModuleTemplate()) {
|
||||
dataSourceModuleTemplates.put(template.getModuleFactory().getClass().getCanonicalName(), template);
|
||||
|
@ -1,7 +1,7 @@
|
||||
/*
|
||||
* Autopsy Forensic Browser
|
||||
*
|
||||
* Copyright 2014 Basis Technology Corp.
|
||||
* Copyright 2014-2018 Basis Technology Corp.
|
||||
* Contact: carrier <at> sleuthkit <dot> org
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||
@ -38,6 +38,7 @@ import org.sleuthkit.autopsy.modules.hashdatabase.HashLookupModuleFactory;
|
||||
import org.sleuthkit.autopsy.modules.interestingitems.InterestingItemsIngestModuleFactory;
|
||||
import org.sleuthkit.autopsy.modules.photoreccarver.PhotoRecCarverIngestModuleFactory;
|
||||
import org.sleuthkit.autopsy.modules.embeddedfileextractor.EmbeddedFileExtractorModuleFactory;
|
||||
import org.sleuthkit.autopsy.modules.encryptiondetection.EncryptionDetectionModuleFactory;
|
||||
import org.sleuthkit.autopsy.python.JythonModuleLoader;
|
||||
|
||||
/**
|
||||
@ -60,6 +61,7 @@ final class IngestModuleFactoryLoader {
|
||||
add("org.sleuthkit.autopsy.thunderbirdparser.EmailParserModuleFactory"); //NON-NLS
|
||||
add(FileExtMismatchDetectorModuleFactory.class.getCanonicalName());
|
||||
add(E01VerifierModuleFactory.class.getCanonicalName());
|
||||
add(EncryptionDetectionModuleFactory.class.getCanonicalName());
|
||||
add(InterestingItemsIngestModuleFactory.class.getCanonicalName());
|
||||
add(PhotoRecCarverIngestModuleFactory.class.getCanonicalName());
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user