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
44dd2cea
Commit
44dd2cea
authored
3 years ago
by
Brian Carrier
Browse files
Options
Downloads
Patches
Plain Diff
fixed name of calllog
parent
c44eb707
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
case-uco/java/src/org/sleuthkit/caseuco/CaseUcoExporter.java
+2
-2
2 additions, 2 deletions
case-uco/java/src/org/sleuthkit/caseuco/CaseUcoExporter.java
with
2 additions
and
2 deletions
case-uco/java/src/org/sleuthkit/caseuco/CaseUcoExporter.java
+
2
−
2
View file @
44dd2cea
...
@@ -464,7 +464,7 @@ public List<JsonElement> exportBlackboardArtifact(BlackboardArtifact artifact) t
...
@@ -464,7 +464,7 @@ public List<JsonElement> exportBlackboardArtifact(BlackboardArtifact artifact) t
}
else
if
(
TSK_MESSAGE
.
getTypeID
()
==
artifactTypeId
)
{
}
else
if
(
TSK_MESSAGE
.
getTypeID
()
==
artifactTypeId
)
{
assembleMessage
(
uuid
,
artifact
,
output
);
assembleMessage
(
uuid
,
artifact
,
output
);
}
else
if
(
TSK_CALLLOG
.
getTypeID
()
==
artifactTypeId
)
{
}
else
if
(
TSK_CALLLOG
.
getTypeID
()
==
artifactTypeId
)
{
assembleCallog
(
uuid
,
artifact
,
output
);
assembleCall
L
og
(
uuid
,
artifact
,
output
);
}
else
if
(
TSK_CALENDAR_ENTRY
.
getTypeID
()
==
artifactTypeId
)
{
}
else
if
(
TSK_CALENDAR_ENTRY
.
getTypeID
()
==
artifactTypeId
)
{
assembleCalendarEntry
(
uuid
,
artifact
,
output
);
assembleCalendarEntry
(
uuid
,
artifact
,
output
);
}
else
if
(
TSK_SPEED_DIAL_ENTRY
.
getTypeID
()
==
artifactTypeId
)
{
}
else
if
(
TSK_SPEED_DIAL_ENTRY
.
getTypeID
()
==
artifactTypeId
)
{
...
@@ -1000,7 +1000,7 @@ private void assembleMetadataExif(String uuid, BlackboardArtifact artifact, List
...
@@ -1000,7 +1000,7 @@ private void assembleMetadataExif(String uuid, BlackboardArtifact artifact, List
serializeObjectToOutput
(
export
,
output
);
serializeObjectToOutput
(
export
,
output
);
}
}
private
void
assembleCallog
(
String
uuid
,
BlackboardArtifact
artifact
,
List
<
JsonElement
>
output
)
throws
TskCoreException
{
private
void
assembleCall
L
og
(
String
uuid
,
BlackboardArtifact
artifact
,
List
<
JsonElement
>
output
)
throws
TskCoreException
{
ObservableObject
fromNode
=
new
BlankObservableObject
()
ObservableObject
fromNode
=
new
BlankObservableObject
()
.
addBundle
(
new
PhoneAccountFacet
()
.
addBundle
(
new
PhoneAccountFacet
()
.
setPhoneNumber
(
getValueIfPresent
(
artifact
,
StandardAttributeTypes
.
TSK_PHONE_NUMBER_FROM
)));
.
setPhoneNumber
(
getValueIfPresent
(
artifact
,
StandardAttributeTypes
.
TSK_PHONE_NUMBER_FROM
)));
...
...
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