diff --git a/Ingest/src/org/sleuthkit/autopsy/ingest/IngestMessageTopComponent.java b/Ingest/src/org/sleuthkit/autopsy/ingest/IngestMessageTopComponent.java index 192ecdcf6d..fb2a27ec84 100644 --- a/Ingest/src/org/sleuthkit/autopsy/ingest/IngestMessageTopComponent.java +++ b/Ingest/src/org/sleuthkit/autopsy/ingest/IngestMessageTopComponent.java @@ -75,6 +75,13 @@ public final class IngestMessageTopComponent extends TopComponent implements Ing return getDefault(); } + @Override + protected String preferredID() { + return PREFERRED_ID; + } + + + /** This method is called from within the constructor to * initialize the form. * WARNING: Do NOT modify this code. The content of this method is diff --git a/KeywordSearch/src/org/sleuthkit/autopsy/keywordsearch/ExtractedContentViewer.java b/KeywordSearch/src/org/sleuthkit/autopsy/keywordsearch/ExtractedContentViewer.java index 55164e390f..1080dcadb4 100644 --- a/KeywordSearch/src/org/sleuthkit/autopsy/keywordsearch/ExtractedContentViewer.java +++ b/KeywordSearch/src/org/sleuthkit/autopsy/keywordsearch/ExtractedContentViewer.java @@ -202,6 +202,9 @@ public class ExtractedContentViewer implements DataContentViewer { } catch (RuntimeException e) { logger.log(Level.INFO, "Could not get Solr Core", e); } + catch (Exception e) { + logger.log(Level.INFO, "Could not get Solr Core", e); + } if (solrCore == null) { return false; } diff --git a/KeywordSearch/src/org/sleuthkit/autopsy/keywordsearch/KeywordSearchListsXML.java b/KeywordSearch/src/org/sleuthkit/autopsy/keywordsearch/KeywordSearchListsXML.java index 4030d2c12e..81b12ae098 100644 --- a/KeywordSearch/src/org/sleuthkit/autopsy/keywordsearch/KeywordSearchListsXML.java +++ b/KeywordSearch/src/org/sleuthkit/autopsy/keywordsearch/KeywordSearchListsXML.java @@ -116,7 +116,7 @@ public class KeywordSearchListsXML { urls.add(new Keyword("http://|https://|^www\\.", false, BlackboardAttribute.ATTRIBUTE_TYPE.TSK_URL)); //urls.add(new Keyword("((((ht|f)tp(s?))\\://)|www\\.)[a-zA-Z0-9\\-\\.]+\\.([a-zA-Z]{2,5})(\\:[0-9]+)*(/($|[a-zA-Z0-9\\.\\,\\;\\?\\'\\\\+&%\\$#\\=~_\\-]+))*", false, BlackboardAttribute.ATTRIBUTE_TYPE.TSK_URL)); - urls.add(new Keyword("ssh://", false, BlackboardAttribute.ATTRIBUTE_TYPE.TSK_URL)); + //urls.add(new Keyword("ssh://", false, BlackboardAttribute.ATTRIBUTE_TYPE.TSK_URL)); addList("Phone Numbers", phones, true, true); addList("IP Addresses", ips, true, true); diff --git a/README.txt b/README.txt index d60b385dea..d3095b61a4 100644 --- a/README.txt +++ b/README.txt @@ -20,6 +20,10 @@ Autopsy requires the Java Runtime Environment (JRE) to be installed. A 32-bit ve You can download Java from here: http://java.com/en/download/index.jsp +Before running Autopsy, you will have to install GStreamer and add the GStreamer 'lib' folder to the PATH environment variable +GStreamer builds for Windows are available at http://code.google.com/p/ossbuild/downloads/list + + You should be able to simply open the Autopsy ZIP file and run the autopsy.exe program located in the 'bin' folder. @@ -29,6 +33,8 @@ The primary development of Autopsy 3 has been done at Basis Technology. The foll * Anthony Lawrence * James Antonius * Peter Martel +* Adam Malinowski +* Dick Fickling FEEDBACK