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
57ead3c0
Commit
57ead3c0
authored
4 years ago
by
apriestman
Browse files
Options
Downloads
Patches
Plain Diff
Filled in timeline, examiners and reports in schema doc.
parent
0236a4ae
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/doxygen/db_schema_8_6.dox
+32
-5
32 additions, 5 deletions
bindings/java/doxygen/db_schema_8_6.dox
with
32 additions
and
5 deletions
bindings/java/doxygen/db_schema_8_6.dox
+
32
−
5
View file @
57ead3c0
...
...
@@ -234,22 +234,49 @@ Stores non-directional relationships between two accounts if they communicated o
- **data_source_obj_id** - Id of the data source this relationship came from (from obj_id in data_source_info)
# Timeline
TODO
Stores data used to populate various timelines. It is highly recommended to use
the org.sleuthkit.datamodel.TimelineManager API to create/access this type of data.
## tsk_event_types
Stores the types for events. The super_type_id column is used to arrange the types into a tree.
- **event_type_id** - Id for the type
- **display_name** - Display name for the type (unique, should be human readable)
- **super_type_id** - Parent type for this type (used for building heirarchy; references the event_type_id in this table)
## tsk_event_descriptions
Stores descriptions of each event. Note that the combination of the full_description, content_obj_id, and artifact_id columns must be unique.
- **event_description_id** - Id for this event description
- **full_description** - Full length description of this event (required)
- **med_description** - Medium length description of this event (may be null)
- **short_description** - Short length description of this event (may be null)
- **data_source_obj_id** - Object id of the data source for the event source (references obj_id column in data_source_info)
- **content_obj_id** - Object id of the content that is either the direct or indirect source of this event (references obj_id column in tsk_objects)
- **artifact_id** - Id of the artifact (references artifact_id column in blackboard_artifacts) that is the source of this event (may be null)
- **hash_hit** - 1 if the file associated with this event has a hash set hit, 0 otherwise
- **tagged** - 1 if the direct source of this event has been tagged, 0 otherwise
## tsk_events
Stores each event.
- **event_id** - Id for this event
- **event_type_id** - Event type id (references event_type_id column in tsk_event_types)
- **event_description_id** - Event description id (references event_description_id column in tsk_event_descriptions)
- **time** - Time this event occurred, in seconds from the UNIX epoch
# Examiners and Reports
TODO
## tsk_examiners
Encapsulates the concept of an examiner associated with a case.
- **examiner_id** - Id for the examiner
- **login_name** - Login name for the examiner (must be unique)
- **display_name** - Display name for the examiner (may be null)
## reports
Stores information on generated reports.
- **obj_id** - Id of the report
- **path** - Full path to the report (including file name)
- **crtime** - Time the report was created, in seconds from the UNIX epoch
- **src_module_name** - Name of the module that created the report
- **report_name** - Name of the report (can be empty string)
# Tags
...
...
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