Skip to content
Snippets Groups Projects
Commit 760c2a1e authored by raman-bt's avatar raman-bt
Browse files

Added new artifacts/attributes

parent c615a4cc
No related branches found
No related tags found
No related merge requests found
......@@ -38,7 +38,11 @@ map<int, TskArtifactNames> initializeArtifactTypeMap(){
retval.insert(pair<int, TskArtifactNames>(TSK_MESSAGE, TskArtifactNames("TSK_MESSAGE", "Messages")));
retval.insert(pair<int, TskArtifactNames>(TSK_CALLLOG, TskArtifactNames("TSK_CALLLOG", "Call Logs")));
retval.insert(pair<int, TskArtifactNames>(TSK_CALENDAR_ENTRY, TskArtifactNames("TSK_CALENDAR_ENTRY", "Calendar Entries")));
retval.insert(pair<int, TskArtifactNames>(TSK_SPEED_DIAL_ENTRY, TskArtifactNames("TSK_SPEED_DIAL_ENTRY", "Speed Dial Entries")));
retval.insert(pair<int, TskArtifactNames>(TSK_BLUETOOTH_PAIRING, TskArtifactNames("TSK_BLUETOOTH_PAIRING", "Bluetooth Pairings")));
retval.insert(pair<int, TskArtifactNames>(TSK_GPS_BOOKMARK, TskArtifactNames("TSK_GPS_BOOKMARK", "GPS Bookmarks")));
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")));
return retval;
}
......@@ -128,8 +132,12 @@ map<int, TskAttributeNames> initializeAttributeTypeMap(){
retval.insert(pair<int, TskAttributeNames>(TSK_DATETIME_END, TskAttributeNames("TSK_DATETIME_END", "End Date/Time")));
retval.insert(pair<int, TskAttributeNames>(TSK_CALENDAR_ENTRY_TYPE, TskAttributeNames("TSK_CALENDAR_ENTRY_TYPE", "Calendar Entry Type")));
retval.insert(pair<int, TskAttributeNames>(TSK_LOCATION, TskAttributeNames("TSK_LOCATION", "Location")));
retval.insert(pair<int, TskAttributeNames>(TSK_DIAL_STRING, TskAttributeNames("TSK_DIAL_STRING", "Dial String")));
retval.insert(pair<int, TskAttributeNames>(TSK_DEVICE_NAME, TskAttributeNames("TSK_DEVICE_NAME", "Device Name")));
retval.insert(pair<int, TskAttributeNames>(TSK_CATEGORY, TskAttributeNames("TSK_CATEGORY", "Category")));
retval.insert(pair<int, TskAttributeNames>(TSK_MAILBOX_NAME, TskAttributeNames("TSK_MAILBOX_NAME", "Mailbox Name")));
retval.insert(pair<int, TskAttributeNames>(TSK_EMAIL_REPLYTO, TskAttributeNames("TSK_EMAIL_REPLYTO", "ReplyTo Address")));
retval.insert(pair<int, TskAttributeNames>(TSK_SERVER_NAME, TskAttributeNames("TSK_SERVER_NAME", "Server Name")));
return retval;
}
......
......@@ -72,6 +72,13 @@ enum TSK_ARTIFACT_TYPE {
TSK_MESSAGE = 24, ///< An SMS/MMS message extracted from phone, or from another messaging application, like IM
TSK_CALLLOG = 25, ///< A Phone call log extracted from a phones or softphone application
TSK_CALENDAR_ENTRY = 26, ///< A Calendar entry from a phone, PIM or a Calendar application.
TSK_SPEED_DIAL_ENTRY = 27, ///< A speed dial entry from a phone
TSK_BLUETOOTH_PAIRING = 28, ///< A bluetooth pairing entry
TSK_GPS_BOOKMARK = 29, ///< GPS Bookmarks
TSK_GPS_LAST_KNOWN_LOCATION = 30, ///< GPS Last known location
TSK_GPS_SEARCH = 31, ///< GPS Searches
/* SEE ABOVE:
* - KEEP JAVA CODE IN SYNC
......@@ -176,6 +183,12 @@ enum TSK_ATTRIBUTE_TYPE {
TSK_DATETIME_END = 84, ///< end time of an event - call log, Calendar entry
TSK_CALENDAR_ENTRY_TYPE = 85, ///< calendar entry type: meeting, task,
TSK_LOCATION = 86, // Location string associated with an event - Conf Room Name, Address ....
TSK_DIAL_STRING = 87, ///< Short code or dial string for Speed dial, canned messages etc.
TSK_DEVICE_NAME = 88, ///< device name
TSK_CATEGORY = 89, ///< category/type, possible value set varies by the artifact
TSK_MAILBOX_NAME = 90, ///< mail box
TSK_EMAIL_REPLYTO = 91, ///< ReplyTo address
TSK_SERVER_NAME = 92, ///< server name
/* 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