Autopsy
4.15.0
Graphical digital forensics platform for The Sleuth Kit and other tools.
|
Inherits JPanel, and org.sleuthkit.autopsy.corecomponentinterfaces.DataContentViewer.
Public Member Functions | |
Metadata () | |
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 | |
void | addAcquisitionDetails (StringBuilder sb, DataSource dataSource) |
void | addDownloadSourceRow (StringBuilder sb, BlackboardArtifact associatedArtifact) throws TskCoreException |
void | addRow (StringBuilder sb, String key, String value) |
void | customizeComponents () |
void | endTable (StringBuilder sb) |
void | initComponents () |
void | setText (String str) |
void | startTable (StringBuilder sb) |
Private Attributes | |
javax.swing.JPopupMenu | jPopupMenu1 |
javax.swing.JScrollPane | jScrollPane2 |
javax.swing.JTextPane | jTextPane1 |
Static Private Attributes | |
static final Logger | LOGGER = Logger.getLogger(Metadata.class.getName()) |
Shows file metadata as a list to make it easy to copy and paste. Typically shows the same data that can also be found in the ResultViewer table, just a different order and allows the full path to be visible in the bottom area.
Definition at line 50 of file Metadata.java.
org.sleuthkit.autopsy.contentviewers.Metadata.Metadata | ( | ) |
Creates new form Metadata
Definition at line 57 of file Metadata.java.
|
private |
Add the acquisition details to the results (if applicable)
sb | The output StringBuilder object |
dataSource | The data source (may be null) |
Definition at line 323 of file Metadata.java.
|
private |
Adds a row for download source from the given associated artifact, if the associated artifacts specifies a source.
sb | string builder. |
associatedArtifact |
TskCoreException | if there is an error |
Definition at line 306 of file Metadata.java.
|
private |
Definition at line 128 of file Metadata.java.
DataContentViewer org.sleuthkit.autopsy.contentviewers.Metadata.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 349 of file Metadata.java.
|
private |
Definition at line 102 of file Metadata.java.
References org.sleuthkit.autopsy.contentviewers.Utilities.configureTextPaneAsHtml().
|
private |
Definition at line 124 of file Metadata.java.
Component org.sleuthkit.autopsy.contentviewers.Metadata.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 354 of file Metadata.java.
String org.sleuthkit.autopsy.contentviewers.Metadata.getTitle | ( | ) |
Returns the title of this viewer to display in the tab.
Implements org.sleuthkit.autopsy.corecomponentinterfaces.DataContentViewer.
Definition at line 339 of file Metadata.java.
String org.sleuthkit.autopsy.contentviewers.Metadata.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 344 of file Metadata.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 69 of file Metadata.java.
int org.sleuthkit.autopsy.contentviewers.Metadata.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 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 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, Text, 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 371 of file Metadata.java.
boolean org.sleuthkit.autopsy.contentviewers.Metadata.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 364 of file Metadata.java.
void org.sleuthkit.autopsy.contentviewers.Metadata.resetComponent | ( | ) |
Resets the contents of the viewer / component.
Implements org.sleuthkit.autopsy.corecomponentinterfaces.DataContentViewer.
Definition at line 359 of file Metadata.java.
void org.sleuthkit.autopsy.contentviewers.Metadata.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.
selectedNode | the node which is used to determine what is displayed in this viewer |
Implements org.sleuthkit.autopsy.corecomponentinterfaces.DataContentViewer.
Definition at line 150 of file Metadata.java.
References org.sleuthkit.autopsy.datamodel.ContentUtils.getStringTime().
|
private |
Definition at line 116 of file Metadata.java.
|
private |
Definition at line 120 of file Metadata.java.
|
private |
Definition at line 97 of file Metadata.java.
|
private |
Definition at line 98 of file Metadata.java.
|
private |
Definition at line 99 of file Metadata.java.
|
staticprivate |
Definition at line 52 of file Metadata.java.
Copyright © 2012-2020 Basis Technology. Generated on: Mon Jul 6 2020
This work is licensed under a
Creative Commons Attribution-Share Alike 3.0 United States License.