Skip to content
Snippets Groups Projects
Commit 94af36df authored by Brian Carrier's avatar Brian Carrier
Browse files

Merge pull request #276 from raman-bt/develop

Defined  a new artifact: TSK_INTERESTING_ARTIFACT
parents e6df7ea6 4d8c3c5d
Branches
Tags
No related merge requests found
......@@ -74,6 +74,7 @@ public enum ARTIFACT_TYPE implements SleuthkitVisitableItem {
TSK_GPS_LAST_KNOWN_LOCATION(30, "TSK_GPS_LAST_KNOWN_LOCATION", "GPS Last Known Location"), // GPS Last known location
TSK_GPS_SEARCH(31, "TSK_GPS_SEARCH", "GPS Searches"), // GPS Searches
TSK_PROG_RUN(32, "TSK_PROG_RUN", "Run Programs"), ///< Application run information
TSK_INTERESTING_ARTIFACT(33, "TSK_INTERESTING_ARTIFACT", "Interesting Results"), // Any artifact that should be called out
;
......
......@@ -192,8 +192,7 @@ public enum ATTRIBUTE_TYPE {
TSK_MIN_COUNT(93, "TSK_MIN_COUNT", "Minimum Count"), // Minimum number/count
TSK_PATH_SOURCE(94, "TSK_PATH_SOURCE", "Path Source"), // Path to a source file related to the artifact
TSK_PERMISSIONS(95, "TSK_PERMISSIONS", "Permissions"), // Permissions
TSK_PROG_LAUNCHED(96, "TSK_PROG_LAUNCHED", "Program Launched"), // Flag for whether a program has been run
TSK_ASSOCIATED_ARTIFACT(97, "TSK_ASSOCIATED_ARTIFACT", "Associated Artifact"), // Artifact ID of a related artifact
TSK_ASSOCIATED_ARTIFACT(96, "TSK_ASSOCIATED_ARTIFACT", "Associated Artifact"), // Artifact ID of a related artifact
;
......
......@@ -44,6 +44,7 @@ map<int, TskArtifactNames> initializeArtifactTypeMap(){
retval.insert(pair<int, TskArtifactNames>(TSK_GPS_LAST_KNOWN_LOCATION, TskArtifactNames("TSK_GPS_LAST_KNOWN_LOCATION", "GPS Last Known Location")));
retval.insert(pair<int, TskArtifactNames>(TSK_GPS_SEARCH, TskArtifactNames("TSK_GPS_SEARCH", "GPS Searches")));
retval.insert(pair<int, TskArtifactNames>(TSK_PROG_RUN, TskArtifactNames("TSK_PROG_RUN", "Run Programs")));
retval.insert(pair<int, TskArtifactNames>(TSK_INTERESTING_ARTIFACT, TskArtifactNames("TSK_INTERESTING_ARTIFACT", "Interesting Results")));
return retval;
}
......
......@@ -78,6 +78,8 @@ enum TSK_ARTIFACT_TYPE {
TSK_GPS_LAST_KNOWN_LOCATION = 30, ///< GPS Last known location
TSK_GPS_SEARCH = 31, ///< GPS Searches
TSK_PROG_RUN = 32, ///< Application run information
TSK_INTERESTING_ARTIFACT = 33, ///< Any artifact interesting enough that it should be called out in the UI.
/* SEE ABOVE:
......@@ -192,8 +194,7 @@ enum TSK_ATTRIBUTE_TYPE {
TSK_MIN_COUNT = 93, ///< Minimum number/count
TSK_PATH_SOURCE = 94, ///< Path to a source file related to the artifact
TSK_PERMISSIONS = 95, ///< Permissions
TSK_PROG_LAUNCHED = 96, ///< Flag for whether a program has been run
TSK_ASSOCIATED_ARTIFACT = 97, ///< Artifact ID of a related artifact
TSK_ASSOCIATED_ARTIFACT = 96, ///< Artifact ID of a related artifact
/* SEE ABOVE:
* - KEEP JAVA CODE IN SYNC
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment