-
Notifications
You must be signed in to change notification settings - Fork 16
/
device.json
108 lines (108 loc) · 4.68 KB
/
device.json
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
{
"@context": {
"@vocab": "http://example.org/local#",
"kb": "http://example.org/kb/",
"acme": "http://custompb.acme.org/core#",
"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/",
"xsd": "http://www.w3.org/2001/XMLSchema#"
},
"@graph": [
{
"@id": "kb:organization-c240cf37-0556-439b-9a51-1ca41732010d",
"@type": "uco-identity:Organization",
"uco-core:name": "Dell"
},
{
"@id": "kb:organization-cc0e0667-eadf-4b2e-9618-3f62b1bdae26",
"@type": "uco-identity:Organization",
"uco-core:name": "Microsoft"
},
{
"@id": "kb:forensic_lab_computer-a730c324-49e6-4b12-869e-6addd946545d",
"@type": "uco-observable:Device",
"location": {
"@id": "kb:forensic_lab-2514fffb-affc-43be-a3bb-be1dd606eff0"
},
"uco-core:hasFacet": [
{
"@id": "kb:device-facet-9355901e-5dca-48b1-b463-7a239e25ee39",
"@type": "uco-observable:DeviceFacet",
"uco-observable:deviceType": "Computer",
"uco-observable:manufacturer": {
"@id": "kb:organization-c240cf37-0556-439b-9a51-1ca41732010d"
},
"uco-observable:model": "Inspiron 5000",
"uco-observable:serialNumber": "D1234567"
},
{
"@id": "kb:computer-specification-facet-d02adab1-cbaa-4ec5-b98c-4fe128e7281f",
"@type": "uco-observable:ComputerSpecificationFacet",
"uco-observable:biosVersion": "E1762IMS.10M",
"uco-observable:cpuFamily": "Intel Pentium i7",
"uco-observable:totalRam": 4294967296
},
{
"@id": "kb:domain-name-facet-fd503093-f17c-435f-b9ca-05ab97201b22",
"@type": "uco-observable:DomainNameFacet",
"uco-observable:value": "dfl.local",
"uco-observable:isTLD": false
},
{
"@id": "kb:ipv4-address-facet-55d9ed1a-3016-445d-96dc-e4919a43f33d",
"@type": "uco-observable:IPv4AddressFacet",
"uco-observable:addressValue": "192.168.1.145"
},
{
"@id": "kb:acme-inventory-computer-facet-f34d5828-7f40-44b2-8531-6ce3a8d34467",
"@type": [
"acme:InventoryComputerFacet",
"uco-core:Facet"
],
"acme:name": "DFL-03",
"acme:inventoryNumber": "10503"
}
]
},
{
"@id": "kb:operating-system-6c71847e-0569-48c4-9587-772e18c45d9f",
"@type": [
"uco-observable:OperatingSystem",
"uco-observable:Software"
],
"uco-core:name": "Windows 7 Ultimate Edition",
"uco-core:hasFacet": [
{
"@id": "kb:operating-system-facet-2ebffd0a-4d07-4313-8be2-cca326cbd547",
"@type": "uco-observable:OperatingSystemFacet",
"uco-observable:installDate": {
"@type": "xsd:dateTime",
"@value": "2019-07-10T16:33:42Z"
}
},
{
"@id": "kb:software-facet-bb00a67a-4f64-4275-a818-01192b0934bf",
"@type": "uco-observable:SoftwareFacet",
"uco-observable:manufacturer": {
"@id": "kb:organization-cc0e0667-eadf-4b2e-9618-3f62b1bdae26"
},
"uco-observable:version": "6.1.7601 Service Pack 1 Build 7601"
}
]
},
{
"@id": "kb:relationship-b96f493a-806b-4914-b522-5f8c4456da3b",
"@type": "uco-observable:ObservableRelationship",
"uco-core:isDirectional": true,
"uco-core:kindOfRelationship": "Has_Operating_System",
"uco-core:source": {
"@id": "kb:forensic_lab_computer-a730c324-49e6-4b12-869e-6addd946545d"
},
"uco-core:target": {
"@id": "kb:operating-system-6c71847e-0569-48c4-9587-772e18c45d9f"
}
}
]
}