Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
S
Sleuthkit
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
IRT
Sleuthkit
Commits
760c2a1e
Commit
760c2a1e
authored
11 years ago
by
raman-bt
Browse files
Options
Downloads
Patches
Plain Diff
Added new artifacts/attributes
parent
c615a4cc
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
framework/tsk/framework/services/TskBlackboard.cpp
+11
-3
11 additions, 3 deletions
framework/tsk/framework/services/TskBlackboard.cpp
framework/tsk/framework/services/TskBlackboard.h
+13
-0
13 additions, 0 deletions
framework/tsk/framework/services/TskBlackboard.h
with
24 additions
and
3 deletions
framework/tsk/framework/services/TskBlackboard.cpp
+
11
−
3
View file @
760c2a1e
...
...
@@ -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
;
}
...
...
This diff is collapsed.
Click to expand it.
framework/tsk/framework/services/TskBlackboard.h
+
13
−
0
View file @
760c2a1e
...
...
@@ -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
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment