Skip to content
Snippets Groups Projects
Commit e10450ff authored by Eugene Livis's avatar Eugene Livis
Browse files

Added TSK_PREVIOUSLY_UNSEEN artifact type

parent 76a2cbb0
No related branches found
No related tags found
No related merge requests found
...@@ -1292,6 +1292,11 @@ public static final class Type implements Serializable { ...@@ -1292,6 +1292,11 @@ public static final class Type implements Serializable {
*/ */
public static final Type TSK_PREVIOUSLY_SEEN = new BlackboardArtifact.Type(69, "TSK_PREVIOUSLY_SEEN", bundle.getString("BlackboardArtifact.tskPreviouslySeen.text"), Category.ANALYSIS_RESULT); public static final Type TSK_PREVIOUSLY_SEEN = new BlackboardArtifact.Type(69, "TSK_PREVIOUSLY_SEEN", bundle.getString("BlackboardArtifact.tskPreviouslySeen.text"), Category.ANALYSIS_RESULT);
/**
* Indicates that the file or artifacts was previously unseen in another Autopsy case.
*/
public static final Type TSK_PREVIOUSLY_UNSEEN = new BlackboardArtifact.Type(70, "TSK_PREVIOUSLY_UNSEEN", bundle.getString("BlackboardArtifact.tskPreviouslyUnseen.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.
...@@ -1358,7 +1363,8 @@ public static final class Type implements Serializable { ...@@ -1358,7 +1363,8 @@ public static final class Type implements Serializable {
TSK_YARA_HIT, TSK_YARA_HIT,
TSK_GPS_AREA, TSK_GPS_AREA,
TSK_WEB_CATEGORIZATION, TSK_WEB_CATEGORIZATION,
TSK_PREVIOUSLY_SEEN TSK_PREVIOUSLY_SEEN,
TSK_PREVIOUSLY_UNSEEN
).collect(Collectors.toMap(type -> type.getTypeID(), type -> type))); ).collect(Collectors.toMap(type -> type.getTypeID(), type -> type)));
private final String typeName; private final String typeName;
...@@ -1859,7 +1865,13 @@ public enum ARTIFACT_TYPE implements SleuthkitVisitableItem { ...@@ -1859,7 +1865,13 @@ public enum ARTIFACT_TYPE implements SleuthkitVisitableItem {
* Indicates that the file or artifacts was previously seen in another Autopsy case. * Indicates that the file or artifacts was previously seen in another Autopsy case.
*/ */
TSK_PREVIOUSLY_SEEN(69, "TSK_PREVIOUSLY_SEEN", TSK_PREVIOUSLY_SEEN(69, "TSK_PREVIOUSLY_SEEN",
bundle.getString("BlackboardArtifact.tskPreviouslySeen.text"), Category.ANALYSIS_RESULT),; bundle.getString("BlackboardArtifact.tskPreviouslySeen.text"), Category.ANALYSIS_RESULT),
/**
* Indicates that the file or artifacts was previously unseen in another Autopsy case.
*/
TSK_PREVIOUSLY_UNSEEN(70, "TSK_PREVIOUSLY_UNSEEN",
bundle.getString("BlackboardArtifact.tskPreviouslyUnseen.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
......
...@@ -65,6 +65,7 @@ BlackboardArtifact.shortDescriptionDate.text=at {0} ...@@ -65,6 +65,7 @@ BlackboardArtifact.shortDescriptionDate.text=at {0}
BlackboardArtifact.tskAssociatedObject.text=Associated Object BlackboardArtifact.tskAssociatedObject.text=Associated Object
BlackboardArtifact.tskWebCategorization.text=Web Categories BlackboardArtifact.tskWebCategorization.text=Web Categories
BlackboardArtifact.tskPreviouslySeen.text=Previously Seen BlackboardArtifact.tskPreviouslySeen.text=Previously Seen
BlackboardArtifact.tskPreviouslyUnseen.text=Previously Unseen
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
......
...@@ -65,6 +65,7 @@ BlackboardArtifact.shortDescriptionDate.text=at {0} ...@@ -65,6 +65,7 @@ BlackboardArtifact.shortDescriptionDate.text=at {0}
BlackboardArtifact.tskAssociatedObject.text=Associated Object BlackboardArtifact.tskAssociatedObject.text=Associated Object
BlackboardArtifact.tskWebCategorization.text=Web Categories BlackboardArtifact.tskWebCategorization.text=Web Categories
BlackboardArtifact.tskPreviouslySeen.text=Previously Seen BlackboardArtifact.tskPreviouslySeen.text=Previously Seen
BlackboardArtifact.tskPreviouslyUnseen.text=Previously Unseen
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