From e796f276ccafa3f64aa9a7d085654ae0fee31dbc Mon Sep 17 00:00:00 2001 From: Mark McKinnon Date: Wed, 30 Sep 2020 20:48:39 -0400 Subject: [PATCH 1/6] Update ileap-artifact-attribute-reference.xml added new plugins. --- .../ileap-artifact-attribute-reference.xml | 165 +++++++++++++++++- 1 file changed, 162 insertions(+), 3 deletions(-) diff --git a/Core/src/org/sleuthkit/autopsy/modules/ileappanalyzer/ileap-artifact-attribute-reference.xml b/Core/src/org/sleuthkit/autopsy/modules/ileappanalyzer/ileap-artifact-attribute-reference.xml index 0959cbdcc4..b19a71c330 100644 --- a/Core/src/org/sleuthkit/autopsy/modules/ileappanalyzer/ileap-artifact-attribute-reference.xml +++ b/Core/src/org/sleuthkit/autopsy/modules/ileappanalyzer/ileap-artifact-attribute-reference.xml @@ -47,6 +47,15 @@ + + + + + + + + + @@ -120,6 +129,13 @@ + + + + + + + @@ -189,6 +205,36 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -207,15 +253,61 @@ - + - + - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -248,6 +340,19 @@ + + + + + + + + + + + + + @@ -288,6 +393,36 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -302,6 +437,18 @@ + + + + + + + + + + + + @@ -318,6 +465,18 @@ + + + + + + + + + + + + From 3e87e8a977d6dfa93667483297dc2b12e6aa0513 Mon Sep 17 00:00:00 2001 From: Mark McKinnon Date: Thu, 1 Oct 2020 13:14:20 -0400 Subject: [PATCH 2/6] Update ileap-artifact-attribute-reference.xml Artifacts and attributes added to ileap --- .../ileap-artifact-attribute-reference.xml | 96 +++++++++++++++++++ 1 file changed, 96 insertions(+) diff --git a/Core/src/org/sleuthkit/autopsy/modules/ileappanalyzer/ileap-artifact-attribute-reference.xml b/Core/src/org/sleuthkit/autopsy/modules/ileappanalyzer/ileap-artifact-attribute-reference.xml index b19a71c330..c8d1c701d4 100644 --- a/Core/src/org/sleuthkit/autopsy/modules/ileappanalyzer/ileap-artifact-attribute-reference.xml +++ b/Core/src/org/sleuthkit/autopsy/modules/ileappanalyzer/ileap-artifact-attribute-reference.xml @@ -592,6 +592,102 @@ --> + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + From c78f25fdf3fae7105c6528c3bc02f9451ee306d2 Mon Sep 17 00:00:00 2001 From: Mark McKinnon Date: Mon, 5 Oct 2020 10:20:40 -0400 Subject: [PATCH 3/6] Update ileap-artifact-attribute-reference.xml Update attribute ileap cross reference. --- .../ileappanalyzer/ileap-artifact-attribute-reference.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Core/src/org/sleuthkit/autopsy/modules/ileappanalyzer/ileap-artifact-attribute-reference.xml b/Core/src/org/sleuthkit/autopsy/modules/ileappanalyzer/ileap-artifact-attribute-reference.xml index c8d1c701d4..5dd33236fa 100644 --- a/Core/src/org/sleuthkit/autopsy/modules/ileappanalyzer/ileap-artifact-attribute-reference.xml +++ b/Core/src/org/sleuthkit/autopsy/modules/ileappanalyzer/ileap-artifact-attribute-reference.xml @@ -131,7 +131,7 @@ - + @@ -226,7 +226,7 @@ - + From 7bb7603ea1438969b2e0eb17272809d6efd91807 Mon Sep 17 00:00:00 2001 From: Mark McKinnon Date: Tue, 6 Oct 2020 08:28:30 -0400 Subject: [PATCH 4/6] Update ILeappFileProcessor.java Updated iLeapp artifacts --- .../autopsy/modules/ileappanalyzer/ILeappFileProcessor.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Core/src/org/sleuthkit/autopsy/modules/ileappanalyzer/ILeappFileProcessor.java b/Core/src/org/sleuthkit/autopsy/modules/ileappanalyzer/ILeappFileProcessor.java index cb5ab516a6..60c88cd543 100644 --- a/Core/src/org/sleuthkit/autopsy/modules/ileappanalyzer/ILeappFileProcessor.java +++ b/Core/src/org/sleuthkit/autopsy/modules/ileappanalyzer/ILeappFileProcessor.java @@ -124,7 +124,7 @@ public final class ILeappFileProcessor { .filter(f -> f.toLowerCase().endsWith(".tsv")).collect(Collectors.toList()); for (String tsvFile : allTsvFiles) { - if (tsvFiles.containsKey(FilenameUtils.getName(tsvFile))) { + if (tsvFiles.containsKey(FilenameUtils.getName(tsvFile.toLowerCase()))) { foundTsvFiles.add(tsvFile); } } @@ -340,7 +340,7 @@ public final class ILeappFileProcessor { for (int i = 0; i < nlist.getLength(); i++) { NamedNodeMap nnm = nlist.item(i).getAttributes(); - tsvFiles.put(nnm.getNamedItem("filename").getNodeValue(), nnm.getNamedItem("description").getNodeValue()); + tsvFiles.put(nnm.getNamedItem("filename").getNodeValue().toLowerCase(), nnm.getNamedItem("description").getNodeValue()); } From b87c7a6d954ddcca1803821321a47b3f007abc8d Mon Sep 17 00:00:00 2001 From: Mark McKinnon Date: Tue, 6 Oct 2020 08:28:56 -0400 Subject: [PATCH 5/6] Update ileap-artifact-attribute-reference.xml UPdated artifacts --- .../ileap-artifact-attribute-reference.xml | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Core/src/org/sleuthkit/autopsy/modules/ileappanalyzer/ileap-artifact-attribute-reference.xml b/Core/src/org/sleuthkit/autopsy/modules/ileappanalyzer/ileap-artifact-attribute-reference.xml index 5dd33236fa..a4eb83a2a4 100644 --- a/Core/src/org/sleuthkit/autopsy/modules/ileappanalyzer/ileap-artifact-attribute-reference.xml +++ b/Core/src/org/sleuthkit/autopsy/modules/ileappanalyzer/ileap-artifact-attribute-reference.xml @@ -281,8 +281,8 @@ - - + + @@ -437,8 +437,8 @@ - - + + @@ -464,9 +464,9 @@ - - - + + + From 96f3458e76df9c1bb2510c358d94b6466ac3ce34 Mon Sep 17 00:00:00 2001 From: Mark McKinnon Date: Tue, 17 Nov 2020 10:45:33 -0500 Subject: [PATCH 6/6] Update ileap-artifact-attribute-reference.xml Changed artifact names --- .../ileap-artifact-attribute-reference.xml | 58 +++++++++---------- 1 file changed, 29 insertions(+), 29 deletions(-) diff --git a/Core/src/org/sleuthkit/autopsy/modules/ileappanalyzer/ileap-artifact-attribute-reference.xml b/Core/src/org/sleuthkit/autopsy/modules/ileappanalyzer/ileap-artifact-attribute-reference.xml index a4eb83a2a4..a4169395aa 100644 --- a/Core/src/org/sleuthkit/autopsy/modules/ileappanalyzer/ileap-artifact-attribute-reference.xml +++ b/Core/src/org/sleuthkit/autopsy/modules/ileappanalyzer/ileap-artifact-attribute-reference.xml @@ -130,7 +130,7 @@ - + @@ -206,10 +206,10 @@ - + - + @@ -223,10 +223,10 @@ - + - + @@ -255,7 +255,7 @@ - + @@ -267,11 +267,11 @@ - + - + @@ -283,10 +283,10 @@ - + - + @@ -298,10 +298,10 @@ - + - + @@ -341,10 +341,10 @@ - + - + @@ -394,10 +394,10 @@ - + - + @@ -409,10 +409,10 @@ - + - + @@ -438,7 +438,7 @@ - + @@ -466,7 +466,7 @@ - + @@ -594,7 +594,7 @@ --> - + @@ -604,7 +604,7 @@ - + @@ -615,7 +615,7 @@ - + @@ -626,7 +626,7 @@ - + @@ -649,9 +649,9 @@ - + - + @@ -659,7 +659,7 @@ - + @@ -677,10 +677,10 @@ - + - +