-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathindex.html
More file actions
2043 lines (1884 loc) · 85.1 KB
/
Copy pathindex.html
File metadata and controls
2043 lines (1884 loc) · 85.1 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
---
<!-- layout: releases -->
title: Crossover CASE - WMD
jumbo_desc: Cellebrite XML Report Example
---
<h2>Crossover CASE - WMD - Cellebrite XML Report Example</h2>
<p>This document uses CASE to represent digital evidence extracted from an Android device using Cellebrite, with Autopsy to fill in gaps. The physical image and scenario introduction can be downloaded from the following location: <a href="https://drive.switch.ch/index.php/s/0c7BiyQZRKOtMMq">https://drive.switch.ch/index.php/s/0c7BiyQZRKOtMMq</a>.</p>
<p>The JSON-LD data on this page are available combined in the file <a href="crossover_wmd.json">crossover_wmd.json</a>.</p>
<p>The index of scenario portions is <a href="../crossover/">here</a>.</p>
<h3>Disclaimers</h3>
<p>Participation by contributors in the creation of the documentation of mentioned software is not intended to imply a recommendation or endorsement by the United States Government nor any of the contributors' employers, nor is it intended to imply that any specific software is necessarily the best available for the purpose.</p>
<p>Events, locations, tools, and people represented in this and other CASE narratives are presented, and at many times created, for illustration purposes only and do not necessarily represent real events, locations, tools, or people.</p>
<h3>Investigation 2 Background</h3>
<p>INTERPOL publicized an international request to put under surveillance Mr Ares Lupin on 27 November 2018. One of their informants communicated that this individual was implicated in the acquisition of a weapon of mass destruction. The suspect was spotted in Italy on 1 December 2018 and a surveillance was put in place by the Italian Carabinieri. He escaped their monitoring several times. On 11 December 2018, around 09:00 CET, the suspect was recognized by police at the University of Lausanne and he was put under arrest. The suspect fled and threw his smartphone in a rubbish bin. The suspect was not found again.</p>
<p>The mobile phone was retrieved and preserved as evidence on 11 December 2018 at 09:49 CET (physical extraction) using Cellebrite UFED.</p>
<h3>Mandate</h3>
<p>The prosecutor in these investigations has requested digital forensic analysis of the digital evidence for the following information:</p>
<ol type="1">
<li>The name and virtual identifier(s) of the primary users of the Samsung device and computer hard drive.</li>
<li>Links between the devices (smartphone, computer, and USB)</li>
<li>The location of the Samsung smartphone during the periods
<ol type="a">
<li>20-21 November 2018</li>
<li>27 November 2018</li>
<li>1-9 December 2018</li>
</ol>
</li>
<li>Possible accomplices the primary users communicated with</li>
<li>Any backdating of the clock on the Samsung smartphone between November and December 2018?</li>
<li>Evidence related to robbery and weapons of mass destruction</li>
<li>Visual reconstruction of the most pertinent elements and entities (people and objects)</li>
</ol>
<h3>EVIDENCE PROVENANCE AND INTEGRITY</h3>
<p>The initial step of the digital forensic analysis is to assess the provenance and integrity of the digital evidence and to examine device characteristics and identifiers. The overall CASE bundle provides context for the digital evidence.</p>
<h4>CASE Representation of Investigation</h4>
{% highlight json %}
{
"@context": {
"@vocab": "http://example.org/ontology/local#",
"case-investigation": "https://ontology.caseontology.org/case/investigation/",
"drafting": "http://example.org/ontology/drafting/",
"rdf": "http://www.w3.org/1999/02/22-rdf-syntax-ns#",
"rdfs": "http://www.w3.org/2000/01/rdf-schema#",
"kb": "http://example.org/kb/",
"uco-action": "https://ontology.unifiedcyberontology.org/uco/action/",
"uco-configuration": "https://ontology.unifiedcyberontology.org/uco/configuration/",
"uco-core": "https://ontology.unifiedcyberontology.org/uco/core/",
"uco-identity": "https://ontology.unifiedcyberontology.org/uco/identity/",
"uco-location": "https://ontology.unifiedcyberontology.org/uco/location/",
"uco-observable": "https://ontology.unifiedcyberontology.org/uco/observable/",
"uco-role": "https://ontology.unifiedcyberontology.org/uco/role/",
"uco-tool": "https://ontology.unifiedcyberontology.org/uco/tool/",
"uco-types": "https://ontology.unifiedcyberontology.org/uco/types/",
"uco-vocabulary": "https://ontology.unifiedcyberontology.org/uco/vocabulary/",
"xsd": "http://www.w3.org/2001/XMLSchema#"
},
"@graph": [
{
"@id": "kb:bundle-5715fcf3-6bc8-4996-8f7f-fdf289f31649",
"@type": "uco-core:Bundle",
"uco-core:description": "Evidence in cross border investigation into weapon of mass destruction",
"uco-core:object": [
{
"@id": "kb:investigation-99892fd4-ea24-46b5-be68-a69978d6ab98",
"@type": "case-investigation:Investigation",
"uco-core:name": "CROSSOVER_2018_12111001",
"case-investigation:focus": "Weapon of Mass Destruction (Deathly Hallows)",
"uco-core:description": "The subject Ares Lupin was arrested on suspicion of acquiring a weapon of mass destruction. The Samsung smartphone he was carrying was preserved as evidence.",
"rdfs:comment": "TODO - uco-core:object to have longer list of IRIs.",
"uco-core:object": [
{
"@id": "kb:mobiledevice-803df237-bc7e-4e24-a5cb-8157063014b4"
}
]
}
]
}
]
}
{% endhighlight %}
<h3>INVESTIGATIVE ACTIONS</h3>
<p>Which organization and/or individual generated the report using which tool, with general information about the investigation and evidential item entered by the user.</p>
<h4>Cellebrite XML Report Generation</h4>
{% highlight xml %}
<sourceExtractions>
<extractionInfo id="0" name="Physical" prefixName="" isCustomName="False" type="Physical" deviceName="SAMG925F" fullName="Samsung SM-G925F Galaxy S6 Edge" index="0" IsPartialData="False" />
</sourceExtractions>
<caseInformation>
<field name="Case number" isSystem="True" isRequired="False" fieldType="CaseNumber" multipleLines="False">20181211001</field>
<field name="Case name" isSystem="True" isRequired="False" fieldType="CaseName" multipleLines="False">Crossover</field>
<field name="Evidence number" isSystem="True" isRequired="False" fieldType="EvidenceNumber" multipleLines="False">002</field>
<field name="Examiner name" isSystem="True" isRequired="True" fieldType="ExaminerName" multipleLines="False">ESC</field>
<field name="Department" isSystem="True" isRequired="False" fieldType="Department" multipleLines="False">ESC</field>
<field name="Location" isSystem="True" isRequired="False" fieldType="Location" multipleLines="False">Lausanne</field>
<field name="Notes" isSystem="True" isRequired="False" fieldType="Notes" multipleLines="True">Android device used by subject (Lupin)</field>
</caseInformation>
<metadata section="Additional Fields">
<item name="DeviceInfoCreationTime" systemtype="System.String"><![CDATA[12/04/2020 11:32:12]]></item>
<item name="UFED_PA_Version" systemtype="System.String"><![CDATA[7.1.0.106]]></item>
</metadata>
{% endhighlight %}
<h4>CASE Representation of Report Generation</h4>
{% highlight json %}
[
{
"@id": "kb:configuredtool-3549621c-818b-4e27-977c-8375c040fc53",
"@type": "uco-tool:ConfiguredTool",
"uco-core:name": "Physical Analyser",
"uco-tool:toolType": "Analysis",
"uco-tool:creator": {
"@id": "kb:organization-ff30d83e-ff57-45f9-8d54-e79b323c2e8b"
},
"uco-tool:version": "7.1.0.106",
"uco-configuration:usesConfiguration": {
"@id": "kb:Configuration-2afbfbb1-b4d6-4ad5-9691-ff09b9f6eebe",
"@type": "uco-configuration:Configuration",
"uco-configuration:configurationEntry": [
{
"@id": "kb:configuration-entry-f17752eb-4a30-4596-8a7e-e8efba956842",
"@type": "uco-configuration:ConfigurationEntry",
"uco-configuration:itemName": "OutputFormat",
"uco-configuration:itemValue": "XML"
}
]
}
},
{
"@id": "kb:investigativeaction-b4b0805e-84ec-4553-98c2-6f0454829c30",
"@type": "case-investigation:InvestigativeAction",
"uco-core:name": "exported",
"uco-core:startTime": {
"@type": "xsd:dateTime",
"@value": "2020-04-12T11:27:12.00Z"
},
"uco-core:endTime": {
"@type": "xsd:dateTime",
"@value": "2020-04-12T11:32:12.00Z"
},
"uco-action:location": {
"@id": "kb:esc-lausanne-c3b211ae-6a46-4312-a3c2-b5181e565161"
},
"uco-action:performer": {
"@id": "kb:investigator-10b3d2da-e801-4afe-b70a-61f16a75e68b"
},
"uco-action:instrument": {
"@id": "kb:configuredtool-3549621c-818b-4e27-977c-8375c040fc53"
},
"uco-action:environment": {
"@id": "kb:forensic-computer-c782630d-a0c6-4b5b-b1df-bdd514d27bb2"
},
"uco-action:object": [
{
"@id": "kb:provenance-record-e64b7aed-cecb-4291-81d4-4adb5b8020b2"
},
{
"@id": "kb:forensicimage-f3fd304e-ef6c-4cbd-94cb-425880f82748"
}
],
"uco-action:result": [
{
"@id": "kb:provenancerecord-4dee4ff5-bc77-4dad-a785-05b147149678"
},
{
"@id": "kb:cellebritexml-report-ab6beb0b-2fcc-4326-8685-1159c7ea6deb"
}
]
},
{
"@id": "kb:cellebritexml-report-ab6beb0b-2fcc-4326-8685-1159c7ea6deb",
"@type": "uco-observable:File",
"uco-core:hasFacet": [
{
"@id": "kb:file-facet-56a66502-4585-46c5-bfe0-4f81366e6f25",
"@type": "uco-observable:FileFacet",
"uco-observable:observableCreatedTime": {
"@type": "xsd:dateTime",
"@value": "2020-05-16T10:12:40Z"
},
"uco-observable:extension": "xml",
"uco-observable:fileName": "19_UFED_ANDROID_CROSSOVER.xml",
"uco-observable:isDirectory": false
}
]
},
{
"@id": "kb:provenancerecord-4dee4ff5-bc77-4dad-a785-05b147149678",
"@type": "case-investigation:ProvenanceRecord",
"uco-core:object": {
"@id": "kb:cellebritexml-report-ab6beb0b-2fcc-4326-8685-1159c7ea6deb"
}
}
]
{% endhighlight %}
<h3>EVIDENCE EXTRACTION</h3>
<p>When a Cellebrite UFED acquisition contains data about the original forensic extraction process, these details will be in the XML section <samp><metadata section="Extraction Data"></samp> which can be represented as an Investigative Action in CASE.</p>
<h4>Cellebrite XML</h4>
{% highlight xml %}
<metadata section="Extraction Data">
<item name="DeviceInfoExtractionStartDateTime" sourceExtraction="0" systemtype="System.String"><![CDATA[11.12.2018 09:49(UTC+1)]]></item>
<item name="DeviceInfoExtractionEndDateTime" sourceExtraction="0" systemtype="System.String"><![CDATA[11.12.2018 10:54(UTC+1)]]></item>
<item name="DeviceInfoUnitIdentifier" sourceExtraction="0" systemtype="System.String"><![CDATA[557488159]]></item>
<item name="DeviceInfoUnitVersion" sourceExtraction="0" systemtype="System.String"><![CDATA[7.1.0.751]]></item>
<item name="DeviceInfoInternalVersion" sourceExtraction="0" systemtype="System.String"><![CDATA[4.7.7.751]]></item>
<item name="DeviceInfoSelectedManufacturer" sourceExtraction="0" systemtype="System.String"><![CDATA[Samsung GSM]]></item>
<item name="DeviceInfoSelectedDeviceName" sourceExtraction="0" systemtype="System.String"><![CDATA[SM-G925F Galaxy S6 Edge]]></item>
<item name="DeviceInfoConnectionType" sourceExtraction="0" systemtype="System.String"><![CDATA[Cable No. 130]]></item>
<item name="ExtractionType" sourceExtraction="0" systemtype="System.String"><![CDATA[Physique]]></item>
<item name="ProjectStateExtractionId" sourceExtraction="0" systemtype="System.String"><![CDATA[F3FD304E-EF6C-4CBD-94CB-425880F82748]]></item>
<item name="Time zone settings (ID)" sourceExtraction="0" systemtype="System.String"><![CDATA[_Europe/Rome]]></item>
<item name="Time zone settings (ID)" systemtype="System.String"><![CDATA[_Europe/Rome]]></item>
</metadata>
{% endhighlight %}
<h4>CASE Representation of data extraction</h4>
{% highlight json %}
[
{
"@id": "kb:configuredtool-aadfa022-0916-497d-aba5-ff8a4033f609",
"@type": "uco-tool:ConfiguredTool",
"uco-core:name": "UFED",
"uco-tool:toolType": "Extraction",
"drafting:toolIdentifier": "557488159",
"uco-tool:creator": {
"@id": "kb:organization-ff30d83e-ff57-45f9-8d54-e79b323c2e8b"
},
"uco-tool:version": "7.1.0.751",
"uco-configuration:usesConfiguration": {
"@id": "kb:configuration-eb3f3fa6-7271-4d0c-b0f5-a3b916a9e4ab",
"@type": "uco-configuration:Configuration",
"uco-configuration:configurationEntry": [
{
"@id": "kb:configuration-entry-e2dbf1e8-4b9b-473d-8eb1-19e5e6c77aa3",
"@type": "uco-configuration:ConfigurationEntry",
"uco-configuration:itemName": "DeviceInfoConnectionType",
"uco-configuration:itemValue": "Cable No. 130"
},
{
"@id": "kb:configuration-entry-ea526fc0-e542-49c0-87df-e7da1c97de50",
"@type": "uco-configuration:ConfigurationEntry",
"uco-configuration:itemName": "ExtractionType",
"uco-configuration:itemValue": "Physical"
}
]
}
},
{
"@id": "kb:organization-ff30d83e-ff57-45f9-8d54-e79b323c2e8b",
"@type": "uco-identity:Organization",
"uco-core:name": "Cellebrite"
},
{
"@id": "kb:forensic-computer-c782630d-a0c6-4b5b-b1df-bdd514d27bb2",
"@type": "uco-observable:Device"
},
{
"@id": "kb:esc-lausanne-c3b211ae-6a46-4312-a3c2-b5181e565161",
"@type": "uco-location:Location"
},
{
"@id": "kb:investigative-action-99a5c94f-e6cd-4b7c-b189-ea998ee0b31f",
"@type": "case-investigation:InvestigativeAction",
"uco-core:name": "extracted",
"uco-core:startTime": {
"@type": "xsd:dateTime",
"@value": "2018-12-11T08:49:00.00Z"
},
"uco-core:endTime": {
"@type": "xsd:dateTime",
"@value": "2018-12-11T09:54:00.00Z"
},
"uco-action:location": {
"@id": "kb:esc-lausanne-c3b211ae-6a46-4312-a3c2-b5181e565161"
},
"uco-action:performer": {
"@id": "kb:investigator-10b3d2da-e801-4afe-b70a-61f16a75e68b"
},
"uco-action:instrument": {
"@id": "kb:configuredtool-aadfa022-0916-497d-aba5-ff8a4033f609"
},
"uco-action:environment": {
"@id": "kb:forensic-computer-c782630d-a0c6-4b5b-b1df-bdd514d27bb2"
},
"uco-action:object": [
{
"@id": "kb:provenancerecord-9326149a-31c5-4d20-ada3-b97743d3e563"
},
{
"@id": "kb:mobiledevice-803df237-bc7e-4e24-a5cb-8157063014b4"
}
],
"uco-action:result": [
{
"@id": "kb:provenance-record-e64b7aed-cecb-4291-81d4-4adb5b8020b2"
},
{
"@id": "kb:forensicimage-f3fd304e-ef6c-4cbd-94cb-425880f82748"
}
]
},
{
"@id": "kb:provenancerecord-9326149a-31c5-4d20-ada3-b97743d3e563",
"@type": "case-investigation:ProvenanceRecord",
"uco-core:object": [
{
"@id": "kb:mobiledevice-803df237-bc7e-4e24-a5cb-8157063014b4"
},
{
"@id": "kb:operating-system-cbba474a-d58c-4715-a7fa-5854d811021d"
},
{
"@id": "kb:relationship-aca6d788-12e4-45d1-8f00-06a63579309d"
}
]
}
]
{% endhighlight %}
<p>The role of investigator should be linked to an entity, such as a person and/or organization. This is not represented in the current Cellebrite XML report, and is represented here using CASE.</p>
{% highlight json %}
[
{
"@id": "kb:identity-0108480e-1e7a-4341-8b1d-558877c4cc39",
"@type": "uco-identity:Identity",
"uco-core:hasFacet": [
{
"@id": "kb:simple-name-facet-6b38c545-8822-4743-82ce-569367b7f7da",
"@type": "uco-identity:SimpleNameFacet",
"uco-identity:givenName": "Eoghan",
"uco-identity:familyName": "Casey"
}
]
},
{
"@id": "kb:investigator-10b3d2da-e801-4afe-b70a-61f16a75e68b",
"@type": "uco-role:Role",
"uco-core:name": "Investigator"
},
{
"@id": "kb:investigatorrole-e9a01d66-fff4-4fa8-88d4-8e445f3369aa",
"@type": "uco-core:Relationship",
"uco-core:source": {
"@id": "kb:identity-0108480e-1e7a-4341-8b1d-558877c4cc39"
},
"uco-core:target": {
"@id": "kb:investigator-10b3d2da-e801-4afe-b70a-61f16a75e68b"
},
"uco-core:kindOfRelationship": "Has_Role",
"uco-core:isDirectional": true
}
]
{% endhighlight %}
<h3>EVIDENCE INTEGRITY</h3>
<p>The integrity of digital evidence is verified by comparing the hash value(s) of the working copy with the documented hash value(s) computed when the data was originally extracted. In this investigation, the original integrity information was documented using a secure blockchain-based electronic chain of custody ledger.</p>
<p>NOTE: Cellebrite XML does not include hash of original data (values obtained using Autopsy)</p>
<h4>CASE Representation of Integrity Details</h4>
{% highlight json %}
[
{
"@id": "kb:provenance-record-e64b7aed-cecb-4291-81d4-4adb5b8020b2",
"@type": "case-investigation:ProvenanceRecord",
"uco-core:description": "Forensic duplicate of mobile device used by Ares Lupin",
"case-investigation:exhibitNumber": "20181211001-002",
"uco-core:object": {
"@id": "kb:forensicimage-f3fd304e-ef6c-4cbd-94cb-425880f82748"
}
},
{
"@id": "kb:forensicimage-f3fd304e-ef6c-4cbd-94cb-425880f82748",
"@type": [
"uco-observable:File",
"uco-observable:Image"
],
"uco-core:hasFacet": [
{
"@id": "kb:file-facet-b6a8b437-7767-49f6-96e0-62805ddc7396",
"@type": "uco-observable:FileFacet",
"uco-observable:observableCreatedTime": {
"@type": "xsd:dateTime",
"@value": "2018-12-11T08:49:00.00Z"
},
"uco-observable:extension": "bin",
"uco-observable:fileName": "LGE Nexus 5 Full Image.raw",
"uco-observable:fileSystemType": "NTFS",
"uco-observable:filePath": "E:\\Evidence\\UFED Samsung GSM SM-G925F Galaxy S6 Edge 2018_12_11 (002)\\Physical Boot Loader (Recommended) 01\\blk0_sda.bin",
"uco-observable:isDirectory": false,
"uco-observable:sizeInBytes": 31989956608
},
{
"@id": "kb:content-data-facet-b882bbcd-276f-4604-808b-3b678998b90a",
"@type": "uco-observable:ContentDataFacet",
"uco-observable:hash": [
{
"@id": "kb:hash-c92fc112-d6d0-512c-964f-92d907dd645e",
"@type": "uco-types:Hash",
"uco-types:hashMethod": "MD5",
"uco-types:hashValue": {
"@type": "xsd:hexBinary",
"@value": "569D5663179237798264E2669281DCD7"
}
},
{
"@id": "kb:hash-1a37ec6e-565a-5393-92c9-42fff2d7361a",
"@type": "uco-types:Hash",
"uco-types:hashMethod": "SHA1",
"uco-types:hashValue": {
"@type": "xsd:hexBinary",
"@value": "F46EE05CE1A2210501EA512ED9E4C7EC59222CCA"
}
}
]
}
]
}
]
{% endhighlight %}
<h3>ACQUIRED DEVICE PROPERTIES</h3>
<p>Cellebrite displays the following information about the forensic extraction.</p>
<figure style="text-align:center;">
<img src="https://files.caseontology.org/casework.github.io/examples/crossover_wmd/extraction-20181211001-002.png" alt="Screenshot of Cellebrite extraction" />
<figcaption>"Screenshot of Cellebrite extraction"</figcaption>
</figure>
<h4>Cellebrite XML report representation of these Android Device properties.</h4>
{% highlight xml %}
<metadata section="Device Info">
<item id="ccfd82bd-e2ab-4f78-8b4c-dbf12e79049a" name="DeviceInfoOSVersion" sourceExtraction="0" systemtype="System.String"><![CDATA[6.0.1]]></item>
<item id="64f1202a-90ea-4513-8ce2-59b512f024e8" name="DeviceInfoDetectedPhoneVendor" sourceExtraction="0" systemtype="System.String"><![CDATA[samsung]]></item>
<item id="5acb61a1-86b9-42bc-9159-654fe884331e" name="DeviceInfoDetectedPhoneModel" sourceExtraction="0" systemtype="System.String"><![CDATA[SM-G925F]]></item>
<item id="8a17c10f-dfb3-470e-a7a4-92de56b93731" name="AndroidFingerprint" sourceExtraction="0" systemtype="System.String"><![CDATA[samsung/zeroltexx/zerolte:6.0.1/MMB29K/G925FXXU4DPIL:user/release-keys]]></item>
<item id="16b94ed0-09dd-459f-8d41-b595f4f4bccd" name="DeviceInfoAndroidID" sourceExtraction="0" systemtype="System.String"><![CDATA[64cce130286b31b3]]></item>
<item id="efb1cca7-66cc-48af-9de2-b8dc745da653" name="DeviceInfoBluetoothDeviceName" sourceExtraction="0" systemtype="System.String"><![CDATA[Galaxy S6 edge]]></item>
<item id="f479922d-ac32-4ed0-bc12-9f76ba846775" name="DeviceInfoBluetoothDeviceAddress" sourceExtraction="0" systemtype="System.String"><![CDATA[D8:C4:E9:7C:2E:F8]]></item>
<item id="f783f11d-9a8f-4ca5-885b-db6445202693" name="Adresse Mac" sourceExtraction="0" systemtype="System.String"><![CDATA[AC:5F:3E:73:E3:78]]></item>
<item id="4508c37f-abd2-42ee-a881-fea59182049b" name="ICCID" sourceExtraction="0" systemtype="System.String"><![CDATA[8931088918010550289]]></item>
<item id="a7e57ad3-a8e4-4280-ad1d-43c7e86241b3" name="Hotspot password required" group="Fonction modem" sourceExtraction="0" systemtype="System.String"><![CDATA[qphl8058]]></item>
<item id="bc9f46f2-d2f7-40ab-abb0-22cdb2440b7a" name="Heure de la dernière activation" group="Fonction modem" sourceExtraction="0" systemtype="System.String"><![CDATA[02.12.2018 11:59(UTC+0)]]></item>
<item id="57da5b4b-4d36-4046-b02b-3e198f68d399" name="Nom du point d'accès" group="Fonction modem" sourceExtraction="0" systemtype="System.String"><![CDATA[AndroidAP]]></item>
<item id="3d8b0b8f-5ba1-4f99-a997-5ef45af4ab74" name="Heure d'activation du téléphone" sourceExtraction="0" systemtype="System.String"><![CDATA[10.06.2018 14:31(UTC+0)]]></item>
<item id="d4ec458b-da45-47ee-9a71-6d8968b5c5a3" name="Adresse MAC Bluetooth" sourceExtraction="0" systemtype="System.String"><![CDATA[D8:C4:E9:7C:2E:F8]]></item>
<item id="07252566-1065-4b60-81f8-847d40dd998d" name="DeviceInfoFactoryNumber" sourceExtraction="0" systemtype="System.String"><![CDATA[RF8H31GS5SF]]></item>
<item id="e8da2ffc-262d-4896-b812-be0e905bd10d" name="DeviceInfoTimeZone" sourceExtraction="0" systemtype="System.String"><![CDATA[Europe/Rome]]></item>
<item id="56a05424-a7cc-4a62-9778-2a7b5eb0a91c" name="IMEI" sourceExtraction="0" systemtype="System.String"><![CDATA[356420075722843]]></item>
<item id="3c5f0bb8-9482-40a0-b475-342e80cb2451" name="DeviceInfoAutomaticTimeZone" sourceExtraction="0" systemtype="System.String"><![CDATA[False]]></item>
<item id="00b0fef6-a4a3-481c-9a44-143be89fccdb" name="DeviceInfoMockLocationsAllowed" sourceExtraction="0" systemtype="System.String"><![CDATA[False]]></item>
<item id="83c89388-7e6b-4da0-9672-9bef352dc86e" name="DeviceInfoAutomaticTime" sourceExtraction="0" systemtype="System.String"><![CDATA[False]]></item>
<item id="9546d2e9-4d10-4446-82a7-5755a2536828" name="DeviceInfoLocationServicesEnabled" sourceExtraction="0" systemtype="System.String"><![CDATA[True]]></item>
<item id="c97c3457-5d50-4235-81c8-4caff1f83edd" name="IMSI" sourceExtraction="0" systemtype="System.String"><![CDATA[204080515881398]]></item>
<item id="4a6bb5fc-c443-49fb-ba45-053ff32d34fb" name="Advertising Id" sourceExtraction="0" systemtype="System.String"><![CDATA[48500120-c9c5-402e-a6bc-04e2f92ae259]]></item>
<item id="1170c281-900c-4c5c-9b27-1e19cf9297f1" name="DeviceInfoCurrentSimCountryIso" sourceExtraction="0" systemtype="System.String"><![CDATA[it]]></item>
<item id="40e15e48-cf10-49e9-89fa-be6f14bfdac3" name="DeviceInfoSimChangeOperation" sourceExtraction="0" systemtype="System.String"><![CDATA[3]]></item>
<item id="06a6c63e-ee37-4765-af92-720147985b56" name="ICCID" sourceExtraction="0" systemtype="System.String"><![CDATA[89390100002217635543]]></item>
<item id="8e8224bc-b2ca-4e33-8612-aab6ea918c02" name="DeviceInfoCurrentSimPhoneNumber" sourceExtraction="0" systemtype="System.String"><![CDATA[3662158453]]></item>
<item id="8a6d2085-870d-40ae-8313-2f8a26012f36" name="DeviceInfoCurrentSimOperator" sourceExtraction="0" systemtype="System.String"><![CDATA[22201]]></item>
<item id="3a9020ff-faa7-4d38-9beb-a4e334f17027" name="SIM Change Time" sourceExtraction="0" systemtype="System.String"><![CDATA[10.06.2018 14:35(UTC+0)]]></item>
<item id="917ac338-fc76-41be-b22c-c891b6c88697" name="DeviceInfoOSType" group="Metadata" sourceExtraction="0" systemtype="System.String"><![CDATA[Android]]></item>
</metadata>
{% endhighlight %}
<h4>CASE Representation of Android Device Properties</h4>
{% highlight json %}
[
{
"@id": "kb:mobiledevice-803df237-bc7e-4e24-a5cb-8157063014b4",
"@type": "uco-observable:MobileDevice",
"uco-core:hasFacet": [
{
"@id": "kb:device-facet-9e81040d-e62f-47d3-bcbb-c07bf0829afb",
"@type": "uco-observable:DeviceFacet",
"uco-observable:manufacturer": {
"@id": "kb:organization-fb6c05a0-b6be-4a10-ba62-0e7b1da4c0ec"
},
"uco-observable:model": "SM-G925F",
"uco-observable:serialNumber": "RF8H31GS5SF"
},
{
"@id": "kb:android-device-facet-bc0d3928-655c-4347-9b6b-c912972c8798",
"@type": "uco-observable:AndroidDeviceFacet",
"uco-observable:androidID": {
"@type": "xsd:hexBinary",
"@value": "64cce130286b31b3"
},
"uco-observable:androidFingerprint": "samsung/zeroltexx/zerolte:6.0.1/MMB29K/G925FXXU4DPIL"
},
{
"@id": "kb:mobile-device-facet-1a30ac69-04e1-4952-bedf-d4b25b7b1592",
"@type": "uco-observable:MobileDeviceFacet",
"uco-observable:bluetoothDeviceName": "Galaxy S6 edge",
"drafting:deviceActivationTime": "2018-06-10T14:31:30.00Z",
"drafting:locationsServicesEnabled": true,
"drafting:notProvided": [
{
"@id": "uco-observable:keypadUnlockCode"
},
{
"@id": "uco-observable:clockSetting"
},
{
"@id": "uco-observable:storageCapacityInBytes"
}
],
"uco-observable:IMEI": "356420075722843"
},
{
"@id": "kb:wifi-address-facet-047a5278-1e8a-4e38-b2f6-1b77894624b8",
"@type": "uco-observable:WifiAddressFacet",
"uco-observable:addressValue": "AC:5F:3E:73:E3:78"
},
{
"@id": "kb:bluetooth-address-facet-39287a41-e138-4550-a9b2-0382b231c845",
"@type": "uco-observable:BluetoothAddressFacet",
"uco-observable:addressValue": "D8:C4:E9:7C:2E:F8"
}
]
},
{
"@id": "kb:operating-system-cbba474a-d58c-4715-a7fa-5854d811021d",
"@type": [
"uco-observable:OperatingSystem",
"uco-observable:Software"
],
"uco-core:name": "Android",
"uco-core:hasFacet": [
{
"@id": "kb:operating-system-facet-b55d7244-720f-4fb8-a4d3-2a26d407a353",
"@type": "uco-observable:OperatingSystemFacet",
"uco-observable:advertisingID": "48500120-c9c5-402e-a6bc-04e2f92ae259"
},
{
"@id": "kb:software-facet-da02e9c9-b35b-42e7-bbc8-013b15e17803",
"@type": "uco-observable:SoftwareFacet",
"uco-observable:manufacturer": {
"@id": "kb:organization-fb6c05a0-b6be-4a10-ba62-0e7b1da4c0ec"
},
"uco-observable:version": "6.0.1"
}
]
},
{
"@id": "kb:relationship-aca6d788-12e4-45d1-8f00-06a63579309d",
"@type": "uco-observable:ObservableRelationship",
"uco-core:isDirectional": true,
"uco-core:kindOfRelationship": "Has_Operating_System",
"uco-core:source": {
"@id": "kb:mobiledevice-803df237-bc7e-4e24-a5cb-8157063014b4"
},
"uco-core:target": {
"@id": "kb:operating-system-cbba474a-d58c-4715-a7fa-5854d811021d"
}
},
{
"@id": "kb:organization-fb6c05a0-b6be-4a10-ba62-0e7b1da4c0ec",
"@type": "uco-identity:Organization",
"uco-core:name": "Samsung"
}
]
{% endhighlight %}
<h3>SIM CARDS</h3>
<p>Cellebrite XML provides a current SIM phone number of <samp>3662158453</samp> with an associated SIM ICCID of <samp>89390100002217635543</samp> and a "SIM Change Time" as a string <samp>"10.06.2018 14:35(UTC+0)"</samp>.</p>
<p>Forensic examination of the physical forensic copy using Autopsy finds the source of this information is the <samp>system/SimCard.dat</samp> file. The raw values obtained using Autopsy are listed here, including SIMChangeTime in UNIX timestamp format:</p>
<blockquote><samp>
CurrentSimSerialNumber=89390100002217635543<br />
CurrentSimPhoneNumber=3662158453<br />
SimChangeTime=1528641355649<br />
</samp></blockquote>
<p>In actuality, the current SIM card ICCID is <samp>8931088918010550289</samp>, as listed in the "<samp>siminfo</samp>" table of the <samp>data/com.android.providers.telephony/databases/telephony.db</samp> database. This SIM card has a different phone number than the one displayed by Cellebrite. The current SIM card was placed in the Samsung device on <samp>2018-11-16T12:34:28Z</samp>.</p>
{% highlight json %}
[
{
"@id": "kb:simcard1-relationship-af318ae5-b792-4297-b1c3-74e5bbd9b018",
"@type": "uco-observable:ObservableRelationship",
"uco-core:source": {
"@id": "kb:simcard-b0252511-4875-4e2e-a27f-d95c35d87c1f"
},
"uco-core:target": {
"@id": "kb:mobiledevice-803df237-bc7e-4e24-a5cb-8157063014b4"
},
"uco-core:kindOfRelationship": "Contained_Within",
"uco-core:startTime": {
"@type": "xsd:dateTime",
"@value": "2018-11-16T12:34:28Z"
},
"uco-core:endTime": null,
"uco-core:isDirectional": true
},
{
"@id": "kb:simcard3-relationship-dfba6daa-26fd-4a3e-9638-d85c32f17e2f",
"@type": "uco-observable:ObservableRelationship",
"uco-core:source": {
"@id": "kb:simcard-b0252511-4875-4e2e-a27f-d95c35d87c1f"
},
"uco-core:target": {
"@id": "kb:mobiledevice-803df237-bc7e-4e24-a5cb-8157063014b4"
},
"uco-core:kindOfRelationship": "Contained_Within",
"uco-core:startTime": {
"@type": "xsd:dateTime",
"@value": "2018-11-16T00:00:00.00Z"
},
"uco-core:endTime": {
"@type": "xsd:dateTime",
"@value": "2018-12-11T08:40:00.00Z"
},
"uco-core:isDirectional": true,
"uco-core:hasFacet": [
{
"@id": "kb:confidence-facet-97f455f3-ae63-4e87-b135-8798be7cc537",
"@type": "uco-core:ConfidenceFacet",
"uco-core:confidence": {
"@type": "xsd:nonNegativeInteger",
"@value": "95"
}
}
]
}
]
{% endhighlight %}
<h4>CASE Representation of SIM Card properties</h4>
{% highlight json %}
[
{
"@id": "kb:simcard-b0252511-4875-4e2e-a27f-d95c35d87c1f",
"@type": "uco-observable:SIMCard",
"uco-core:hasFacet": [
{
"@id": "kb:sim-card-facet-778b424f-fbda-4ca0-9097-0f545388a7e7",
"@type": "uco-observable:SIMCardFacet",
"uco-observable:ICCID": "89390100002217635543",
"uco-observable:carrier": {
"@id": "kb:organization-telcom-italia-d10330bf-8e9e-45cd-bf1a-ec9c964c270d"
}
}
]
},
{
"@id": "kb:mobileaccount-85704962-fcaa-40dc-b8f0-f838de819ed7",
"@type": "uco-observable:MobileAccount",
"uco-core:hasFacet": [
{
"@id": "kb:account-facet-2ff9009c-69d9-4f96-8cdf-d282ecae4a24",
"@type": "uco-observable:AccountFacet",
"uco-observable:accountType": "Phone",
"uco-observable:isActive": false
},
{
"@id": "kb:mobile-account-facet-ee7a5fc7-5021-411c-8456-4d14846c95f8",
"@type": "uco-observable:MobileAccountFacet",
"uco-observable:MSISDN": "3662158453"
}
]
},
{
"@id": "kb:simcard-8c41852e-babb-4a00-a23e-262b4a21ee85",
"@type": "uco-observable:SIMCard",
"uco-core:hasFacet": [
{
"@id": "kb:sim-card-facet-7188a8a8-8793-4191-8ae6-744fae617294",
"@type": "uco-observable:SIMCardFacet",
"uco-observable:ICCID": "8935302143531284380",
"drafting:notProvided": [
{
"@id": "uco-observable:IMSI"
},
{
"@id": "uco-observable:carrier"
}
]
}
]
},
{
"@id": "kb:organization-4f0b398f-2bb9-457c-b52a-67fb9e0e339a",
"@type": "uco-identity:Organization",
"uco-core:name": "Lebara"
},
{
"@id": "kb:simcard-1c401020-c200-4b90-9128-adb3b5e0b6fb",
"@type": "uco-observable:SIMCard",
"uco-core:hasFacet": [
{
"@id": "kb:sim-card-facet-257de106-19ac-4c39-9332-90b7227f0129",
"@type": "uco-observable:SIMCardFacet",
"uco-observable:ICCID": "8931088918010550289",
"uco-observable:IMSI": "{mobileaccount3-uuid}",
"uco-observable:carrier": {
"@id": "kb:organization-4f0b398f-2bb9-457c-b52a-67fb9e0e339a"
}
}
]
},
{
"@id": "kb:mobileaccount-c27ec1f4-9adb-45e0-aedc-8cc9abe27172",
"@type": "uco-observable:MobileAccount",
"uco-core:hasFacet": [
{
"@id": "kb:account-facet-a1397192-d69e-427a-ba4a-b55afc4480f5",
"@type": "uco-observable:AccountFacet",
"uco-observable:accountType": "Phone",
"uco-observable:isActive": true
},
{
"@id": "kb:mobile-account-facet-7a486740-f680-4fe2-87e9-ab99a645ab89",
"@type": "uco-observable:MobileAccountFacet",
"uco-observable:MSISDN": "31647934784",
"uco-observable:IMSI": "204080515881398"
}
]
},
{
"@id": "kb:telephony-cd52c3b8-7759-40b7-ae10-dfc90a35f644",
"@type": "uco-observable:File",
"uco-core:hasFacet": [
{
"@id": "kb:file-facet-b6bc7e31-cb7b-49be-bdf9-74b4d5da2997",
"@type": "uco-observable:FileFacet",
"uco-observable:fileSystemType": "EXT3",
"uco-observable:extension": "db",
"uco-observable:fileName": "data/com.android.providers.telephony/databases/telephony.db",
"uco-observable:isDirectory": false
}
]
},
{
"@id": "kb:sim3-telephony-relationship-fa7fd470-e58c-4d35-858a-bcc3e04e822a",
"@type": "uco-observable:ObservableRelationship",
"uco-core:source": {
"@id": "kb:simcard-1c401020-c200-4b90-9128-adb3b5e0b6fb"
},
"uco-core:target": {
"@id": "kb:telephony-cd52c3b8-7759-40b7-ae10-dfc90a35f644"
},
"uco-core:kindOfRelationship": "Referenced_Within",
"uco-core:isDirectional": true,
"uco-core:hasFacet": [
{
"@id": "kb:data-range-facet-cfcf2117-d3db-4fc7-90bc-947ee497dbd1",
"@type": "uco-observable:DataRangeFacet",
"uco-observable:rangeOffset": 13751,
"uco-observable:rangeSize": null
},
{
"@id": "kb:table-relation-facet-859d7e32-9422-4d73-bbf2-7364da0c2fe9",
"@type": [
"drafting:TableRelationFacet",
"uco-core:Facet"
],
"drafting:name": "siminfo"
}
]
}
]
{% endhighlight %}
<p><b>Note:</b> Observe IMSI traces in "<samp>system/netpolicy.xml</samp>" file.</p>
<h3>VIRTUAL IDENTITIES</h3>
<p>The name and email address of the primary user of the device were obtained: Ares Lupin, aresthewerewolf@gmail.com, with a phone number +31647934784 associated with a WhatsApp account.</p>
<p><strong>Note:</strong>The file "<samp>system/users/0.xml</samp>" contains the name Jessie Pinkman which is a previous user of the phone, not the primary user in this case.</p>
<h4>Cellebrite XML</h4>
{% highlight xml %}
<model type="UserAccount" id="7b9ba63c-cc03-4a9d-bfbe-647616613df4" deleted_state="Intact" decoding_confidence="High" isrelated="False" extractionId="0" labels="2">
<field name="UserMapping" type="Boolean">
<value type="Boolean"><![CDATA[False]]></value>
</field>
<field name="Name" type="String">
<value type="String"><![CDATA[Ares Lupin]]></value>
</field>
<field name="Username" type="String">
<value type="String"><![CDATA[31647934784@s.whatsapp.net]]></value>
</field>
<field name="Password" type="String">
<empty />
</field>
<field name="ServiceType" type="String">
<value type="String"><![CDATA[WhatsApp]]></value>
</field>
<field name="ServerAddress" type="String">
<empty />
</field>
<multiModelField name="Photos" type="ContactPhoto" />
<multiModelField name="Entries" type="ContactEntry">
<model type="EmailAddress" id="f9b77e54-952d-46d7-811a-a353fb7e0248" deleted_state="Intact" decoding_confidence="High" isrelated="False" extractionId="0">
<field name="UserMapping" type="Boolean">
<value type="Boolean"><![CDATA[False]]></value>
</field>
<field name="Category" type="String">
<value type="String"><![CDATA[Google Drive Account]]></value>
</field>
<field name="Value" type="String">
<value type="String"><![CDATA[aresthewerewolf@gmail.com]]></value>
</field>
<field name="Domain" type="String">
<value type="String"><![CDATA[Courrier électronique]]></value>
</field>
</model>
{% endhighlight %}
<h4>CASE Representation of Users and Accounts</h4>
{% highlight json %}
[
{
"@id": "kb:primaryuser-1e96406f-d86c-47ee-a6ac-71a57e1c8f19",
"@type": "uco-identity:Identity",
"uco-core:hasFacet": [
{
"@id": "kb:simple-name-facet-abe8f440-874f-40fe-b48f-ecfdc18b8dc4",
"@type": "uco-identity:SimpleNameFacet",
"uco-identity:givenName": "Ares",
"uco-identity:familyName": "Lupin"
}
]
},
{
"@id": "kb:primaryuser-email-3c4d0804-6ed0-4dfe-a152-3dab6b5f9111",
"@type": "uco-core:Relationship",
"uco-core:source": {
"@id": "kb:primaryuser-1e96406f-d86c-47ee-a6ac-71a57e1c8f19"
},
"uco-core:target": {
"@id": "kb:emailaccount-99d72bac-8c21-11e9-8902-0c4de9c21b53"
},
"uco-core:kindOfRelationship": "Has_Account",
"uco-core:isDirectional": true
},
{
"@id": "kb:primaryuser-whatsapp-b295bc93-b65c-4670-a5d7-5c2206d78e92",
"@type": "uco-core:Relationship",
"uco-core:source": {
"@id": "kb:primaryuser-1e96406f-d86c-47ee-a6ac-71a57e1c8f19"
},
"uco-core:target": {
"@id": "kb:account-90652808-7341-40d3-9285-774d865ad3f9"
},
"uco-core:kindOfRelationship": "Has_Account",
"uco-core:isDirectional": true
},
{
"@id": "kb:emailaddress-ec940324-eb79-467a-825b-0f1136d2b6d3",
"@type": "uco-observable:EmailAddress",
"uco-core:hasFacet": [
{
"@id": "kb:email-address-facet-7ce6f940-5f1d-435f-9cf5-03db933d72d8",
"@type": "uco-observable:EmailAddressFacet",
"uco-observable:addressValue": "aresthewerewolf@gmail.com"
}
]
},
{
"@id": "kb:emailaccount-99d72bac-8c21-11e9-8902-0c4de9c21b53",
"@type": "uco-observable:EmailAccount",
"uco-core:hasFacet": [
{
"@id": "kb:email-account-facet-e0dd5970-71d8-4261-a43a-1d216b84680f",
"@type": "uco-observable:EmailAccountFacet",
"uco-observable:emailAddress": {
"@id": "kb:emailaddress-ec940324-eb79-467a-825b-0f1136d2b6d3"
}
}
]
},
{
"@id": "kb:phoneaccount-c1d3237a-6d7f-4e96-bbef-6eb4c0a621d1",
"@type": "uco-observable:PhoneAccount",
"uco-core:hasFacet": [
{
"@id": "kb:account-facet-cd215e9d-e16c-46e4-a969-77b7e3341174",
"@type": "uco-observable:AccountFacet",
"uco-observable:accountIssuer": {
"@id": "kb:organization-salt-42e95dc6-1326-4de8-93df-c399a3514ae9"
},
"uco-observable:isActive": true
},
{
"@id": "kb:phone-account-facet-a4492f65-3fe1-4a75-a821-676a175b25ab",
"@type": "uco-observable:PhoneAccountFacet",
"uco-observable:phoneNumber": "+31647934784",
"uco-core:name": ""
}
]
},
{
"@id": "kb:relationship-bf423267-3afe-4f4d-aa9f-d903eae55f99",
"@type": "uco-observable:ObservableRelationship",
"uco-core:source": {
"@id": "kb:account-90652808-7341-40d3-9285-774d865ad3f9"
},
"uco-core:target": {
"@id": "kb:phoneaccount-c1d3237a-6d7f-4e96-bbef-6eb4c0a621d1"
},
"uco-core:kindOfRelationship": "Associated_Account",
"uco-core:isDirectional": true
},
{
"@id": "kb:organization-lebara-3ca7cf13-7d8b-4665-97b9-2c48fdb94ac5",
"@type": "uco-identity:Organization",
"uco-core:name": "Lebara"
},
{
"@id": "kb:organization-reddit-d5be6c8f-17ed-43fe-bc03-a5f79132f256",
"@type": "uco-identity:Organization",
"uco-core:name": "Reddit"
},
{
"@id": "kb:organization-salt-42e95dc6-1326-4de8-93df-c399a3514ae9",
"@type": "uco-identity:Organization",
"uco-core:name": "Salt"
},
{
"@id": "kb:organization-telcom-italia-d10330bf-8e9e-45cd-bf1a-ec9c964c270d",
"@type": "uco-identity:Organization",
"uco-core:name": "Telcom Italia"
},
{
"@id": "kb:organization-whatsapp-7a3fb3d1-0b30-4305-8c9e-f8f90f839bf3",
"@type": "uco-identity:Organization",
"uco-core:name": "WhatsApp"
},
{
"@id": "kb:gmail-a1ce9965-ba9c-4fa1-9bfe-58c68ecaadc5",
"@type": [
"uco-observable:Application",
"uco-observable:Software"
],
"uco-core:hasFacet": {
"@id": "kb:application-facet-3ecd5cd2-d118-4b03-970f-e1196ad0a133",
"@type": "uco-observable:ApplicationFacet",
"drafting:appName": "GMail"
}
}
]
{% endhighlight %}
<p>In addition, a Reddit account was extracted from the Chrome Login Data database, and Cellebrite provides a converted timestamp as a known format.</p>