From f39ca5e573ec17793b6ba0f3b3fd1f9c65fff9fb Mon Sep 17 00:00:00 2001 From: "Samuel H. Kenyon" Date: Fri, 6 Dec 2013 18:18:03 -0500 Subject: [PATCH] Added some more video formats to SigTypeToExtMap. --- .../autopsy/fileextmismatch/FileExtMismatchIngestModule.java | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/FileExtMismatch/src/org/sleuthkit/autopsy/fileextmismatch/FileExtMismatchIngestModule.java b/FileExtMismatch/src/org/sleuthkit/autopsy/fileextmismatch/FileExtMismatchIngestModule.java index 271a528461..757c7f02fb 100644 --- a/FileExtMismatch/src/org/sleuthkit/autopsy/fileextmismatch/FileExtMismatchIngestModule.java +++ b/FileExtMismatch/src/org/sleuthkit/autopsy/fileextmismatch/FileExtMismatchIngestModule.java @@ -152,7 +152,10 @@ public class FileExtMismatchIngestModule extends org.sleuthkit.autopsy.ingest.In SigTypeToExtMap.put("video/x-ms-wmv", new String[]{"wmv"}); SigTypeToExtMap.put("video/mpeg", new String[]{"mpeg","mpg"}); SigTypeToExtMap.put("video/x-flv", new String[]{"flv"}); - + SigTypeToExtMap.put("application/vnd.rn-realmedia", new String[]{"rm"}); + SigTypeToExtMap.put("application/vnd.rn-realvideo", new String[]{"rv"}); + SigTypeToExtMap.put("application/x-shockwave-flash", new String[]{"swf"}); + try { List textPlainExts = new ArrayList<>(); InputStream inputStream = FileExtMismatchIngestModule.class.getResourceAsStream(TEXT_PLAIN_CONFIG_PATH);