-
Notifications
You must be signed in to change notification settings - Fork 0
/
mekanoid.ttl
1087 lines (809 loc) · 40.6 KB
/
mekanoid.ttl
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
@prefix : <https://schema.mekanoid.io/mekanoid.ttl#> .
@prefix d3f: <http://d3fend.mitre.org/ontologies/d3fend.owl#> .
@prefix d3fm: <https://schema.mekanoid.io/d3fend-mknd.ttl#> .
@prefix mknd: <https://schema.mekanoid.io/mekanoid.ttl#> .
@prefix sh: <http://www.w3.org/ns/shacl#> .
@prefix dct: <http://purl.org/dc/terms/> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix xml: <http://www.w3.org/XML/1998/namespace> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix skos: <http://www.w3.org/2004/02/skos/core#> .
@prefix stix: <http://purl.org/cyber/stix#> .
@prefix time: <http://www.w3.org/2006/time#> .
<https://schema.mekanoid.io/mekanoid.ttl#>
a owl:Ontology ;
owl:imports d3f:, d3fm: ;
dct:created "2022-04-02"^^xsd:date ;
dct:creator <mailto:[email protected]> ;
dct:license "MIT" ;
dct:modified "2023-10-09" ;
dct:title "Mekanoid Ontology for Cybersecurity Automation" .
#################################################################
# Annotation properties
#################################################################
### http://purl.org/dc/terms/created
dct:created rdf:type owl:AnnotationProperty .
### http://purl.org/dc/terms/creator
dct:creator rdf:type owl:AnnotationProperty .
### http://purl.org/dc/terms/modified
dct:modified rdf:type owl:AnnotationProperty .
### http://purl.org/dc/terms/title
dct:title rdf:type owl:AnnotationProperty .
### http://www.w3.org/2004/02/skos/core#altLabel
skos:altLabel rdf:type owl:AnnotationProperty .
### http://www.w3.org/2004/02/skos/core#definition
skos:definition rdf:type owl:AnnotationProperty .
### http://www.w3.org/2004/02/skos/core#example
skos:example rdf:type owl:AnnotationProperty .
### http://www.w3.org/ns/shacl#datatype
sh:datatype rdf:type owl:AnnotationProperty .
### http://www.w3.org/ns/shacl#maxCount
sh:maxCount rdf:type owl:AnnotationProperty .
### http://www.w3.org/ns/shacl#nodeKind
sh:nodeKind rdf:type owl:AnnotationProperty .
### http://www.w3.org/ns/shacl#path
sh:path rdf:type owl:AnnotationProperty .
### http://www.w3.org/ns/shacl#property
sh:property rdf:type owl:AnnotationProperty .
### http://www.w3.org/ns/shacl#targetClass
sh:targetClass rdf:type owl:AnnotationProperty .
### https://schema.mekanoid.io/mekanoid.ttl#context
:context rdf:type owl:AnnotationProperty ;
rdfs:label "context"@en ;
rdfs:subPropertyOf rdfs:comment ;
rdfs:range xsd:anyURI ,
xsd:longString .
### https://schema.mekanoid.io/mekanoid.ttl#cpe
:cpe rdf:type owl:AnnotationProperty ;
rdfs:label "has CPE" ;
skos:example "cpe:2.3:a:apple:icloud:1.0:*:*:*:*:macos:*:*" ;
rdfs:range xsd:string ;
rdfs:domain d3f:Software .
#################################################################
# Datatypes
#################################################################
### http://www.w3.org/2001/XMLSchema#date
xsd:date rdf:type rdfs:Datatype .
#################################################################
# Object Properties
#################################################################
### https://schema.mekanoid.io/mekanoid.ttl#indicatedBy
:indicatedBy rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf :mayBeIndicatedBy ;
owl:inverseOf :indicates ;
rdfs:label "indicated by"@en .
### https://schema.mekanoid.io/mekanoid.ttl#indicates
:indicates rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf :mayIndicate ;
rdfs:label "indicates"@en .
### https://schema.mekanoid.io/mekanoid.ttl#mayBeIndicatedBy
:mayBeIndicatedBy rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf :mekanoid-object-property ;
owl:inverseOf :mayIndicate ;
rdfs:label "may be indicated by"@en .
### https://schema.mekanoid.io/mekanoid.ttl#mayIndicate
:mayIndicate rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf :mekanoid-object-property ;
rdfs:label "may indicate"@en .
### https://schema.mekanoid.io/mekanoid.ttl#mekanoid-object-property
:mekanoid-object-property rdf:type owl:ObjectProperty ,
owl:SymmetricProperty ;
rdfs:comment "Mekanoid object property"@en ;
rdfs:label "has relationship"@en .
#################################################################
# Data properties
#################################################################
### http://d3fend.mitre.org/ontologies/d3fend.owl#version
d3f:version rdfs:subPropertyOf mknd:vulnProperty .
### http://d3fend.mitre.org/ontologies/d3fend.owl#identifier
d3f:identifier owl:equivalentProperty mknd:external-id ;
rdfs:subPropertyOf mknd:vendorProperty .
### http://www.w3.org/2006/time#day
time:day rdf:type owl:DatatypeProperty ;
rdfs:subPropertyOf :timeProperty .
### http://www.w3.org/2006/time#dayOfYear
time:dayOfYear rdf:type owl:DatatypeProperty ;
rdfs:subPropertyOf :timeProperty .
### http://www.w3.org/2006/time#days
time:days rdf:type owl:DatatypeProperty ;
rdfs:subPropertyOf :timeProperty .
### http://www.w3.org/2006/time#hasXSDDuration
time:hasXSDDuration rdf:type owl:DatatypeProperty ;
rdfs:subPropertyOf :timeProperty .
### http://www.w3.org/2006/time#hour
time:hour rdf:type owl:DatatypeProperty ;
rdfs:subPropertyOf :timeProperty .
### http://www.w3.org/2006/time#hours
time:hours rdf:type owl:DatatypeProperty ;
rdfs:subPropertyOf :timeProperty .
### http://www.w3.org/2006/time#inXSDDate
time:inXSDDate rdf:type owl:DatatypeProperty ;
rdfs:subPropertyOf :timeProperty .
### http://www.w3.org/2006/time#inXSDDateTime
time:inXSDDateTime rdf:type owl:DatatypeProperty ;
rdfs:subPropertyOf :timeProperty .
### http://www.w3.org/2006/time#inXSDDateTimeStamp
time:inXSDDateTimeStamp rdf:type owl:DatatypeProperty ;
owl:equivalentProperty :dateTime ;
rdfs:subPropertyOf :timeProperty .
### http://www.w3.org/2006/time#inXSDgYear
time:inXSDgYear rdf:type owl:DatatypeProperty ;
rdfs:subPropertyOf :timeProperty .
### http://www.w3.org/2006/time#inXSDgYearMonth
time:inXSDgYearMonth rdf:type owl:DatatypeProperty ;
rdfs:subPropertyOf :timeProperty .
### http://www.w3.org/2006/time#minute
time:minute rdf:type owl:DatatypeProperty ;
rdfs:subPropertyOf :timeProperty .
### http://www.w3.org/2006/time#minutes
time:minutes rdf:type owl:DatatypeProperty ;
rdfs:subPropertyOf :timeProperty .
### http://www.w3.org/2006/time#month
time:month rdf:type owl:DatatypeProperty ;
rdfs:subPropertyOf :timeProperty .
### http://www.w3.org/2006/time#months
time:months rdf:type owl:DatatypeProperty ;
rdfs:subPropertyOf :timeProperty .
### http://www.w3.org/2006/time#nominalPosition
time:nominalPosition rdf:type owl:DatatypeProperty ;
rdfs:subPropertyOf :timeProperty .
### http://www.w3.org/2006/time#numericDuration
time:numericDuration rdf:type owl:DatatypeProperty ;
rdfs:subPropertyOf :timeProperty .
### http://www.w3.org/2006/time#numericPosition
time:numericPosition rdf:type owl:DatatypeProperty ;
owl:equivalentProperty :dateTimeEpoch ;
rdfs:subPropertyOf :timeProperty .
### http://www.w3.org/2006/time#second
time:second rdf:type owl:DatatypeProperty ;
rdfs:subPropertyOf :timeProperty .
### http://www.w3.org/2006/time#seconds
time:seconds rdf:type owl:DatatypeProperty ;
rdfs:subPropertyOf :timeProperty .
### http://www.w3.org/2006/time#week
time:week rdf:type owl:DatatypeProperty ;
rdfs:subPropertyOf :timeProperty .
### http://www.w3.org/2006/time#weeks
time:weeks rdf:type owl:DatatypeProperty ;
rdfs:subPropertyOf :timeProperty .
### http://www.w3.org/2006/time#xsdDateTime
time:xsdDateTime rdf:type owl:DatatypeProperty ;
rdfs:subPropertyOf :timeProperty .
### http://www.w3.org/2006/time#year
time:year rdf:type owl:DatatypeProperty ;
rdfs:subPropertyOf :timeProperty .
### http://www.w3.org/2006/time#years
time:years rdf:type owl:DatatypeProperty ;
rdfs:subPropertyOf :timeProperty .
### https://schema.mekanoid.io/mekanoid.ttl#attackComplexity
:attackComplexity rdf:type owl:DatatypeProperty ;
rdfs:subPropertyOf :vulnProperty ;
rdfs:label "attack complexity" .
### https://schema.mekanoid.io/mekanoid.ttl#attackVector
:attackVector rdf:type owl:DatatypeProperty ;
rdfs:subPropertyOf :vulnProperty ;
rdfs:label "attack vector" .
### https://schema.mekanoid.io/mekanoid.ttl#availabilityImpact
:availabilityImpact rdf:type owl:DatatypeProperty ;
rdfs:subPropertyOf :vulnProperty ;
rdfs:label "availability impact" .
### https://schema.mekanoid.io/mekanoid.ttl#baseScore
:baseScore rdf:type owl:DatatypeProperty ;
rdfs:subPropertyOf :vulnProperty ;
rdfs:label "base score" .
### https://schema.mekanoid.io/mekanoid.ttl#baseSeverity
:baseSeverity rdf:type owl:DatatypeProperty ;
rdfs:subPropertyOf :vulnProperty ;
rdfs:label "base severity" .
### https://schema.mekanoid.io/mekanoid.ttl#confidentialityImpact
:confidentialityImpact rdf:type owl:DatatypeProperty ;
rdfs:subPropertyOf :vulnProperty ;
rdfs:label "confidentiality impact" .
### https://schema.mekanoid.io/mekanoid.ttl#dataProperty
:dataProperty rdf:type owl:DatatypeProperty ;
rdfs:comment "Mekanoid Data Property"@en ;
rdfs:label "has property"@en .
### https://schema.mekanoid.io/mekanoid.ttl#dateTime
:dateTime rdf:type owl:DatatypeProperty ;
rdfs:subPropertyOf :dataProperty ;
rdfs:domain :MekaThing ;
rdfs:range xsd:dateTimeStamp ;
rdfs:label "has timestamp"@en ;
skos:definition "A date and time associated with the entity"@en ;
skos:example "2002-10-10T12:00:00-05:00" .
### https://schema.mekanoid.io/mekanoid.ttl#dateTimeEpoch
:dateTimeEpoch rdf:type owl:DatatypeProperty ;
rdfs:subPropertyOf :dataProperty ;
rdf:type owl:FunctionalProperty ;
rdfs:range xsd:long ;
rdfs:comment "A Unix epoch timestamp associated with the entity"@en ;
rdfs:label "has epoch"@en ;
skos:definition "A Unix epoch timestamp associated with the entity"@en ;
skos:example "990577200"^^xsd:long .
### https://schema.mekanoid.io/mekanoid.ttl#extCategory
:extCategory rdf:type owl:DatatypeProperty ;
rdfs:subPropertyOf :vendorProperty ;
rdfs:label "Category" .
### https://schema.mekanoid.io/mekanoid.ttl#extClassification
:extClassification rdf:type owl:DatatypeProperty ;
rdfs:subPropertyOf :vendorProperty ;
rdfs:comment "An external classification that may apply to the artifact. Typically provided by a 3rd party vendor."@en ;
rdfs:label "Classification"@en .
### https://schema.mekanoid.io/mekanoid.ttl#extPriority
:extPriority rdf:type owl:DatatypeProperty ;
rdfs:subPropertyOf :extClassification ;
rdfs:comment "Priority as defined by the 3rd party vendor responsible for creating the Artifact."@en ;
rdfs:label "Priority"@en .
### https://schema.mekanoid.io/mekanoid.ttl#extRisk
:extRisk rdf:type owl:DatatypeProperty ;
rdfs:subPropertyOf :extClassification ;
rdfs:comment "Risk as defined by the 3rd party vendor responsible for creating the Artifact."@en ;
rdfs:label "Risk"@en .
### https://schema.mekanoid.io/mekanoid.ttl#extSeverity
:extSeverity rdf:type owl:DatatypeProperty ;
rdfs:subPropertyOf :extClassification ;
rdfs:comment "Severity as defined by the 3rd party vendor responsible for creating the Artifact."@en ;
rdfs:label "Severity"@en .
### https://schema.mekanoid.io/mekanoid.ttl#extStatus
:extStatus rdf:type owl:DatatypeProperty ;
rdfs:subPropertyOf :vendorProperty ;
rdfs:comment "Status of the Artifact as defined by the 3rd party vendor software responsible for generating it."@en ;
rdfs:label "Status"@en .
### https://schema.mekanoid.io/mekanoid.ttl#extThreat
:extThreat rdf:type owl:DatatypeProperty ;
rdfs:subPropertyOf :extClassification ;
rdfs:comment "Threat Level as defined by the 3rd party vendor responcible for creating the Artifact."@en ;
rdfs:label "Threat Level"@en .
### https://schema.mekanoid.io/mekanoid.ttl#extType
:extType rdf:type owl:DatatypeProperty ;
rdfs:subPropertyOf :vendorProperty ;
rdfs:label "Type" .
### https://schema.mekanoid.io/mekanoid.ttl#extUrgency
:extUrgency rdf:type owl:DatatypeProperty ;
rdfs:subPropertyOf :extClassification ;
rdfs:comment "Urgency as defined by the 3rd party vendor responsible for generating the Artifact."@en ;
rdfs:label "Urgency"@en .
### https://schema.mekanoid.io/mekanoid.ttl#external-id
:external-id rdf:type owl:DatatypeProperty ;
rdfs:subPropertyOf :vendorProperty ;
rdfs:domain d3f:Host ,
d3f:UserAccount ;
rdfs:label "External ID"@en .
### https://schema.mekanoid.io/mekanoid.ttl#firstSeen
:firstSeen rdf:type owl:DatatypeProperty ;
rdfs:subPropertyOf :timeSeen ;
rdfs:comment "The first time the enity had been observed by the application."@en ;
rdfs:label "first seen"@en .
### https://schema.mekanoid.io/mekanoid.ttl#firstSeenEpoch
:firstSeenEpoch rdf:type owl:DatatypeProperty ;
rdfs:subPropertyOf :dateTimeEpoch ;
rdfs:label "first seen"@en .
### https://schema.mekanoid.io/mekanoid.ttl#hasURL
:hasURL rdf:type owl:DatatypeProperty ;
rdfs:subPropertyOf :dataProperty ;
rdfs:domain d3f:File ,
:Report ;
rdfs:range xsd:anyURI ;
rdfs:label "has URL"@en .
### https://schema.mekanoid.io/mekanoid.ttl#integrityImpact
:integrityImpact rdf:type owl:DatatypeProperty ;
rdfs:subPropertyOf :vulnProperty ;
rdfs:label "integrity impact" .
### https://schema.mekanoid.io/mekanoid.ttl#lastAccessedEpoch
:lastAccessedEpoch rdf:type owl:DatatypeProperty ;
rdfs:subPropertyOf :dateTimeEpoch ;
rdfs:label "last accessed"@en .
### https://schema.mekanoid.io/mekanoid.ttl#lastSeen
:lastSeen rdf:type owl:DatatypeProperty ;
rdfs:subPropertyOf :timeSeen ;
rdfs:comment "The last time the entity had been observed by the application."@en ;
rdfs:label "last seen"@en .
### https://schema.mekanoid.io/mekanoid.ttl#lastSeenEpoch
:lastSeenEpoch rdf:type owl:DatatypeProperty ;
rdfs:subPropertyOf :dateTimeEpoch ;
rdfs:label "last seen"@en .
### https://schema.mekanoid.io/mekanoid.ttl#lastStatusChangeEpoch
:lastStatusChangeEpoch rdf:type owl:DatatypeProperty ;
rdfs:subPropertyOf :dateTimeEpoch ;
rdfs:label "last status change"@en .
### https://schema.mekanoid.io/mekanoid.ttl#lastUpdatedEpoch
:lastUpdatedEpoch rdf:type owl:DatatypeProperty ;
rdfs:subPropertyOf :dateTimeEpoch ;
rdfs:label "last modified"@en .
### https://schema.mekanoid.io/mekanoid.ttl#privilegesRequired
:privilegesRequired rdf:type owl:DatatypeProperty ;
rdfs:subPropertyOf :vulnProperty ;
rdfs:label "privileges required" .
### https://schema.mekanoid.io/mekanoid.ttl#reference
:reference rdf:type owl:DatatypeProperty ;
rdfs:subPropertyOf :hasURL ;
rdfs:range xsd:anyURI ;
rdfs:label "has reference" .
### https://schema.mekanoid.io/mekanoid.ttl#scope
:scope rdf:type owl:DatatypeProperty ;
rdfs:subPropertyOf :vulnProperty .
### https://schema.mekanoid.io/mekanoid.ttl#size
:size rdf:type owl:DatatypeProperty ;
rdfs:subPropertyOf :dataProperty ;
rdf:type owl:FunctionalProperty ;
rdfs:domain d3f:File ;
rdfs:range xsd:byte ;
rdfs:label "has size"@en .
### https://schema.mekanoid.io/mekanoid.ttl#stringValue
:stringValue rdf:type owl:DatatypeProperty ;
rdfs:subPropertyOf :dataProperty ;
rdfs:domain :Observable ;
rdfs:range xsd:string ;
rdfs:comment "the object is represented by the following string value"@en ;
rdfs:label "is"@en .
### https://schema.mekanoid.io/mekanoid.ttl#timeCreated
:timeCreated rdf:type owl:DatatypeProperty ;
rdfs:subPropertyOf :dateTime ;
rdfs:comment "Time when the entity had been created at the point of origin."@en ;
rdfs:label "created at"@en .
### https://schema.mekanoid.io/mekanoid.ttl#timeCreatedEpoch
:timeCreatedEpoch rdf:type owl:DatatypeProperty ;
rdfs:subPropertyOf :dateTimeEpoch ;
rdfs:comment "Time when the entity had been created at the point of origin."@en ;
rdfs:label "created at"@en .
### https://schema.mekanoid.io/mekanoid.ttl#timeProperty
:timeProperty rdf:type owl:DatatypeProperty ;
rdfs:label "time property"@en ;
:context "Grouped here from time ontology: https://www.w3.org/2006/time"@en .
### https://schema.mekanoid.io/mekanoid.ttl#timeSeen
:timeSeen rdf:type owl:DatatypeProperty ;
rdfs:subPropertyOf :dateTime ;
rdfs:comment "A timestamp associated with a point in time when the entity had been observed by the application in some way."@en ;
rdfs:label "seen at"@en .
### https://schema.mekanoid.io/mekanoid.ttl#userInteraction
:userInteraction rdf:type owl:DatatypeProperty ;
rdfs:subPropertyOf :vulnProperty ;
rdfs:label "user interaction" .
### https://schema.mekanoid.io/mekanoid.ttl#value
:value rdf:type owl:DatatypeProperty ;
rdfs:subPropertyOf :dataProperty ;
rdf:type owl:FunctionalProperty ;
rdfs:domain d3f:Identifier ;
rdfs:comment "A value parameter to be passed to Tasks"@en ;
rdfs:label "has value"@en .
### https://schema.mekanoid.io/mekanoid.ttl#vectorString
:vectorString rdf:type owl:DatatypeProperty ;
rdfs:subPropertyOf :vulnProperty ;
rdfs:label "vector" .
### https://schema.mekanoid.io/mekanoid.ttl#vendorProperty
:vendorProperty rdf:type owl:DatatypeProperty ;
rdfs:subPropertyOf :dataProperty ;
rdfs:label "vendor property" .
### https://schema.mekanoid.io/mekanoid.ttl#vulnProperty
:vulnProperty rdf:type owl:DatatypeProperty ;
rdfs:subPropertyOf :dataProperty ;
rdfs:label "vulnerability property" .
### http://d3fend.mitre.org/ontologies/d3fend.owl#UserAction
d3f:UserAction owl:disjointWith :MachineAction .
### http://d3fend.mitre.org/ontologies/d3fend.owl#Vulnerability
d3f:Vulnerability rdfs:subClassOf [ rdf:type owl:Restriction ;
owl:onProperty d3f:may-be-contained-by ;
owl:someValuesFrom d3f:Software
] ;
:icon "vulnerability.svg"^^xsd:anyURI .
### http://d3fend.mitre.org/ontologies/d3fend.owl#URL
d3f:URL rdfs:subClassOf [ rdf:type owl:Restriction ;
owl:onProperty d3f:identifies ;
owl:someValuesFrom mknd:Malware
] .
### http://d3fend.mitre.org/ontologies/d3fend.owl#UserAccount
d3f:UserAccount rdfs:subClassOf [ rdf:type owl:Restriction ;
owl:onProperty d3f:uses ;
owl:someValuesFrom mknd:Username
] .
### http://d3fend.mitre.org/ontologies/d3fend.owl#UserAction
d3f:UserAction owl:disjointWith mknd:MachineAction .
### https://schema.mekanoid.io/mekanoid.ttl#ASN
:ASN rdf:type owl:Class ;
rdfs:subClassOf d3f:Identifier ,
:MekaThing ,
[ rdf:type owl:Restriction ;
owl:onProperty :id ;
owl:qualifiedCardinality "1"^^xsd:nonNegativeInteger ;
owl:onDataRange xsd:string
] ,
[ rdf:type owl:Restriction ;
owl:onProperty :value ;
owl:qualifiedCardinality "1"^^xsd:nonNegativeInteger ;
owl:onDataRange xsd:string
] ;
rdfs:comment "Autonomous System Number"@en ;
rdfs:label "ASN"@en .
### https://schema.mekanoid.io/mekanoid.ttl#ActionableItem
:ActionableItem rdf:type owl:Class ;
rdfs:subClassOf d3f:Record ,
:MekaThing ;
rdfs:comment "A foundational element for analyst workflows."@en ;
rdfs:label "Actionable Item"@en .
### https://schema.mekanoid.io/mekanoid.ttl#AppUser
:AppUser rdf:type owl:Class ;
rdfs:subClassOf :ApplicationUserAccount ,
:SystemObject ,
[ rdf:type owl:Restriction ;
owl:onProperty d3f:accessed-by ;
owl:someValuesFrom d3f:User
] ,
[ rdf:type owl:Restriction ;
owl:onProperty d3f:accesses ;
owl:someValuesFrom :Tenant
] ,
[ rdf:type owl:Restriction ;
owl:onProperty d3f:creates ;
owl:someValuesFrom :TaskPattern
] ,
[ rdf:type owl:Restriction ;
owl:onProperty d3f:executes ;
owl:someValuesFrom :ManualTaskRun
] ;
rdfs:comment "Mekanoid User Account" ;
rdfs:label "Mekanoid User Account" .
### https://schema.mekanoid.io/mekanoid.ttl#ApplicationUserAccount
:ApplicationUserAccount rdf:type owl:Class ;
rdfs:subClassOf d3f:UserAccount ;
rdfs:label "Application User Account" .
### https://schema.mekanoid.io/mekanoid.ttl#Control
:Control rdf:type owl:Class ;
rdfs:subClassOf :MekaThing .
### https://schema.mekanoid.io/mekanoid.ttl#Detection
:Detection rdf:type owl:Class ;
rdfs:subClassOf d3f:DigitalEvent ,
[ rdf:type owl:Restriction ;
owl:onProperty d3f:created-by ;
owl:someValuesFrom :DetectionRule
] ;
rdfs:label "Detection"@en ;
skos:altLabel "Alert"@en ,
"Signal"@en ;
:icon "signal.svg" .
### https://schema.mekanoid.io/mekanoid.ttl#DetectionRule
:DetectionRule rdf:type owl:Class ;
rdfs:subClassOf d3f:ApplicationRule ,
[ rdf:type owl:Restriction ;
owl:onProperty d3f:creates ;
owl:someValuesFrom :Detection
] ;
rdfs:label "Detection Rule"@en ;
:icon "rule.svg" .
### https://schema.mekanoid.io/mekanoid.ttl#EmailAddress
:EmailAddress rdf:type owl:Class ;
rdfs:subClassOf :Observable ;
rdfs:comment "An email address identifies an email box to which messages are delivered." ;
rdfs:label "Email Address" ;
:icon "email-address.svg" .
### https://schema.mekanoid.io/mekanoid.ttl#EmailSenderString
:EmailSenderString rdf:type owl:Class ;
rdfs:subClassOf :Observable ;
rdfs:comment "A string showing a combination of a name and the email address in angle brackets."@en ;
rdfs:label "Email Sender"@en ;
skos:example "Britney Greenman <[email protected]>" .
### https://schema.mekanoid.io/mekanoid.ttl#EmailSubjectString
:EmailSubjectString rdf:type owl:Class ;
rdfs:subClassOf :Observable ;
rdfs:label "Email Subject"@en ;
skos:example "Fwd: Fwd: Re: RE: RE: LOL" .
### https://schema.mekanoid.io/mekanoid.ttl#FileName
:FileName rdf:type owl:Class ;
rdfs:subClassOf :Observable ,
[ rdf:type owl:Restriction ;
owl:onProperty d3f:used-by ;
owl:someValuesFrom d3f:File
] ;
rdfs:label "File Name"@en .
### https://schema.mekanoid.io/mekanoid.ttl#Function
:Function rdf:type owl:Class ;
rdfs:subClassOf :MekaThing ,
[ rdf:type owl:Restriction ;
owl:onProperty d3f:enabled-by ;
owl:someValuesFrom d3f:ExecutableBinary
] ;
owl:equivalentClass d3f:Subroutine ;
rdfs:label "Function"@en ;
:context "https://posts.specterops.io/on-detection-tactical-to-function-810c14798f63"^^xsd:anyURI .
### https://schema.mekanoid.io/mekanoid.ttl#Hash
:Hash rdf:type owl:Class ;
rdfs:subClassOf d3f:Identifier ,
:MekaThing ,
[ rdf:type owl:Restriction ;
owl:onProperty d3f:associated-with ;
owl:someValuesFrom :Verdict
] ,
[ rdf:type owl:Restriction ;
owl:onProperty :value ;
owl:qualifiedCardinality "1"^^xsd:nonNegativeInteger ;
owl:onDataRange xsd:hexBinary
] ;
rdfs:comment "A hash is a grouping of characteristics unique to the result of applying a mathematical algorithm that maps data of arbitrary size to a bit string (the 'hash') and is a one-way function, that is, a function which is practically infeasible to invert. This is commonly used for integrity checking of data. [based on https://en.wikipedia.org/wiki/Cryptographic_hash_function]"@en ;
rdfs:label "Hash"@en ;
:icon "hash.svg" .
### https://schema.mekanoid.io/mekanoid.ttl#IOCRule
:IOCRule rdf:type owl:Class ;
rdfs:subClassOf :DetectionRule ;
rdfs:label "IOC" .
### https://schema.mekanoid.io/mekanoid.ttl#IPv4
:IPv4 rdf:type owl:Class ;
rdfs:subClassOf d3f:IPAddress ;
rdfs:label "IP Address v4"@en .
### https://schema.mekanoid.io/mekanoid.ttl#IPv6
:IPv6 rdf:type owl:Class ;
rdfs:subClassOf d3f:IPAddress ;
rdfs:label "IP Address v6"@en .
### https://schema.mekanoid.io/mekanoid.ttl#Incident
:Incident rdf:type owl:Class ;
rdfs:subClassOf :ActionableItem ;
rdfs:label "Incident"@en ;
skos:altLabel "Case"@en ;
:icon "case.svg" .
### https://schema.mekanoid.io/mekanoid.ttl#Integration
:Integration rdf:type owl:Class ;
rdfs:subClassOf :SystemObject ,
[ rdf:type owl:Restriction ;
owl:onProperty d3f:contains ;
owl:someValuesFrom :Task
] ,
[ rdf:type owl:Restriction ;
owl:onProperty d3f:enabled-by ;
owl:someValuesFrom :Connection
] .
### https://schema.mekanoid.io/mekanoid.ttl#MD5
:MD5 rdf:type owl:Class ;
rdfs:subClassOf :Hash ;
rdfs:comment "MD5 cryptographic hash value"@en ;
rdfs:label "MD5 Hash"@en .
### https://schema.mekanoid.io/mekanoid.ttl#MachineAction
:MachineAction rdf:type owl:Class ;
rdfs:subClassOf d3f:DigitalEvent ,
:MekaThing ;
rdfs:label "Machine Action" ;
owl:disjointWith d3f:UserAction ;
skos:definition "An action performed by an automapted process, script, or an application following a high level objective. May contain a single or miple Commands. Managing systems and application resources by interacting with API endpoints are examples of machine actions." .
### https://schema.mekanoid.io/mekanoid.ttl#Malware
:Malware rdf:type owl:Class ;
rdfs:subClassOf d3f:Software ,
:MekaThing ,
[ rdf:type owl:Restriction ;
owl:onProperty d3f:associated-with ;
owl:someValuesFrom d3f:DomainName
] ,
[ rdf:type owl:Restriction ;
owl:onProperty d3f:associated-with ;
owl:someValuesFrom d3f:IPAddress
] ,
[ rdf:type owl:Restriction ;
owl:onProperty d3f:identified-by ;
owl:someValuesFrom d3f:FileHash
] ,
[ rdf:type owl:Restriction ;
owl:onProperty d3f:identified-by ;
owl:someValuesFrom d3f:URL
] ,
[ rdf:type owl:Restriction ;
owl:onProperty d3f:identified-by ;
owl:someValuesFrom :Hash
] ,
[ rdf:type owl:Restriction ;
owl:onProperty :mayBeIndicatedBy ;
owl:someValuesFrom d3f:DomainName
] ,
[ rdf:type owl:Restriction ;
owl:onProperty :mayBeIndicatedBy ;
owl:someValuesFrom d3f:IPAddress
] ,
[ rdf:type owl:Restriction ;
owl:onProperty :mayBeIndicatedBy ;
owl:someValuesFrom :FileName
] ;
rdfs:label "Malicious Software" .
### https://schema.mekanoid.io/mekanoid.ttl#MekaThing
:MekaThing rdf:type owl:Class ;
rdfs:subClassOf [ rdf:type owl:Restriction ;
owl:onProperty :timeSeen ;
owl:someValuesFrom xsd:dateTimeStamp
] ,
[ rdf:type owl:Restriction ;
owl:onProperty :firstSeen ;
owl:maxQualifiedCardinality "1"^^xsd:nonNegativeInteger ;
owl:onDataRange xsd:dateTimeStamp
] ,
[ rdf:type owl:Restriction ;
owl:onProperty :firstSeenEpoch ;
owl:maxQualifiedCardinality "1"^^xsd:nonNegativeInteger ;
owl:onDataRange xsd:long
] ,
[ rdf:type owl:Restriction ;
owl:onProperty :lastSeen ;
owl:maxQualifiedCardinality "1"^^xsd:nonNegativeInteger ;
owl:onDataRange xsd:dateTimeStamp
] ,
[ rdf:type owl:Restriction ;
owl:onProperty :timeCreated ;
owl:maxQualifiedCardinality "1"^^xsd:nonNegativeInteger ;
owl:onDataRange xsd:dateTimeStamp
] ;
rdfs:label "Mekanoid Thing"@en ;
skos:altLabel "Mekanoid Ontology Item" .
### https://schema.mekanoid.io/mekanoid.ttl#Observable
:Observable rdf:type owl:Class ;
rdfs:subClassOf :MekaThing ,
[ rdf:type owl:Restriction ;
owl:onProperty :value ;
owl:qualifiedCardinality "1"^^xsd:nonNegativeInteger ;
owl:onDataRange xsd:string
] ;
rdfs:label "Observable"@en ;
skos:definition "A notable string value useful which may offer helpful hints to during cybersecurity investigations." ;
:icon "pin.svg" .
### https://schema.mekanoid.io/mekanoid.ttl#Operation
:Operation rdf:type owl:Class ;
rdfs:subClassOf :MekaThing ;
rdfs:label "Operation"@en ;
:context "https://posts.specterops.io/on-detection-tactical-to-function-810c14798f63"^^xsd:anyURI .
### https://schema.mekanoid.io/mekanoid.ttl#Path
:Path rdf:type owl:Class ;
rdfs:subClassOf :Observable ;
d3f:definition "A generic URI string pointing to location of a directory or file on one or multiple systems." .
### https://schema.mekanoid.io/mekanoid.ttl#Payload
:Payload rdf:type owl:Class ;
rdfs:subClassOf :MekaThing ;
rdfs:label "Payload"@en .
### https://schema.mekanoid.io/mekanoid.ttl#PrivateIPAddress
:PrivateIPAddress rdf:type owl:Class ;
rdfs:subClassOf d3f:IPAddress ;
rdfs:isDefinedBy "https://en.wikipedia.org/wiki/IP_address#Private_addresses"^^xsd:anyURI ;
rdfs:label "Private IP Address"@en ;
skos:example "10.0.0.1" ,
"192.168.0.1" ;
:icon "ip.svg" .
### https://schema.mekanoid.io/mekanoid.ttl#PublicIPAddress
:PublicIPAddress rdf:type owl:Class ;
rdfs:subClassOf d3f:IPAddress ;
rdfs:comment "A public IP address is a globally routable unicast IP address, meaning that the address is not an address reserved for use in private networks, such as those reserved by RFC 1918, or the various IPv6 address formats of local scope or site-local scope, for example for link-local addressing. Public IP addresses may be used for communication between hosts on the global Internet. In a home situation, a public IP address is the IP address assigned to the home's network by the ISP. In this case, it is also locally visible by logging into the router configuration."@en ;
rdfs:isDefinedBy "https://en.wikipedia.org/wiki/IP_address#Public_address"^^xsd:anyURI ;
rdfs:label "Public IP Address"@en ;
skos:example "4.2.2.1" ,
"8.8.8.8" .
### https://schema.mekanoid.io/mekanoid.ttl#Report
:Report rdf:type owl:Class ;
rdfs:subClassOf d3f:Record ,
:MekaThing ,
[ rdf:type owl:Restriction ;
owl:onProperty d3f:analyzes ;
owl:someValuesFrom d3f:DomainName
] ,
[ rdf:type owl:Restriction ;
owl:onProperty d3f:analyzes ;
owl:someValuesFrom d3f:FileHash
] ,
[ rdf:type owl:Restriction ;
owl:onProperty d3f:analyzes ;
owl:someValuesFrom d3f:IPAddress
] ,
[ rdf:type owl:Restriction ;
owl:onProperty d3f:analyzes ;
owl:someValuesFrom d3f:URL
] ,
[ rdf:type owl:Restriction ;
owl:onProperty d3f:analyzes ;
owl:someValuesFrom :EmailAddress
] ,
[ rdf:type owl:Restriction ;
owl:onProperty d3f:analyzes ;
owl:someValuesFrom :Hash
] ,
[ rdf:type owl:Restriction ;
owl:onProperty d3f:analyzes ;
owl:someValuesFrom :Socket
] ,
[ rdf:type owl:Restriction ;
owl:onProperty :external-id ;
owl:someValuesFrom xsd:string
] ,
[ rdf:type owl:Restriction ;
owl:onProperty :hasURL ;
owl:someValuesFrom xsd:anyURI
] ;
rdfs:label "Analysis Report"@en ;
skos:definition "A document containing the results of an assessment or analysis of an artifact." .
### https://schema.mekanoid.io/mekanoid.ttl#SHA1
:SHA1 rdf:type owl:Class ;
rdfs:subClassOf :Hash ;
rdfs:comment "SHA-1 cryptographic hash value"@en ;
rdfs:label "SHA-1 Hash"@en .
### https://schema.mekanoid.io/mekanoid.ttl#SHA256
:SHA256 rdf:type owl:Class ;
rdfs:subClassOf :Hash ;
rdfs:comment "SHA-256 cryptographic hash value"@en ;
rdfs:label "SHA-256 Hash"@en .
### https://schema.mekanoid.io/mekanoid.ttl#SHA512
:SHA512 rdf:type owl:Class ;
rdfs:subClassOf :Hash ;
rdfs:label "SHA-512 Hash"@en .
### https://schema.mekanoid.io/mekanoid.ttl#SecurityPolicy
:SecurityPolicy rdf:type owl:Class ;
rdfs:subClassOf d3f:ApplicationRule ,
:Control ;
rdfs:label "Security Policy" ;
:icon "cube.svg"^^xsd:anyURI .
### https://schema.mekanoid.io/mekanoid.ttl#Sigma
:Sigma rdf:type owl:Class ;
rdfs:subClassOf :DetectionRule ,
[ rdf:type owl:Restriction ;
owl:onProperty d3f:contained-by ;