Autopsy  4.19.0
Graphical digital forensics platform for The Sleuth Kit and other tools.
Public Member Functions | Static Public Member Functions | Private Member Functions | Static Private Attributes | List of all members
org.sleuthkit.autopsy.report.modules.caseuco.CaseUcoReportModule Class Reference

Inherits org.sleuthkit.autopsy.report.GeneralReportModule.

Public Member Functions

default void generateReport (String baseReportDir, ReportProgressPanel progressPanel)
 
void generateReport (GeneralReportSettings settings, ReportProgressPanel progressPanel)
 
default ReportModuleSettings getConfiguration ()
 
JPanel getConfigurationPanel ()
 
default ReportModuleSettings getDefaultConfiguration ()
 
String getDescription ()
 
String getName ()
 
String getRelativeFilePath ()
 
default void setConfiguration (ReportModuleSettings settings)
 
boolean supportsDataSourceSelection ()
 

Static Public Member Functions

static synchronized CaseUcoReportModule getDefault ()
 
static String getReportFileName ()
 

Private Member Functions

 CaseUcoReportModule ()
 
List< DataSource > getSelectedDataSources (Case currentCase, GeneralReportSettings settings) throws TskCoreException
 
void performDepthFirstSearch (DataSource dataSource, Gson gson, CaseUcoExporter exporter, JsonWriter reportWriter) throws IOException, TskCoreException
 
void warnIngest (ReportProgressPanel progressPanel)
 

Static Private Attributes

static final String EXTENSION = "jsonld"
 
static final Logger logger = Logger.getLogger(CaseUcoReportModule.class.getName())
 
static final String REPORT_FILE_NAME = "CASE_UCO_output"
 
static final CaseUcoReportModule SINGLE_INSTANCE = new CaseUcoReportModule()
 
static final Set< Short > SUPPORTED_TYPES
 

Detailed Description

Exports an Autopsy case to a CASE-UCO report file. This module will write all files and artifacts from the selected data sources.

Definition at line 65 of file CaseUcoReportModule.java.

Constructor & Destructor Documentation

org.sleuthkit.autopsy.report.modules.caseuco.CaseUcoReportModule.CaseUcoReportModule ( )
private

Definition at line 83 of file CaseUcoReportModule.java.

Member Function Documentation

default void org.sleuthkit.autopsy.report.GeneralReportModule.generateReport ( String  baseReportDir,
ReportProgressPanel  progressPanel 
)
inherited

Called to generate the report. Method is responsible for saving the file at the path specified and updating progress via the progressPanel object.

Parameters
baseReportDirBase directory that reports are being stored in. Report should go into baseReportDir + getRelativeFilePath().
progressPanelpanel to update the report's progress with
Deprecated:
Use generateReport(GeneralReportSettings settings, ReportProgressPanel progressPanel) instead. The baseReportDir is stored in the settings instance.

Implemented in org.sleuthkit.autopsy.report.GeneralReportModuleAdapter.

Definition at line 36 of file GeneralReportModule.java.

Referenced by org.sleuthkit.autopsy.report.GeneralReportModule.generateReport().

void org.sleuthkit.autopsy.report.modules.caseuco.CaseUcoReportModule.generateReport ( GeneralReportSettings  settings,
ReportProgressPanel  progressPanel 
)
default ReportModuleSettings org.sleuthkit.autopsy.report.ReportModule.getConfiguration ( )
inherited

Get current configuration for this report module.

Returns
Object which contains current report module settings.

Implemented in org.sleuthkit.autopsy.report.modules.stix.STIXReportModule, org.sleuthkit.autopsy.report.modules.html.HTMLReport, and org.sleuthkit.autopsy.report.modules.taggedhashes.SaveTaggedHashesToHashDb.

Definition at line 79 of file ReportModule.java.

JPanel org.sleuthkit.autopsy.report.modules.caseuco.CaseUcoReportModule.getConfigurationPanel ( )

Returns the configuration panel for the report, which is displayed in the report configuration step of the report wizard.

Returns
Configuration panel or null if the module does not need configuration.

Implements org.sleuthkit.autopsy.report.ReportModule.

Definition at line 97 of file CaseUcoReportModule.java.

static synchronized CaseUcoReportModule org.sleuthkit.autopsy.report.modules.caseuco.CaseUcoReportModule.getDefault ( )
static
default ReportModuleSettings org.sleuthkit.autopsy.report.ReportModule.getDefaultConfiguration ( )
inherited
String org.sleuthkit.autopsy.report.modules.caseuco.CaseUcoReportModule.getDescription ( )

Gets a one-line, user friendly description of the type of report this module generates.

Implements org.sleuthkit.autopsy.report.ReportModule.

Definition at line 107 of file CaseUcoReportModule.java.

String org.sleuthkit.autopsy.report.modules.caseuco.CaseUcoReportModule.getName ( )

Get the name of the report this module generates.

Implements org.sleuthkit.autopsy.report.ReportModule.

Definition at line 92 of file CaseUcoReportModule.java.

String org.sleuthkit.autopsy.report.modules.caseuco.CaseUcoReportModule.getRelativeFilePath ( )

Gets the relative path of the report file, if any, generated by this module. The path should be relative to the location that gets passed in to generateReport() (or similar).

Returns
Relative path to where report will be stored. Return an empty string if the location passed to generateReport() is the output location. Return null to indicate that there is no report file.

Implements org.sleuthkit.autopsy.report.ReportModule.

Definition at line 102 of file CaseUcoReportModule.java.

References org.sleuthkit.autopsy.report.modules.caseuco.CaseUcoReportModule.EXTENSION.

static String org.sleuthkit.autopsy.report.modules.caseuco.CaseUcoReportModule.getReportFileName ( )
static

Returns CASE-UCO report file name

Returns
the REPORT_FILE_NAME

Definition at line 116 of file CaseUcoReportModule.java.

References org.sleuthkit.autopsy.report.modules.caseuco.CaseUcoReportModule.REPORT_FILE_NAME.

List<DataSource> org.sleuthkit.autopsy.report.modules.caseuco.CaseUcoReportModule.getSelectedDataSources ( Case  currentCase,
GeneralReportSettings  settings 
) throws TskCoreException
private
void org.sleuthkit.autopsy.report.modules.caseuco.CaseUcoReportModule.performDepthFirstSearch ( DataSource  dataSource,
Gson  gson,
CaseUcoExporter  exporter,
JsonWriter  reportWriter 
) throws IOException, TskCoreException
private

Perform DFS on the data sources tree, which will search it in entirety.

Definition at line 287 of file CaseUcoReportModule.java.

Referenced by org.sleuthkit.autopsy.report.modules.caseuco.CaseUcoReportModule.generateReport().

default void org.sleuthkit.autopsy.report.ReportModule.setConfiguration ( ReportModuleSettings  settings)
inherited
boolean org.sleuthkit.autopsy.report.modules.caseuco.CaseUcoReportModule.supportsDataSourceSelection ( )

Determines if the module supports report generation on a subset of data sources in a case. Defaults to false. The data source selections are stored in the GeneralReportSettings instance.

Returns
True if the module can be configured to run on a subset of data sources.

Implements org.sleuthkit.autopsy.report.GeneralReportModule.

Definition at line 121 of file CaseUcoReportModule.java.

void org.sleuthkit.autopsy.report.modules.caseuco.CaseUcoReportModule.warnIngest ( ReportProgressPanel  progressPanel)
private

Member Data Documentation

final String org.sleuthkit.autopsy.report.modules.caseuco.CaseUcoReportModule.EXTENSION = "jsonld"
staticprivate
final Logger org.sleuthkit.autopsy.report.modules.caseuco.CaseUcoReportModule.logger = Logger.getLogger(CaseUcoReportModule.class.getName())
staticprivate

Definition at line 67 of file CaseUcoReportModule.java.

final String org.sleuthkit.autopsy.report.modules.caseuco.CaseUcoReportModule.REPORT_FILE_NAME = "CASE_UCO_output"
staticprivate
final CaseUcoReportModule org.sleuthkit.autopsy.report.modules.caseuco.CaseUcoReportModule.SINGLE_INSTANCE = new CaseUcoReportModule()
staticprivate
final Set<Short> org.sleuthkit.autopsy.report.modules.caseuco.CaseUcoReportModule.SUPPORTED_TYPES
staticprivate
Initial value:
= new HashSet<Short>() {
{
add(TskData.TSK_FS_META_TYPE_ENUM.TSK_FS_META_TYPE_UNDEF.getValue());
add(TskData.TSK_FS_META_TYPE_ENUM.TSK_FS_META_TYPE_REG.getValue());
add(TskData.TSK_FS_META_TYPE_ENUM.TSK_FS_META_TYPE_VIRT.getValue());
}
}

Definition at line 71 of file CaseUcoReportModule.java.


The documentation for this class was generated from the following file:

Copyright © 2012-2021 Basis Technology. Generated on: Fri Aug 6 2021
This work is licensed under a Creative Commons Attribution-Share Alike 3.0 United States License.