Autopsy 4.22.1
Graphical digital forensics platform for The Sleuth Kit and other tools.
AnalysisSummary.java
Go to the documentation of this file.
1/*
2 * Autopsy Forensic Browser
3 *
4 * Copyright 2020-2021 Basis Technology Corp.
5 * Contact: carrier <at> sleuthkit <dot> org
6 *
7 * Licensed under the Apache License, Version 2.0 (the "License");
8 * you may not use this file except in compliance with the License.
9 * You may obtain a copy of the License at
10 *
11 * http://www.apache.org/licenses/LICENSE-2.0
12 *
13 * Unless required by applicable law or agreed to in writing, software
14 * distributed under the License is distributed on an "AS IS" BASIS,
15 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16 * See the License for the specific language governing permissions and
17 * limitations under the License.
18 */
19package org.sleuthkit.autopsy.datasourcesummary.datamodel;
20
21import java.util.ArrayList;
22import java.util.Collections;
23import java.util.HashSet;
24import java.util.List;
25import java.util.Map;
26import java.util.Set;
27import java.util.function.Function;
28import java.util.stream.Collectors;
29import org.apache.commons.lang3.StringUtils;
30import org.apache.commons.lang3.tuple.Pair;
31import org.sleuthkit.autopsy.datasourcesummary.datamodel.SleuthkitCaseProvider.SleuthkitCaseProviderException;
32import org.sleuthkit.datamodel.SleuthkitCase;
33import org.sleuthkit.datamodel.BlackboardArtifact;
34import org.sleuthkit.datamodel.BlackboardArtifact.ARTIFACT_TYPE;
35import org.sleuthkit.datamodel.BlackboardAttribute;
36import org.sleuthkit.datamodel.BlackboardAttribute.ATTRIBUTE_TYPE;
37import org.sleuthkit.datamodel.DataSource;
38import org.sleuthkit.datamodel.TskCoreException;
39
44public class AnalysisSummary {
45
46 private static final BlackboardAttribute.Type TYPE_SET_NAME = new BlackboardAttribute.Type(ATTRIBUTE_TYPE.TSK_SET_NAME);
47 private static final Set<String> EXCLUDED_KEYWORD_SEARCH_ITEMS = new HashSet<>();
48
50
57
64 this.provider = provider;
65 }
66
77 public List<Pair<String, Long>> getHashsetCounts(DataSource dataSource) throws SleuthkitCaseProviderException, TskCoreException {
78 return getCountsData(dataSource, TYPE_SET_NAME, ARTIFACT_TYPE.TSK_HASHSET_HIT);
79 }
80
91 public List<Pair<String, Long>> getKeywordCounts(DataSource dataSource) throws SleuthkitCaseProviderException, TskCoreException {
92 return getCountsData(dataSource, TYPE_SET_NAME, ARTIFACT_TYPE.TSK_KEYWORD_HIT).stream()
93 // make sure we have a valid set and that that set does not belong to the set of excluded items
94 .filter((pair) -> pair != null && pair.getKey() != null && !EXCLUDED_KEYWORD_SEARCH_ITEMS.contains(pair.getKey().toUpperCase().trim()))
95 .collect(Collectors.toList());
96 }
97
113 @SuppressWarnings("deprecation")
114 public List<Pair<String, Long>> getInterestingItemCounts(DataSource dataSource) throws SleuthkitCaseProviderException, TskCoreException {
115 return getCountsData(dataSource, TYPE_SET_NAME, ARTIFACT_TYPE.TSK_INTERESTING_FILE_HIT, ARTIFACT_TYPE.TSK_INTERESTING_ARTIFACT_HIT, ARTIFACT_TYPE.TSK_INTERESTING_ITEM);
116 }
117
132 private List<Pair<String, Long>> getCountsData(DataSource dataSource, BlackboardAttribute.Type keyType, ARTIFACT_TYPE... artifactTypes)
133 throws SleuthkitCaseProviderException, TskCoreException {
134
135 if (dataSource == null) {
136 return Collections.emptyList();
137 }
138
139 List<BlackboardArtifact> artifacts = new ArrayList<>();
140 SleuthkitCase skCase = provider.get();
141
142 // get all artifacts in one list for each artifact type
143 for (ARTIFACT_TYPE type : artifactTypes) {
144 artifacts.addAll(skCase.getBlackboard().getArtifacts(type.getTypeID(), dataSource.getId()));
145 }
146
147 // group those based on the value of the attribute type that should serve as a key
148 Map<String, Long> countedKeys = artifacts.stream()
149 .map((art) -> {
150 String key = DataSourceInfoUtilities.getStringOrNull(art, keyType);
151 return (StringUtils.isBlank(key)) ? null : key;
152 })
153 .filter((key) -> key != null)
154 .collect(Collectors.groupingBy(Function.identity(), Collectors.counting()));
155
156 // sort from max to min counts
157 return countedKeys.entrySet().stream()
158 .map((e) -> Pair.of(e.getKey(), e.getValue()))
159 .sorted((a, b) -> -a.getValue().compareTo(b.getValue()))
160 .collect(Collectors.toList());
161 }
162}
List< Pair< String, Long > > getHashsetCounts(DataSource dataSource)
List< Pair< String, Long > > getKeywordCounts(DataSource dataSource)
List< Pair< String, Long > > getInterestingItemCounts(DataSource dataSource)
List< Pair< String, Long > > getCountsData(DataSource dataSource, BlackboardAttribute.Type keyType, ARTIFACT_TYPE... artifactTypes)
static String getStringOrNull(BlackboardArtifact artifact, Type attributeType)

Copyright © 2012-2024 Sleuth Kit Labs. Generated on:
This work is licensed under a Creative Commons Attribution-Share Alike 3.0 United States License.