Skip to content
Snippets Groups Projects
Commit 3f798b18 authored by apriestman's avatar apriestman
Browse files

New artifact for matching personas

parent a93acdbd
No related branches found
No related tags found
No related merge requests found
...@@ -1301,6 +1301,12 @@ public static final class Type implements Serializable { ...@@ -1301,6 +1301,12 @@ public static final class Type implements Serializable {
* Indicates that the file or artifact was previously tagged as "Notable" in another Autopsy case. * Indicates that the file or artifact was previously tagged as "Notable" in another Autopsy case.
*/ */
public static final Type TSK_PREVIOUSLY_NOTABLE = new BlackboardArtifact.Type(71, "TSK_PREVIOUSLY_NOTABLE", bundle.getString("BlackboardArtifact.tskPreviouslyNotable.text"), Category.ANALYSIS_RESULT); public static final Type TSK_PREVIOUSLY_NOTABLE = new BlackboardArtifact.Type(71, "TSK_PREVIOUSLY_NOTABLE", bundle.getString("BlackboardArtifact.tskPreviouslyNotable.text"), Category.ANALYSIS_RESULT);
/**
* *TEMPORARY* Indicates that the artifact is associated with a persona.
*/
public static final Type TSK_MATCHING_PERSONA = new BlackboardArtifact.Type(72, "TSK_MATCHING_PERSONA", bundle.getString("BlackboardArtifact.tskMatchingPersona.text"), Category.ANALYSIS_RESULT);
// NOTE: When adding a new standard BlackboardArtifact.Type, add the instance and then add to the STANDARD_TYPES map. // NOTE: When adding a new standard BlackboardArtifact.Type, add the instance and then add to the STANDARD_TYPES map.
/** /**
...@@ -1370,7 +1376,8 @@ public static final class Type implements Serializable { ...@@ -1370,7 +1376,8 @@ public static final class Type implements Serializable {
TSK_WEB_CATEGORIZATION, TSK_WEB_CATEGORIZATION,
TSK_PREVIOUSLY_SEEN, TSK_PREVIOUSLY_SEEN,
TSK_PREVIOUSLY_UNSEEN, TSK_PREVIOUSLY_UNSEEN,
TSK_PREVIOUSLY_NOTABLE TSK_PREVIOUSLY_NOTABLE,
TSK_MATCHING_PERSONA
).collect(Collectors.toMap(type -> type.getTypeID(), type -> type))); ).collect(Collectors.toMap(type -> type.getTypeID(), type -> type)));
private final String typeName; private final String typeName;
...@@ -1881,7 +1888,14 @@ public enum ARTIFACT_TYPE implements SleuthkitVisitableItem { ...@@ -1881,7 +1888,14 @@ public enum ARTIFACT_TYPE implements SleuthkitVisitableItem {
* Indicates that the file or artifact was previously tagged as "Notable" in another Autopsy case. * Indicates that the file or artifact was previously tagged as "Notable" in another Autopsy case.
*/ */
TSK_PREVIOUSLY_NOTABLE(71, "TSK_PREVIOUSLY_NOTABLE", TSK_PREVIOUSLY_NOTABLE(71, "TSK_PREVIOUSLY_NOTABLE",
bundle.getString("BlackboardArtifact.tskPreviouslyNotable.text"), Category.ANALYSIS_RESULT); bundle.getString("BlackboardArtifact.tskPreviouslyNotable.text"), Category.ANALYSIS_RESULT),
/**
* *TEMPORARY* Indicates that the artifact is associated with a persona.
*/
TSK_MATCHING_PERSONA(72, "TSK_MATCHING_PERSONA",
bundle.getString("BlackboardArtifact.tskMatchingPersona.text"), Category.ANALYSIS_RESULT);
/* /*
* To developers: For each new artifact, ensure that: - The enum value * To developers: For each new artifact, ensure that: - The enum value
......
...@@ -67,6 +67,7 @@ BlackboardArtifact.tskWebCategorization.text=Web Categories ...@@ -67,6 +67,7 @@ BlackboardArtifact.tskWebCategorization.text=Web Categories
BlackboardArtifact.tskPreviouslySeen.text=Previously Seen BlackboardArtifact.tskPreviouslySeen.text=Previously Seen
BlackboardArtifact.tskPreviouslyUnseen.text=Previously Unseen BlackboardArtifact.tskPreviouslyUnseen.text=Previously Unseen
BlackboardArtifact.tskPreviouslyNotable.text=Previously Notable BlackboardArtifact.tskPreviouslyNotable.text=Previously Notable
BlackboardArtifact.tskMatchingPersona.text=Matching Persona
BlackboardArtifact.tskYaraHit.text=YARA Hit BlackboardArtifact.tskYaraHit.text=YARA Hit
BlackboardArtifact.tskGPSArea.text=GPS Area BlackboardArtifact.tskGPSArea.text=GPS Area
BlackboardAttribute.tskAccountType.text=Account Type BlackboardAttribute.tskAccountType.text=Account Type
......
...@@ -67,6 +67,7 @@ BlackboardArtifact.tskWebCategorization.text=Web Categories ...@@ -67,6 +67,7 @@ BlackboardArtifact.tskWebCategorization.text=Web Categories
BlackboardArtifact.tskPreviouslySeen.text=Previously Seen BlackboardArtifact.tskPreviouslySeen.text=Previously Seen
BlackboardArtifact.tskPreviouslyUnseen.text=Previously Unseen BlackboardArtifact.tskPreviouslyUnseen.text=Previously Unseen
BlackboardArtifact.tskPreviouslyNotable.text=Previously Notable BlackboardArtifact.tskPreviouslyNotable.text=Previously Notable
BlackboardArtifact.tskMatchingPersona.text=Matching Persona
BlackboardArtifact.tskYaraHit.text=YARA Hit BlackboardArtifact.tskYaraHit.text=YARA Hit
BlackboardArtifact.tskGPSArea.text=GPS Area BlackboardArtifact.tskGPSArea.text=GPS Area
BlackboardAttribute.tskAccountType.text=Account Type BlackboardAttribute.tskAccountType.text=Account Type
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment