Autopsy
4.7.0
Graphical digital forensics platform for The Sleuth Kit and other tools.
|
Inherits JPanel, and org.sleuthkit.autopsy.corecomponentinterfaces.DataContentViewer.
Classes | |
class | UniquePathKey |
Public Member Functions | |
DataContentViewerOtherCases () | |
DataContentViewer | createInstance () |
Component | getComponent () |
String | getTitle () |
String | getToolTip () |
int | isPreferred (Node node) |
boolean | isSupported (Node node) |
void | resetComponent () |
void | setNode (Node node) |
Private Member Functions | |
List< AbstractFile > | addCaseDbMatches (CorrelationAttribute corAttr, Case openCase) throws NoCurrentCaseException, TskCoreException, EamDbException |
void | addOrUpdateAttributeInstance (final Case autopsyCase, Map< UniquePathKey, CorrelationAttributeInstance > artifactInstances, AbstractFile newFile) throws TskCoreException, EamDbException |
void | clearMessageOnTableStatusPanel () |
void | customizeComponents () |
void | displayMessageOnTableStatusPanel (String message) |
AbstractFile | getAbstractFileFromNode (Node node) |
BlackboardArtifact | getBlackboardArtifactFromNode (Node node) |
Map< UniquePathKey, CorrelationAttributeInstance > | getCorrelatedInstances (CorrelationAttribute corAttr, String dataSourceName, String deviceId) |
Collection< CorrelationAttribute > | getCorrelationAttributesFromNode (Node node) |
void | initComponents () |
void | populateTable (Node node) |
void | reset () |
void | rightClickPopupMenuPopupMenuWillBecomeVisible (javax.swing.event.PopupMenuEvent evt) |
void | saveToCSV () throws NoCurrentCaseException |
void | setColumnWidths () |
void | showCaseDetails (int selectedRowViewIdx) |
void | showCommonalityDetails () |
void | writeSelectedRowsToFileAsCSV (File destFile) |
Private Attributes | |
javax.swing.JMenuItem | addCommentMenuItem |
final Collection< CorrelationAttribute > | correlationAttributes |
javax.swing.JFileChooser | CSVFileChooser |
javax.swing.JMenuItem | exportToCSVMenuItem |
AbstractFile | file |
javax.swing.JPanel | otherCasesPanel |
javax.swing.JTable | otherCasesTable |
javax.swing.JPopupMenu | rightClickPopupMenu |
javax.swing.JMenuItem | selectAllMenuItem |
javax.swing.JMenuItem | showCaseDetailsMenuItem |
javax.swing.JMenuItem | showCommonalityMenuItem |
javax.swing.JPanel | tableContainerPanel |
final DataContentViewerOtherCasesTableModel | tableModel |
javax.swing.JScrollPane | tableScrollPane |
javax.swing.JPanel | tableStatusPanel |
javax.swing.JLabel | tableStatusPanelLabel |
Static Private Attributes | |
static final Logger | logger = Logger.getLogger(DataContentViewerOtherCases.class.getName()) |
View correlation results from other cases
Definition at line 81 of file DataContentViewerOtherCases.java.
org.sleuthkit.autopsy.centralrepository.contentviewer.DataContentViewerOtherCases.DataContentViewerOtherCases | ( | ) |
Creates new form DataContentViewerOtherCases
Definition at line 95 of file DataContentViewerOtherCases.java.
|
private |
Definition at line 507 of file DataContentViewerOtherCases.java.
|
private |
Adds the file to the artifactInstances map if it does not already exist
autopsyCase | |
artifactInstances | |
newFile |
TskCoreException | |
EamDbException |
Definition at line 534 of file DataContentViewerOtherCases.java.
References org.sleuthkit.autopsy.centralrepository.datamodel.CorrelationDataSource.fromTSKDataSource(), and org.sleuthkit.autopsy.centralrepository.datamodel.CorrelationAttributeInstance.setKnownStatus().
|
private |
Definition at line 680 of file DataContentViewerOtherCases.java.
DataContentViewer org.sleuthkit.autopsy.centralrepository.contentviewer.DataContentViewerOtherCases.createInstance | ( | ) |
Create and return a new instance of your viewer. The reason that this is needed is because the specific viewer modules will be found via NetBeans Lookup and the type will only be DataContentViewer. This method is used to get an instance of your specific type.
Implements org.sleuthkit.autopsy.corecomponentinterfaces.DataContentViewer.
Definition at line 323 of file DataContentViewerOtherCases.java.
|
private |
Definition at line 104 of file DataContentViewerOtherCases.java.
References org.sleuthkit.autopsy.centralrepository.AddEditCentralRepoCommentAction.addEditCentralRepoComment(), org.sleuthkit.autopsy.centralrepository.AddEditCentralRepoCommentAction.createAddEditCommentAction(), and org.sleuthkit.autopsy.centralrepository.contentviewer.DataContentViewerOtherCasesTableModel.getRow().
|
private |
Definition at line 675 of file DataContentViewerOtherCases.java.
|
private |
Get the associated AbstractFile from a node, if it exists.
node | The node |
Definition at line 369 of file DataContentViewerOtherCases.java.
|
private |
Get the associated BlackboardArtifact from a node, if it exists.
node | The node |
Definition at line 349 of file DataContentViewerOtherCases.java.
Component org.sleuthkit.autopsy.centralrepository.contentviewer.DataContentViewerOtherCases.getComponent | ( | ) |
Return the Swing Component to display. Implementations of this method that extend JPanel and do a 'return this;'. Otherwise return an internal instance of the JPanel.
Implements org.sleuthkit.autopsy.corecomponentinterfaces.DataContentViewer.
Definition at line 328 of file DataContentViewerOtherCases.java.
|
private |
Query the database for artifact instances from other cases correlated to the given central repository artifact. Instances from the same datasource / device will also be included.
corAttr | CorrelationAttribute to query for |
dataSourceName | Data source to filter results |
deviceId | Device Id to filter results |
Definition at line 467 of file DataContentViewerOtherCases.java.
References org.sleuthkit.autopsy.centralrepository.datamodel.EamDb.getArtifactInstancesByTypeValue(), org.sleuthkit.autopsy.centralrepository.datamodel.CorrelationAttribute.getCorrelationType(), org.sleuthkit.autopsy.centralrepository.datamodel.CorrelationAttribute.getCorrelationValue(), org.sleuthkit.autopsy.casemodule.Case.getCurrentCase(), org.sleuthkit.autopsy.centralrepository.datamodel.CorrelationAttribute.Type.getDisplayName(), org.sleuthkit.autopsy.centralrepository.datamodel.EamDb.getInstance(), org.sleuthkit.autopsy.casemodule.Case.getName(), and org.sleuthkit.autopsy.centralrepository.datamodel.EamDb.isEnabled().
|
private |
Determine what attributes can be used for correlation based on the node. If EamDB is not enabled, get the default Files correlation.
node | The node to correlate |
Definition at line 412 of file DataContentViewerOtherCases.java.
References org.sleuthkit.autopsy.centralrepository.datamodel.CorrelationAttribute.FILES_TYPE_ID, org.sleuthkit.autopsy.centralrepository.datamodel.EamArtifactUtil.getCorrelationAttributeFromBlackboardArtifact(), org.sleuthkit.autopsy.centralrepository.datamodel.CorrelationAttribute.getDefaultCorrelationTypes(), org.sleuthkit.autopsy.centralrepository.datamodel.EamDb.getDefinedCorrelationTypes(), org.sleuthkit.autopsy.centralrepository.datamodel.EamDb.getInstance(), and org.sleuthkit.autopsy.centralrepository.datamodel.EamDb.isEnabled().
String org.sleuthkit.autopsy.centralrepository.contentviewer.DataContentViewerOtherCases.getTitle | ( | ) |
Returns the title of this viewer to display in the tab.
Implements org.sleuthkit.autopsy.corecomponentinterfaces.DataContentViewer.
Definition at line 313 of file DataContentViewerOtherCases.java.
String org.sleuthkit.autopsy.centralrepository.contentviewer.DataContentViewerOtherCases.getToolTip | ( | ) |
Returns a short description of this viewer to use as a tool tip for its tab.
Implements org.sleuthkit.autopsy.corecomponentinterfaces.DataContentViewer.
Definition at line 318 of file DataContentViewerOtherCases.java.
|
private |
This method is called from within the constructor to initialize the form. WARNING: Do NOT modify this code. The content of this method is always regenerated by the Form Editor.
Definition at line 691 of file DataContentViewerOtherCases.java.
int org.sleuthkit.autopsy.centralrepository.contentviewer.DataContentViewerOtherCases.isPreferred | ( | Node | node | ) |
Checks whether the given viewer is preferred for the Node. This is a bit subjective, but the idea is that Autopsy wants to display the most relevant tab. The more generic the viewer, the lower the return value should be. This will only be called on viewers that support the given node (i.e., isSupported() has already returned true).
The following are some examples of the current levels in use. If the selected node is an artifact, the level may be determined by both the artifact and its associated file.
Level 7 - Based on the artifact, if any, in the selected node and specific to an artifact type or types. Current content viewers that can return level 7 are the Messages tab (only supported for email and SMS) and the Indexed Text tab when the selected node is a Keyword Search hit.
Level 6 - Based on the artifact, if any, in the selected node but not restricted to particular types. The current content viewer that can return level 6 is the Results tab. It returns this level for most artifact types, unless the associated file is assumed to be of greater interest (for example, a Hash Set Hit will not be level 6 because the file itself is of greater interest).
Level 5 - Based on the file in the selected node and very specific to the file type. The current content viewer that will return level 5 is the Application tab, which supports media files (such as images) and certain types of databases.
Level 4 - Based on the file in the selected node but fairly general. Currently this is the level returned by the Indexed Text tab if Keyword Search has been run (unless the node is a Keyword Search hit or a Credit Card account). This is the default tab for most files.
Level 3 - Based on the artifact, if any, in the selected node where the artifact is thought to be of less interest than the associated file. This level is returned by the Results tab for artifacts like Hash Set Hits.
Level 1 - Very general and should always be available. The Hex, Strings, and Metadata tabs are all this level
Level 0 - For cases where the content viewer should never be displayed by default.
node | Node to check for preference |
Implements org.sleuthkit.autopsy.corecomponentinterfaces.DataContentViewer.
Definition at line 338 of file DataContentViewerOtherCases.java.
boolean org.sleuthkit.autopsy.centralrepository.contentviewer.DataContentViewerOtherCases.isSupported | ( | Node | node | ) |
Checks whether the given node is supported by the viewer. This will be used to enable or disable the tab for the viewer.
node | Node to check for support |
Implements org.sleuthkit.autopsy.corecomponentinterfaces.DataContentViewer.
Definition at line 581 of file DataContentViewerOtherCases.java.
References org.sleuthkit.autopsy.centralrepository.datamodel.EamDb.isEnabled().
|
private |
Load the correlatable data into the table model. If there is no data available display the message on the status panel.
node | The node being viewed. |
Definition at line 618 of file DataContentViewerOtherCases.java.
References org.sleuthkit.autopsy.centralrepository.contentviewer.DataContentViewerOtherCasesTableModel.addEamArtifact(), org.sleuthkit.autopsy.centralrepository.datamodel.CorrelationAttribute.addInstance(), org.sleuthkit.autopsy.casemodule.Case.getCurrentCaseThrows(), org.sleuthkit.autopsy.centralrepository.contentviewer.DataContentViewerOtherCasesTableModel.getRowCount(), and org.sleuthkit.autopsy.casemodule.Case.getSleuthkitCase().
|
private |
Reset the UI and clear cached data.
Definition at line 306 of file DataContentViewerOtherCases.java.
References org.sleuthkit.autopsy.centralrepository.contentviewer.DataContentViewerOtherCasesTableModel.clearTable().
void org.sleuthkit.autopsy.centralrepository.contentviewer.DataContentViewerOtherCases.resetComponent | ( | ) |
Resets the contents of the viewer / component.
Implements org.sleuthkit.autopsy.corecomponentinterfaces.DataContentViewer.
Definition at line 333 of file DataContentViewerOtherCases.java.
|
private |
Definition at line 818 of file DataContentViewerOtherCases.java.
References org.sleuthkit.autopsy.centralrepository.datamodel.CorrelationAttribute.FILES_TYPE_ID, org.sleuthkit.autopsy.centralrepository.datamodel.CorrelationAttribute.getCorrelationType(), org.sleuthkit.autopsy.centralrepository.datamodel.CorrelationAttribute.Type.getId(), org.sleuthkit.autopsy.centralrepository.datamodel.CorrelationAttribute.getInstances(), org.sleuthkit.autopsy.centralrepository.contentviewer.DataContentViewerOtherCasesTableModel.getRow(), and org.sleuthkit.autopsy.centralrepository.datamodel.EamDbUtil.useCentralRepo().
|
private |
Definition at line 244 of file DataContentViewerOtherCases.java.
References org.sleuthkit.autopsy.casemodule.Case.getCurrentCaseThrows(), and org.sleuthkit.autopsy.casemodule.Case.getExportDirectory().
|
private |
Definition at line 665 of file DataContentViewerOtherCases.java.
References org.sleuthkit.autopsy.centralrepository.contentviewer.DataContentViewerOtherCasesTableModel.getColumnCount(), and org.sleuthkit.autopsy.centralrepository.contentviewer.DataContentViewerOtherCasesTableModel.getColumnPreferredWidth().
void org.sleuthkit.autopsy.centralrepository.contentviewer.DataContentViewerOtherCases.setNode | ( | Node | selectedNode | ) |
Autopsy will call this when this panel is focused with the file that should be analyzed. When called with null, must clear all references to previous nodes.
Implements org.sleuthkit.autopsy.corecomponentinterfaces.DataContentViewer.
Definition at line 599 of file DataContentViewerOtherCases.java.
|
private |
Definition at line 189 of file DataContentViewerOtherCases.java.
References org.sleuthkit.autopsy.centralrepository.datamodel.EamDb.getCase(), org.sleuthkit.autopsy.centralrepository.datamodel.CorrelationCase.getCaseDetailsOptionsPaneDialog(), org.sleuthkit.autopsy.casemodule.Case.getCurrentCaseThrows(), org.sleuthkit.autopsy.centralrepository.datamodel.CorrelationCase.getDisplayName(), org.sleuthkit.autopsy.centralrepository.datamodel.EamDb.getInstance(), org.sleuthkit.autopsy.centralrepository.datamodel.CorrelationAttribute.getInstances(), and org.sleuthkit.autopsy.centralrepository.contentviewer.DataContentViewerOtherCasesTableModel.getRow().
|
private |
Show how common the selected correlationAttributes are with details dialog.
Definition at line 153 of file DataContentViewerOtherCases.java.
References org.sleuthkit.autopsy.centralrepository.datamodel.EamDb.getFrequencyPercentage(), and org.sleuthkit.autopsy.centralrepository.datamodel.EamDb.getInstance().
|
private |
Definition at line 265 of file DataContentViewerOtherCases.java.
References org.sleuthkit.autopsy.centralrepository.contentviewer.DataContentViewerOtherCasesTableModel.getColumnCount(), org.sleuthkit.autopsy.centralrepository.contentviewer.DataContentViewerOtherCasesTableModel.getColumnName(), and org.sleuthkit.autopsy.centralrepository.contentviewer.DataContentViewerOtherCasesTableModel.getValueAt().
|
private |
Definition at line 835 of file DataContentViewerOtherCases.java.
|
private |
Definition at line 86 of file DataContentViewerOtherCases.java.
|
private |
Definition at line 834 of file DataContentViewerOtherCases.java.
|
private |
Definition at line 836 of file DataContentViewerOtherCases.java.
|
private |
Could be null.
Definition at line 90 of file DataContentViewerOtherCases.java.
|
staticprivate |
Definition at line 83 of file DataContentViewerOtherCases.java.
|
private |
Definition at line 837 of file DataContentViewerOtherCases.java.
|
private |
Definition at line 838 of file DataContentViewerOtherCases.java.
|
private |
Definition at line 839 of file DataContentViewerOtherCases.java.
|
private |
Definition at line 840 of file DataContentViewerOtherCases.java.
|
private |
Definition at line 841 of file DataContentViewerOtherCases.java.
|
private |
Definition at line 842 of file DataContentViewerOtherCases.java.
|
private |
Definition at line 843 of file DataContentViewerOtherCases.java.
|
private |
Definition at line 85 of file DataContentViewerOtherCases.java.
|
private |
Definition at line 844 of file DataContentViewerOtherCases.java.
|
private |
Definition at line 845 of file DataContentViewerOtherCases.java.
|
private |
Definition at line 846 of file DataContentViewerOtherCases.java.
Copyright © 2012-2016 Basis Technology. Generated on: Mon Jun 18 2018
This work is licensed under a
Creative Commons Attribution-Share Alike 3.0 United States License.