Skip to content
Snippets Groups Projects
Unverified Commit a93acdbd authored by Ann Priestman's avatar Ann Priestman Committed by GitHub
Browse files

Merge pull request #2505 from eugene7646/new_artifact_7797

New TSK_PREVIOUSLY_NOTABLE artifact (7797)
parents 0e23e955 bd30a2e0
No related branches found
No related tags found
No related merge requests found
...@@ -1288,15 +1288,20 @@ public static final class Type implements Serializable { ...@@ -1288,15 +1288,20 @@ public static final class Type implements Serializable {
public static final Type TSK_WEB_CATEGORIZATION = new BlackboardArtifact.Type(68, "TSK_WEB_CATEGORIZATION", bundle.getString("BlackboardArtifact.tskWebCategorization.text"), Category.ANALYSIS_RESULT); public static final Type TSK_WEB_CATEGORIZATION = new BlackboardArtifact.Type(68, "TSK_WEB_CATEGORIZATION", bundle.getString("BlackboardArtifact.tskWebCategorization.text"), Category.ANALYSIS_RESULT);
/** /**
* Indicates that the file or artifacts was previously seen in another Autopsy case. * Indicates that the file or artifact was previously seen in another Autopsy case.
*/ */
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. * Indicates that the file or artifact 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); public static final Type TSK_PREVIOUSLY_UNSEEN = new BlackboardArtifact.Type(70, "TSK_PREVIOUSLY_UNSEEN", bundle.getString("BlackboardArtifact.tskPreviouslyUnseen.text"), Category.ANALYSIS_RESULT);
/**
* 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);
// 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.
...@@ -1364,7 +1369,8 @@ public static final class Type implements Serializable { ...@@ -1364,7 +1369,8 @@ public static final class Type implements Serializable {
TSK_GPS_AREA, TSK_GPS_AREA,
TSK_WEB_CATEGORIZATION, TSK_WEB_CATEGORIZATION,
TSK_PREVIOUSLY_SEEN, TSK_PREVIOUSLY_SEEN,
TSK_PREVIOUSLY_UNSEEN TSK_PREVIOUSLY_UNSEEN,
TSK_PREVIOUSLY_NOTABLE
).collect(Collectors.toMap(type -> type.getTypeID(), type -> type))); ).collect(Collectors.toMap(type -> type.getTypeID(), type -> type)));
private final String typeName; private final String typeName;
...@@ -1862,17 +1868,21 @@ public enum ARTIFACT_TYPE implements SleuthkitVisitableItem { ...@@ -1862,17 +1868,21 @@ public enum ARTIFACT_TYPE implements SleuthkitVisitableItem {
TSK_WEB_CATEGORIZATION(68, "TSK_WEB_CATEGORIZATION", TSK_WEB_CATEGORIZATION(68, "TSK_WEB_CATEGORIZATION",
bundle.getString("BlackboardArtifact.tskWebCategorization.text"), Category.ANALYSIS_RESULT), bundle.getString("BlackboardArtifact.tskWebCategorization.text"), Category.ANALYSIS_RESULT),
/** /**
* Indicates that the file or artifacts was previously seen in another Autopsy case. * Indicates that the file or artifact 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. * Indicates that the file or artifact was previously unseen in another Autopsy case.
*/ */
TSK_PREVIOUSLY_UNSEEN(70, "TSK_PREVIOUSLY_UNSEEN", TSK_PREVIOUSLY_UNSEEN(70, "TSK_PREVIOUSLY_UNSEEN",
bundle.getString("BlackboardArtifact.tskPreviouslyUnseen.text"), Category.ANALYSIS_RESULT); bundle.getString("BlackboardArtifact.tskPreviouslyUnseen.text"), Category.ANALYSIS_RESULT),
/**
* Indicates that the file or artifact was previously tagged as "Notable" in another Autopsy case.
*/
TSK_PREVIOUSLY_NOTABLE(71, "TSK_PREVIOUSLY_NOTABLE",
bundle.getString("BlackboardArtifact.tskPreviouslyNotable.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
* has 1-line JavaDoc description - The artifact catalog * has 1-line JavaDoc description - The artifact catalog
......
...@@ -66,6 +66,7 @@ BlackboardArtifact.tskAssociatedObject.text=Associated Object ...@@ -66,6 +66,7 @@ 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.tskPreviouslyUnseen.text=Previously Unseen
BlackboardArtifact.tskPreviouslyNotable.text=Previously Notable
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
......
...@@ -66,6 +66,7 @@ BlackboardArtifact.tskAssociatedObject.text=Associated Object ...@@ -66,6 +66,7 @@ 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.tskPreviouslyUnseen.text=Previously Unseen
BlackboardArtifact.tskPreviouslyNotable.text=Previously Notable
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