Skip to content
Snippets Groups Projects
Unverified Commit 493ddf53 authored by Richard Cordovano's avatar Richard Cordovano Committed by GitHub
Browse files

Merge pull request #2544 from APriestman/restorePersonaArtifact

Restore persona artifact
parents 0e90298c c1c11c4c
No related branches found
No related tags found
No related merge requests found
...@@ -1294,6 +1294,12 @@ public static final class Type implements Serializable { ...@@ -1294,6 +1294,12 @@ public static final class Type implements Serializable {
*/ */
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.
/** /**
* All standard artifact types with ids mapped to the type. * All standard artifact types with ids mapped to the type.
...@@ -1362,7 +1368,8 @@ public static final class Type implements Serializable { ...@@ -1362,7 +1368,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;
...@@ -1873,7 +1880,13 @@ public enum ARTIFACT_TYPE implements SleuthkitVisitableItem { ...@@ -1873,7 +1880,13 @@ 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);
/* /*
......
...@@ -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