From c92833bb473a6f32bbecb5dbc0fd2a75e0bb5a8d Mon Sep 17 00:00:00 2001 From: adam-m Date: Mon, 2 Apr 2012 14:41:26 -0400 Subject: [PATCH] Renable string extraction on up to 1MB strings --- .../autopsy/keywordsearch/KeywordSearchIngestService.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/KeywordSearch/src/org/sleuthkit/autopsy/keywordsearch/KeywordSearchIngestService.java b/KeywordSearch/src/org/sleuthkit/autopsy/keywordsearch/KeywordSearchIngestService.java index da4e564c83..07a5d32ed2 100644 --- a/KeywordSearch/src/org/sleuthkit/autopsy/keywordsearch/KeywordSearchIngestService.java +++ b/KeywordSearch/src/org/sleuthkit/autopsy/keywordsearch/KeywordSearchIngestService.java @@ -58,7 +58,7 @@ public final class KeywordSearchIngestService implements IngestServiceFsContent public static final String MODULE_DESCRIPTION = "Performs file indexing and periodic search using keywords and regular expressions in lists."; private static KeywordSearchIngestService instance = null; private IngestManagerProxy managerProxy; - private static final long MAX_STRING_EXTRACT_SIZE = 1 * (1 << 10); // * (1 << 10); TODO increase + private static final long MAX_STRING_EXTRACT_SIZE = 1 * (1 << 10) * (1 << 10); private static final long MAX_INDEX_SIZE = 100 * (1 << 10) * (1 << 10); private Ingester ingester = null; private volatile boolean commitIndex = false; //whether to commit index next time