Autopsy
4.7.0
Graphical digital forensics platform for The Sleuth Kit and other tools.
|
Inherits JPanel, and org.sleuthkit.autopsy.corecomponentinterfaces.DataContentViewer.
Public Member Functions | |
DataContentViewerString () | |
DataContentViewer | createInstance () |
Component | getComponent () |
String | getTitle () |
String | getToolTip () |
int | isPreferred (Node node) |
boolean | isSupported (Node node) |
void | resetComponent () |
void | setNode (Node selectedNode) |
Private Member Functions | |
void | customizeComponents () |
void | goToPageTextFieldActionPerformed (java.awt.event.ActionEvent evt) |
void | initComponents () |
void | languageComboActionPerformed (java.awt.event.ActionEvent evt) |
void | maybeShowPopup (java.awt.event.MouseEvent evt) |
void | nextPageButtonActionPerformed (java.awt.event.ActionEvent evt) |
void | prevPageButtonActionPerformed (java.awt.event.ActionEvent evt) |
void | setComponentsVisibility (boolean isVisible) |
void | setDataView (Content dataSource, long offset) |
void | setDataView (StringContent dataSource) |
Private Attributes | |
javax.swing.JMenuItem | copyMenuItem |
javax.swing.JLabel | currentPageLabel |
final byte[] | data = new byte[(int) PAGE_LENGTH] |
Content | dataSource |
javax.swing.JLabel | goToPageLabel |
javax.swing.JTextField | goToPageTextField |
javax.swing.JPanel | jPanel2 |
javax.swing.JScrollPane | jScrollPane1 |
javax.swing.JScrollPane | jScrollPane2 |
javax.swing.JComboBox< SCRIPT > | languageCombo |
javax.swing.JLabel | languageLabel |
javax.swing.JButton | nextPageButton |
javax.swing.JLabel | ofLabel |
javax.swing.JTextPane | outputViewPane |
javax.swing.JLabel | pageLabel |
javax.swing.JLabel | pageLabel2 |
javax.swing.JButton | prevPageButton |
javax.swing.JPopupMenu | rightClickMenu |
javax.swing.JMenuItem | selectAllMenuItem |
final StringExtract | stringExtract = new StringExtract() |
javax.swing.JLabel | totalPageLabel |
Static Private Attributes | |
static long | currentOffset = 0 |
static int | currentPage = 1 |
static final Logger | logger = Logger.getLogger(DataContentViewerString.class.getName()) |
static final long | PAGE_LENGTH = 16384 |
Viewer displays strings extracted from contents.
Definition at line 46 of file DataContentViewerString.java.
org.sleuthkit.autopsy.corecomponents.DataContentViewerString.DataContentViewerString | ( | ) |
Creates new form DataContentViewerString
Definition at line 60 of file DataContentViewerString.java.
DataContentViewer org.sleuthkit.autopsy.corecomponents.DataContentViewerString.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 478 of file DataContentViewerString.java.
|
private |
Definition at line 67 of file DataContentViewerString.java.
References org.sleuthkit.autopsy.coreutils.StringExtract.getSupportedScripts().
Component org.sleuthkit.autopsy.corecomponents.DataContentViewerString.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 511 of file DataContentViewerString.java.
String org.sleuthkit.autopsy.corecomponents.DataContentViewerString.getTitle | ( | ) |
Returns the title of this viewer to display in the tab.
Implements org.sleuthkit.autopsy.corecomponentinterfaces.DataContentViewer.
Definition at line 468 of file DataContentViewerString.java.
String org.sleuthkit.autopsy.corecomponents.DataContentViewerString.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 473 of file DataContentViewerString.java.
|
private |
Definition at line 280 of file DataContentViewerString.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 97 of file DataContentViewerString.java.
int org.sleuthkit.autopsy.corecomponents.DataContentViewerString.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 506 of file DataContentViewerString.java.
boolean org.sleuthkit.autopsy.corecomponents.DataContentViewerString.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 497 of file DataContentViewerString.java.
|
private |
Definition at line 305 of file DataContentViewerString.java.
|
private |
Definition at line 519 of file DataContentViewerString.java.
|
private |
Definition at line 272 of file DataContentViewerString.java.
|
private |
Definition at line 264 of file DataContentViewerString.java.
void org.sleuthkit.autopsy.corecomponents.DataContentViewerString.resetComponent | ( | ) |
Resets the contents of the viewer / component.
Implements org.sleuthkit.autopsy.corecomponentinterfaces.DataContentViewer.
Definition at line 483 of file DataContentViewerString.java.
|
private |
To set the visibility of specific components in this class.
isVisible | whether to show or hide the specific components |
Definition at line 432 of file DataContentViewerString.java.
|
private |
Sets the DataView (The tabbed panel)
dataSource | the content that want to be shown |
offset | the starting offset |
Definition at line 339 of file DataContentViewerString.java.
References org.sleuthkit.autopsy.coreutils.StringExtract.extract(), org.sleuthkit.autopsy.coreutils.StringExtract.StringExtractResult.getText(), and org.sleuthkit.autopsy.coreutils.StringExtract.setEnabledScript().
|
private |
Definition at line 403 of file DataContentViewerString.java.
References org.sleuthkit.autopsy.datamodel.StringContent.getString().
void org.sleuthkit.autopsy.corecomponents.DataContentViewerString.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 447 of file DataContentViewerString.java.
|
private |
Definition at line 313 of file DataContentViewerString.java.
|
staticprivate |
Definition at line 48 of file DataContentViewerString.java.
|
staticprivate |
Definition at line 51 of file DataContentViewerString.java.
|
private |
Definition at line 314 of file DataContentViewerString.java.
|
private |
Definition at line 50 of file DataContentViewerString.java.
|
private |
Definition at line 52 of file DataContentViewerString.java.
|
private |
Definition at line 315 of file DataContentViewerString.java.
|
private |
Definition at line 316 of file DataContentViewerString.java.
|
private |
Definition at line 317 of file DataContentViewerString.java.
|
private |
Definition at line 318 of file DataContentViewerString.java.
|
private |
Definition at line 319 of file DataContentViewerString.java.
|
private |
Definition at line 320 of file DataContentViewerString.java.
|
private |
Definition at line 321 of file DataContentViewerString.java.
|
staticprivate |
Definition at line 55 of file DataContentViewerString.java.
|
private |
Definition at line 322 of file DataContentViewerString.java.
|
private |
Definition at line 323 of file DataContentViewerString.java.
|
private |
Definition at line 324 of file DataContentViewerString.java.
|
staticprivate |
Definition at line 49 of file DataContentViewerString.java.
|
private |
Definition at line 325 of file DataContentViewerString.java.
|
private |
Definition at line 326 of file DataContentViewerString.java.
|
private |
Definition at line 327 of file DataContentViewerString.java.
|
private |
Definition at line 328 of file DataContentViewerString.java.
|
private |
Definition at line 329 of file DataContentViewerString.java.
|
private |
Definition at line 54 of file DataContentViewerString.java.
|
private |
Definition at line 330 of file DataContentViewerString.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.