Autopsy
4.7.0
Graphical digital forensics platform for The Sleuth Kit and other tools.
|
Inherits org.sleuthkit.autopsy.corecomponentinterfaces.DataContentViewer.
Classes | |
class | NextFindActionListener |
class | NextPageActionListener |
class | PrevFindActionListener |
class | PrevPageActionListener |
class | SourceChangeActionListener |
Public Member Functions | |
ExtractedContentViewer () | |
DataContentViewer | createInstance () |
synchronized Component | getComponent () |
String | getTitle () |
String | getToolTip () |
int | isPreferred (Node node) |
boolean | isSupported (Node node) |
void | resetComponent () |
void | setNode (Node selectedNode) |
void | setNode (final Node node) |
Private Member Functions | |
void | nextPage () |
void | previousPage () |
void | scrollToCurrentHit () |
void | setPanel (String contentName, List< IndexedText > sources) |
boolean | solrHasContent (Long objectId) |
Static Private Member Functions | |
static IndexedText | getAccountsText (Content content, Lookup nodeLookup) throws TskCoreException |
static IndexedText | getRawArtifactText (BlackboardArtifact artifact) throws TskCoreException, NoCurrentCaseException |
Private Attributes | |
volatile Node | currentNode = null |
IndexedText | currentSource = null |
ExtractedContentPanel | panel |
Static Private Attributes | |
static final Logger | logger = Logger.getLogger(ExtractedContentViewer.class.getName()) |
static final BlackboardAttribute.Type | TSK_ACCOUNT_TYPE = new BlackboardAttribute.Type(BlackboardAttribute.ATTRIBUTE_TYPE.TSK_ACCOUNT_TYPE) |
static final BlackboardAttribute.Type | TSK_ASSOCIATED_ARTIFACT_TYPE = new BlackboardAttribute.Type(TSK_ASSOCIATED_ARTIFACT) |
A content viewer that displays the indexed text associated with a file or an artifact, possibly marked up with HTML to highlight keyword hits.
Definition at line 54 of file ExtractedContentViewer.java.
org.sleuthkit.autopsy.keywordsearch.ExtractedContentViewer.ExtractedContentViewer | ( | ) |
Constructs a content viewer that displays the indexed text associated with a file or an artifact, possibly marked up with HTML to highlight keyword hits.
Definition at line 70 of file ExtractedContentViewer.java.
DataContentViewer org.sleuthkit.autopsy.keywordsearch.ExtractedContentViewer.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 268 of file ExtractedContentViewer.java.
|
staticprivate |
Definition at line 235 of file ExtractedContentViewer.java.
synchronized Component org.sleuthkit.autopsy.keywordsearch.ExtractedContentViewer.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 273 of file ExtractedContentViewer.java.
|
staticprivate |
Definition at line 210 of file ExtractedContentViewer.java.
References org.sleuthkit.autopsy.casemodule.Case.getCurrentCaseThrows(), and org.sleuthkit.autopsy.casemodule.Case.getSleuthkitCase().
String org.sleuthkit.autopsy.keywordsearch.ExtractedContentViewer.getTitle | ( | ) |
Returns the title of this viewer to display in the tab.
Implements org.sleuthkit.autopsy.corecomponentinterfaces.DataContentViewer.
Definition at line 258 of file ExtractedContentViewer.java.
String org.sleuthkit.autopsy.keywordsearch.ExtractedContentViewer.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 263 of file ExtractedContentViewer.java.
int org.sleuthkit.autopsy.keywordsearch.ExtractedContentViewer.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 374 of file ExtractedContentViewer.java.
boolean org.sleuthkit.autopsy.keywordsearch.ExtractedContentViewer.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 294 of file ExtractedContentViewer.java.
|
private |
Definition at line 523 of file ExtractedContentViewer.java.
References org.sleuthkit.autopsy.keywordsearch.ExtractedContentViewer.scrollToCurrentHit().
|
private |
Definition at line 556 of file ExtractedContentViewer.java.
References org.sleuthkit.autopsy.keywordsearch.ExtractedContentViewer.scrollToCurrentHit().
void org.sleuthkit.autopsy.keywordsearch.ExtractedContentViewer.resetComponent | ( | ) |
Resets the contents of the viewer / component.
Implements org.sleuthkit.autopsy.corecomponentinterfaces.DataContentViewer.
Definition at line 286 of file ExtractedContentViewer.java.
|
private |
Definition at line 248 of file ExtractedContentViewer.java.
Referenced by org.sleuthkit.autopsy.keywordsearch.ExtractedContentViewer.nextPage(), and org.sleuthkit.autopsy.keywordsearch.ExtractedContentViewer.previousPage().
|
inherited |
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.
Implemented in org.sleuthkit.autopsy.centralrepository.contentviewer.DataContentViewerOtherCases, org.sleuthkit.autopsy.corecomponents.DataContentViewerString, org.sleuthkit.autopsy.corecomponents.DataContentViewerHex, org.sleuthkit.autopsy.corecomponents.DataContentViewerArtifact, org.sleuthkit.autopsy.contentviewers.MessageContentViewer, org.sleuthkit.autopsy.contentviewers.Metadata, and org.sleuthkit.autopsy.contentviewers.FileViewer.
void org.sleuthkit.autopsy.keywordsearch.ExtractedContentViewer.setNode | ( | final Node | node | ) |
Sets the node displayed by the content viewer.
node | The node to display |
Pull the search results, file, artifact and report objects (if any) from the lookup.
Definition at line 79 of file ExtractedContentViewer.java.
|
private |
Set the MarkupSources for the panel to display (safe to call even if the panel hasn't been created yet)
contentName | The name of the content to be displayed |
sources | A list of IndexedText that have different 'views' of the content. |
Definition at line 405 of file ExtractedContentViewer.java.
|
private |
Check if Solr has extracted content for a given node
objectId |
Definition at line 418 of file ExtractedContentViewer.java.
References org.sleuthkit.autopsy.keywordsearch.KeywordSearch.getServer(), and org.sleuthkit.autopsy.keywordsearch.Server.queryIsIndexed().
|
private |
Definition at line 62 of file ExtractedContentViewer.java.
|
private |
Definition at line 63 of file ExtractedContentViewer.java.
|
staticprivate |
Definition at line 56 of file ExtractedContentViewer.java.
|
private |
Definition at line 61 of file ExtractedContentViewer.java.
|
staticprivate |
Definition at line 59 of file ExtractedContentViewer.java.
|
staticprivate |
Definition at line 58 of file ExtractedContentViewer.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.