Autopsy  4.14.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

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

Static Public Member Functions

static synchronized CaseUcoReportModule getDefault ()
 
static String getReportFileName ()
 

Private Member Functions

 CaseUcoReportModule ()
 
void performDepthFirstSearch (Content dataSource, CaseUcoReportGenerator generator) throws IOException, TskCoreException
 
void warnIngest (ReportProgressPanel progressPanel)
 

Static Private Attributes

static final String EXTENSION = "json-ld"
 
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

CaseUcoReportModule generates a report in CASE-UCO format. This module will write all files and data sources to the report.

Definition at line 49 of file CaseUcoReportModule.java.

Constructor & Destructor Documentation

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

Definition at line 65 of file CaseUcoReportModule.java.

Member Function Documentation

void org.sleuthkit.autopsy.report.modules.caseuco.CaseUcoReportModule.generateReport ( String  baseReportDir,
ReportProgressPanel  progressPanel 
)

Generates a CASE-UCO format report for all files in the Case.

Parameters
baseReportDircaseDirPath to save the report
progressPanelpanel to update the report's progress

Implements org.sleuthkit.autopsy.report.GeneralReportModule.

Definition at line 121 of file CaseUcoReportModule.java.

References org.sleuthkit.autopsy.report.modules.caseuco.CaseUcoReportGenerator.addCase(), org.sleuthkit.autopsy.report.modules.caseuco.CaseUcoReportGenerator.addDataSource(), org.sleuthkit.autopsy.casemodule.Case.addReport(), org.sleuthkit.autopsy.report.ReportProgressPanel.ReportStatus.COMPLETE, org.sleuthkit.autopsy.report.ReportProgressPanel.complete(), org.sleuthkit.autopsy.report.ReportProgressPanel.ReportStatus.ERROR, org.sleuthkit.autopsy.report.modules.caseuco.CaseUcoReportGenerator.generateReport(), org.sleuthkit.autopsy.casemodule.Case.getCurrentCaseThrows(), org.sleuthkit.autopsy.casemodule.Case.getDataSources(), org.sleuthkit.autopsy.report.modules.caseuco.CaseUcoReportModule.performDepthFirstSearch(), org.sleuthkit.autopsy.report.modules.caseuco.CaseUcoReportModule.REPORT_FILE_NAME, org.sleuthkit.autopsy.report.ReportProgressPanel.setIndeterminate(), org.sleuthkit.autopsy.report.ReportProgressPanel.setMaximumProgress(), org.sleuthkit.autopsy.report.ReportProgressPanel.setProgress(), org.sleuthkit.autopsy.report.ReportProgressPanel.start(), org.sleuthkit.autopsy.report.ReportProgressPanel.updateStatusLabel(), and org.sleuthkit.autopsy.report.modules.caseuco.CaseUcoReportModule.warnIngest().

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 79 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 89 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 74 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 84 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 98 of file CaseUcoReportModule.java.

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

void org.sleuthkit.autopsy.report.modules.caseuco.CaseUcoReportModule.performDepthFirstSearch ( Content  dataSource,
CaseUcoReportGenerator  generator 
) throws IOException, TskCoreException
private

Perform DFS on the data sources tree, which will search it in entirety. This traversal is more memory efficient than BFS (Breadth first search).

Definition at line 197 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
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 = "json-ld"
staticprivate
final Logger org.sleuthkit.autopsy.report.modules.caseuco.CaseUcoReportModule.logger = Logger.getLogger(CaseUcoReportModule.class.getName())
staticprivate

Definition at line 51 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 55 of file CaseUcoReportModule.java.


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

Copyright © 2012-2020 Basis Technology. Generated on: Wed Apr 8 2020
This work is licensed under a Creative Commons Attribution-Share Alike 3.0 United States License.