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
e7c417d1
Commit
e7c417d1
authored
5 years ago
by
apriestman
Browse files
Options
Downloads
Patches
Plain Diff
Added references to artifact helpers
parent
fe85842d
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
bindings/java/src/org/sleuthkit/datamodel/BlackboardArtifact.java
+28
-4
28 additions, 4 deletions
.../java/src/org/sleuthkit/datamodel/BlackboardArtifact.java
with
28 additions
and
4 deletions
bindings/java/src/org/sleuthkit/datamodel/BlackboardArtifact.java
+
28
−
4
View file @
e7c417d1
...
...
@@ -931,21 +931,29 @@ public enum ARTIFACT_TYPE implements SleuthkitVisitableItem {
bundle
.
getString
(
"BlackboardArtifact.tskGenInfo.text"
)),
/**
* A Web bookmark.
* Use methods in org.sleuthkit.datamodel.blackboardutils.WebBrowserArtifactsHelper
* to create bookmark artifacts.
*/
TSK_WEB_BOOKMARK
(
2
,
"TSK_WEB_BOOKMARK"
,
//NON-NLS
bundle
.
getString
(
"BlackboardArtifact.tskWebBookmark.text"
)),
/**
* A Web cookie
* A Web cookie.
* Use methods in org.sleuthkit.datamodel.blackboardutils.WebBrowserArtifactsHelper
* to create cookie artifacts.
*/
TSK_WEB_COOKIE
(
3
,
"TSK_WEB_COOKIE"
,
bundle
.
getString
(
"BlackboardArtifact.tskWebCookie.text"
)),
//NON-NLS
/**
* A Web history.
* Use methods in org.sleuthkit.datamodel.blackboardutils.WebBrowserArtifactsHelper
* to create history artifacts.
*/
TSK_WEB_HISTORY
(
4
,
"TSK_WEB_HISTORY"
,
//NON-NLS
bundle
.
getString
(
"BlackboardArtifact.tskWebHistory.text"
)),
/**
* A Web download.
* Use methods in org.sleuthkit.datamodel.blackboardutils.WebBrowserArtifactsHelper
* to create download artifacts.
*/
TSK_WEB_DOWNLOAD
(
5
,
"TSK_WEB_DOWNLOAD"
,
//NON-NLS
bundle
.
getString
(
"BlackboardArtifact.tskWebDownload.text"
)),
...
...
@@ -1050,17 +1058,23 @@ public enum ARTIFACT_TYPE implements SleuthkitVisitableItem {
/**
* A contact extracted from a phone, or from an address
* book/email/messaging application.
* Use methods in org.sleuthkit.datamodel.blackboardutils.CommunicationArtifactsHelper
* to create contact artifacts.
*/
TSK_CONTACT
(
23
,
"TSK_CONTACT"
,
//NON-NLS
bundle
.
getString
(
"BlackboardArtifact.tskContact.text"
)),
/**
* An SMS/MMS message extracted from phone, or from another messaging
* application, like IM.
* Use methods in org.sleuthkit.datamodel.blackboardutils.CommunicationArtifactsHelper
* to create message artifacts.
*/
TSK_MESSAGE
(
24
,
"TSK_MESSAGE"
,
//NON-NLS
bundle
.
getString
(
"BlackboardArtifact.tskMessage.text"
)),
/**
* A phone call log extracted from a phone or softphone application.
* Use methods in org.sleuthkit.datamodel.blackboardutils.CommunicationArtifactsHelper
* to create call log artifacts.
*/
TSK_CALLLOG
(
25
,
"TSK_CALLLOG"
,
//NON-NLS
bundle
.
getString
(
"BlackboardArtifact.tskCalllog.text"
)),
...
...
@@ -1117,6 +1131,8 @@ public enum ARTIFACT_TYPE implements SleuthkitVisitableItem {
bundle
.
getString
(
"BlackboardArtifact.tskInterestingArtifactHit.text"
)),
/**
* A route based on GPS coordinates.
* Use org.sleuthkit.datamodel.blackboardutils.GeoArtifactsHelper.addRoute()
* to create route artifacts.
*/
TSK_GPS_ROUTE
(
36
,
"TSK_GPS_ROUTE"
,
//NON-NLS
bundle
.
getString
(
"BlackboardArtifact.tskGpsRoute.text"
)),
...
...
@@ -1181,12 +1197,16 @@ public enum ARTIFACT_TYPE implements SleuthkitVisitableItem {
TSK_DATA_SOURCE_USAGE
(
48
,
"TSK_DATA_SOURCE_USAGE"
,
//NON-NLS
bundle
.
getString
(
"BlackboardArtifact.tskDataSourceUsage.text"
)),
/**
* Indicates auto fill data from a Web form
* Indicates auto fill data from a Web form.
* Use methods in org.sleuthkit.datamodel.blackboardutils.WebBrowserArtifactsHelper
* to create web form autofill artifacts.
*/
TSK_WEB_FORM_AUTOFILL
(
49
,
"TSK_WEB_FORM_AUTOFILL"
,
//NON-NLS
bundle
.
getString
(
"BlackboardArtifact.tskWebFormAutofill.text"
)),
/**
* Indicates an person's address filled in a web form
* Indicates an person's address filled in a web form.
* Use methods in org.sleuthkit.datamodel.blackboardutils.WebBrowserArtifactsHelper
* to create web form address artifacts.
*/
TSK_WEB_FORM_ADDRESS
(
50
,
"TSK_WEB_FORM_ADDRESSES "
,
//NON-NLS
bundle
.
getString
(
"BlackboardArtifact.tskWebFormAddresses.text"
)),
...
...
@@ -1229,7 +1249,11 @@ public enum ARTIFACT_TYPE implements SleuthkitVisitableItem {
*/
TSK_METADATA
(
57
,
"TSK_METADATA"
,
//NON-NLS
bundle
.
getString
(
"BlackboardArtifact.tskMetadata.text"
)),
/**
* Stores a GPS track log.
* Use org.sleuthkit.datamodel.blackboardutils.GeoArtifactsHelper.addTrack()
* to create track artifacts.
*/
TSK_GPS_TRACK
(
58
,
"TSK_GPS_TRACK"
,
bundle
.
getString
(
"BlackboardArtifact.tskTrack.text"
));
/* To developers: For each new artifact, ensure that:
...
...
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