-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathschema.tql
1964 lines (1610 loc) · 50.3 KB
/
schema.tql
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
#
# Copyright (C) 2022 OS-Threat
#
# Licensed to the Apache Software Foundation (ASF) under one
# or more contributor license agreements. See the NOTICE file
# distributed with this work for additional information
# regarding copyright ownership. The ASF licenses this file
# to you under the Apache License, Version 2.0 (the
# "License"); you may not use this file except in compliance
# with the License. You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing,
# software distributed under the License is distributed on an
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
# KIND, either express or implied. See the License for the
# specific language governing permissions and limitations
# under the License.
#
# Note: Large portions of this schema were originally defined by Tomas Sabat, Vaticle, 2021
#
define
stix-entity sub entity,
abstract;
stix-object sub stix-entity,
# Required
owns stix-type,
owns stix-id @key, #
owns custom-attribute,
plays stix-core-relationship:source,
plays stix-core-relationship:target,
plays obj-refs:referred,
plays granular-marking:object;
stix-core-object sub stix-object,
# Required for SDO but Optional for SCO
owns spec-version,
# Optional
plays data-marking:marked,
plays created-by:created,
# Common relations for SDOs and SCOs. Defined in 3.7.
plays derived:derived-from,
plays derived:deriving,
plays duplicated:original,
plays duplicated:duplicate,
plays related:related-to,
plays related:related-from;
stix-domain-object sub stix-core-object,
# Required
owns created,
owns modified,
# Optional
owns revoked,
owns labels,
owns confidence,
owns langs,
plays external-references:referenced,
plays sighting:sighting-of,
plays attributed-to:result,
plays attributed-to:fault-of,
plays indicates:indicated;
stix-cyber-observable-object sub stix-core-object,
owns defanged,
plays malware-env:env,
plays attributed-to:result,
plays attributed-to:fault-of,
plays extensions:sco,
plays consist:consisted;
stix-sub-object sub stix-entity,
abstract,
owns created,
owns modified,
plays stix-core-relationship:source,
plays stix-core-relationship:target,
plays obj-refs:referred,
plays granular-marking:object;
##### 2 Common Data Types #####
# 2.5 External Reference
external-reference sub stix-sub-object,
# In addition to source-name, at least one of description, url or external-id must be present§
# Required
owns source-name,
# Optional
owns description,
owns url-link,
owns external-id,
plays hashes:hash-owner,
plays external-references:referencing;
# 2.7 Hash
hash sub stix-sub-object,
owns hash-value,
plays hashes:hash-actual;
md-5 sub hash;
sha-1 sub hash;
sha-256 sub hash;
sha-512 sub hash;
sha3-256 sub hash;
sha3-512 sub hash;
ssdeep sub hash;
tlsh sub hash;
# 2.11 Kill Chain Phase
kill-chain-phase sub stix-sub-object,
owns kill-chain-name,
owns phase-name,
plays kill-chain-usage:kill-chain-using,
# inferred role player
plays kill-chain:participating-kill-chain-phase;
##### 4 STIX™ Domain Objects #####
# Custom object
custom-object sub stix-domain-object,
owns name,
owns description,
owns aliases,
owns first-seen,
owns last-seen,
owns objective,
plays kill-chain-usage:kill-chain-used,
plays delivers:delivering,
plays targets:targetter,
plays uses:used-by,
plays mitigates:mitigated,
plays uses:used;
# 4.1
attack-pattern sub stix-domain-object,
owns name,
owns description,
owns aliases,
# Relations defined as properties in STIX
plays kill-chain-usage:kill-chain-used,
# Common Relations
plays delivers:delivering,
plays targets:targetter,
plays uses:used-by,
# Reverse Relations
# plays indicates:indicated, -> Defined in SDO
plays mitigates:mitigated,
plays uses:used;
# Embedded Relations
# created-by
# Object marking ref
# 4.2 Campaign
campaign sub stix-domain-object,
owns name,
owns description,
owns aliases,
owns first-seen,
owns last-seen,
owns objective,
# Common Relations
plays compromises:compromising,
plays originates-from:originating,
plays targets:targetter,
plays uses:used-by;
# Reverse Relations
# plays indicates:indicated; -> Defined in SDO
# plays indicates:indicated; -> Defined in SDO
# Embedded relations
# created-by
# Object marking
# 4.3 Course of Action
course-of-action sub stix-domain-object,
owns name,
owns description,
owns action,
# Common Relations
plays investigates:investigating,
plays mitigates:mitigator,
plays remediation:remediating,
plays uses:used-by;
# Reverse Relations
# NA
# Embedded relations
# created-by
# Object marking ref
# 4.4 Grouping
grouping sub stix-domain-object,
owns name,
owns description,
owns context,
# Common Relations
# NA
# Reverse Relations
# NA
# Embedded Relations
# created-by
# Object markings
plays obj-refs:object;
# 4.5 Identity
identity sub stix-domain-object,
owns name,
owns description,
owns stix-role,
owns identity-class,
owns sector, # should this perhaps be a relation?
owns contact-information,
# Common Relations
plays located-at:locating,
# Reverse Relations
plays targets:targetted,
plays impersonate:impersonated,
# Embedded Relations
plays created-by:creator,
# Object marking ref
plays sighting:where-sighted;
# 10.7 Identity Class Vocabulary
individual sub identity;
identity-group sub identity;
system sub identity;
organization sub identity;
class sub identity;
id-unknown sub identity;
# 4.6 Incident
incident sub stix-domain-object,
owns name,
owns description;
# Common Relations
# NA
# Reverse Relations
# NA
# Embedded relations
# created-by
# Object Marking
# 4.7 Indicator
indicator sub stix-domain-object,
owns name,
owns description,
owns indicator-type,
owns pattern,
owns pattern-type,
owns pattern-version,
owns valid-from,
owns valid-until,
# Relations defined as properties in STIX
plays kill-chain-usage:kill-chain-used,
# Common Relations
plays indicates:indicating,
plays based-on:basing-on,
# Reverse Relations
plays investigates:investigated,
plays mitigates:mitigated;
# Embedded Relations
# created-by
# Object marking ref
# 4.8 Infrastructure
infrastructure sub stix-domain-object,
owns name,
owns description,
owns infrastructure-types, # Should this OV be a relation to define?
owns aliases,
plays kill-chain-usage:kill-chain-used,
owns first-seen,
owns last-seen,
# Common Relations
plays communicates-with:communicating,
plays consist:consisting,
plays control:controlling,
plays delivers:delivering,
plays have:having,
plays hosts:hosting,
plays located-at:locating,
plays uses:used-by,
# Reverse Relations
plays control:controlled,
plays communicates-with:communicated,
plays compromises:compromised,
plays beacon:beaconed-to,
plays exfiltrate:exfiltrated-to,
plays hosts:hosted,
# plays indicates:indicated, defined in SDO
plays ownership:owned,
plays targets:targetted,
plays uses:used;
# Object marking ref
# 4.9 Intrusion Set
intrusion-set sub stix-domain-object,
owns name,
owns description,
owns aliases,
owns first-seen,
owns last-seen,
owns goals,
owns resource-level,
owns primary-motivation,
owns secondary-motivations,
# Common Relations
plays compromises:compromising,
plays hosts:hosting,
plays ownership:owning,
plays originates-from:originating,
plays targets:targetter,
plays uses:used-by,
plays uses:used,
# Reverse Relations
plays authored-by:authored,
# plays indicates:indicated; Already defined in SDO
# Embedded Relations
# created-by
# Object marking
# Inferred role player
plays inferred-mitigation:inferred-mitigation-mitigated;
# 4.10 Location
location sub stix-domain-object,
owns name,
owns description,
owns latitude,
owns longitude,
owns precision,
owns region,
owns country,
owns administrative-area,
owns city,
owns street-address,
owns postal-code,
# Common Relations
# NA
# Reverse relations
plays located-at:located,
plays originates-from:originated-from,
plays targets:targetted,
plays sighting:where-sighted;
# Embedded Relations
# created-by
# Object marking
# 4.11 Malware
malware sub stix-domain-object,
owns name,
owns description,
owns malware-types,
owns is-family,
owns aliases,
owns first-seen,
owns last-seen,
owns architecture-execution-envs,
owns implementation-languages,
owns capabilities,
# Relations defined as properties in STIX
plays kill-chain-usage:kill-chain-used,
plays malware-sample:malware-sample-sample-for, # ssample_refs
# Common Relations
plays authored-by:authoring,
plays beacon:beaconing-to,
plays exfiltrate:exfiltrating-to,
plays control:controlling,
plays download:downloading,
plays drop:dropping,
plays exploit:exploiting,
plays originates-from:originating,
plays targets:targetter,
plays hosts:hosting,
plays uses:used-by,
plays variant:variant-source,
plays communicates-with:communicating,
# Reverse Relations
plays variant:variant-target,
plays delivers:delivered,
plays mitigates:mitigated,
plays remediation:remediated,
plays uses:used,
plays drop:dropped,
plays control:controlled,
plays characterise:characterised,
plays av-analysis:av-analysis-analysed,
plays static-analysis:static-analysis-analysed,
plays dynamic-analysis:dynamic-analysis-analysed,
plays download:downloaded,
plays exploit:exploiting,
# Embedded Relations
# created-by
# Obejct marking
# Sample ref
plays malware-env:object;
# 4.12 Malware Analysis
malware-analysis sub stix-domain-object,
owns product,
owns version,
owns configuration-version,
owns module,
owns analysis-engine-version,
owns analysis-definition-version,
owns submitted,
owns analysis-started,
owns analysis-ended,
owns result-name,
owns result,
# Relations defined as properties in STIX
# host_vm_ref, _operating_system_ref, instsalled_software_ref, analysis-sco are all defined as
# playing roles in the analysis relation
plays malware-analysis-sample:malware-analysis-sample-sample-for, # sample_refs
# Common Relations
plays characterise:characterising,
plays av-analysis:av-analysis-analysing,
plays static-analysis:static-analysis-analysing,
plays dynamic-analysis:dynamic-analysis-analysing,
# Reverse Relations
# NA
# Embedded Relations
# created-by
# Object markingss
# hosts-vm
# operating-system
# installed-software
# analysis-sco
# sample-ref
plays malware-env:object;
# 4.13 Note
note sub stix-domain-object,
owns note-abstract,
owns content,
owns authors,
# Relations
# NA
# Embedded Relations
# created-by
# Object marking
plays obj-refs:object;
# 4.14
observed-data sub stix-domain-object,
owns first-observed,
owns last-observed,
owns number-observed,
# Common Relations
# NA
# Reverse Relations
plays based-on:basis,
plays consist:consisted,
plays sighting:observed, # This is for SRO 5.2 sighting
# Embedded Relations
# created-by
# Object marking
plays obj-refs:object; # Object ref
# 4.15 Opinion
opinion sub stix-domain-object,
owns explanation,
owns authors,
owns opinion-enum,
# Common Relations
# NA
# Reverse Relations
# NA
# Embedded relations
# created-by
# Object marking
plays obj-refs:object;
# 4.16 Report
report sub stix-domain-object,
owns name,
owns description,
owns report-type,
owns published,
# Common Relations
# NA
# Reverse Relations
# NA
# Embedded relations
# created-by
# Object Marking
plays obj-refs:object;
# 4.17
threat-actor sub stix-domain-object,
owns name,
owns description,
owns threat-actor-type,
owns aliases,
owns first-seen,
owns last-seen,
owns stix-role,
owns goals,
owns sophistication,
owns resource-level,
owns primary-motivation,
owns secondary-motivations,
owns personal-motivations,
# Common Relations
plays compromises:compromising,
plays hosts:hosting,
plays ownership:owning,
plays impersonate:impersonating,
plays located-at:locating,
plays targets:targetter,
plays uses:used-by,
# Reverse Relations
plays authored-by:authored;
# plays indicates:indicated # defined in SDO
# Embedded relations
# created-by
# Object Marking
# 4.18 Tool
tool sub stix-domain-object,
owns name,
owns description,
owns tool-type,
owns aliases,
owns tool-version,
# Relations defined as properties in STIX
plays kill-chain-usage:kill-chain-used,
# Common Relations
plays delivers:delivering,
plays drop:dropping,
plays have:having,
plays targets:targetter,
plays uses:used-by,
# Reverse Relations
plays download:downloaded,
plays drop:dropped,
plays hosts:hosted,
plays mitigates:mitigated,
plays uses:used;
# plays indicates:indicated, Already defined in SDO
# Embedded Relations
# created-by
# Object Marking
# 4.19 Vulnerability
vulnerability sub stix-domain-object,
owns name,
owns description,
# Relations defined as properties in STIX
# plays external-references:referencing, Defined in SDO
# Common Relations
# NA
# Reverse Relations
plays targets:targetted,
plays exploit:exploited,
plays mitigates:mitigated,
plays remediation:remediated,
plays have:had;
#Embedded Relations
# created-by
# Object Marking
##### 5 STIX™ Relationship Objects #####
# 5.1 Specification-Defined Relatinoships Summary
stix-core-relationship sub relation,
# Required
owns spec-version,
owns stix-id @key,
owns created,
owns modified,
owns stix-type,
# Optional
owns description,
owns revoked,
owns labels,
owns confidence,
owns langs,
owns start-time,
owns stop-time,
owns relationship-type,
owns custom-attribute,
relates source,
relates target,
plays obj-refs:referred,
plays data-marking:marked,
plays granular-marking:object,
plays external-references:referenced,
plays created-by:created,
plays derived:derived-from,
plays derived:deriving,
plays duplicated:original,
plays duplicated:duplicate,
plays related:related-to,
plays related:related-from;
# 3.7 Common Relationships
# These are relation types that are shared by SDOs and SCOs
derived sub stix-core-relationship,
relates derived-from as source,
relates deriving as target;
duplicated sub stix-core-relationship,
relates original as source,
relates duplicate as target;
related sub stix-core-relationship,
relates related-from as source,
relates related-to as target;
# Specific Relationships from Appendix C
delivers sub stix-core-relationship,
relates delivering as source,
relates delivered as target;
targets sub stix-core-relationship,
relates targetter as source,
relates targetted as target;
uses sub stix-core-relationship,
relates used-by as source,
relates used as target;
attributed-to sub stix-core-relationship,
relates result as source,
relates fault-of as target;
compromises sub stix-core-relationship,
relates compromising as source,
relates compromised as target;
originates-from sub stix-core-relationship,
relates originated-from as target,
relates originating as source;
investigates sub stix-core-relationship,
relates investigating as source,
relates investigated as target;
mitigates sub stix-core-relationship,
relates mitigated as target,
relates mitigator as source;
located-at sub stix-core-relationship,
relates located as target,
relates locating as source;
indicates sub stix-core-relationship,
relates indicating as source,
relates indicated as target;
based-on sub stix-core-relationship,
relates basing-on as source,
relates basis as target;
communicates-with sub stix-core-relationship,
relates communicating as source,
relates communicated as target;
consist sub stix-core-relationship,
relates consisting as source,
relates consisted as target;
control sub stix-core-relationship,
relates controlling as source,
relates controlled as target;
have sub stix-core-relationship, # Could come up with a better name?
relates having as source,
relates had as target;
hosts sub stix-core-relationship,
relates hosting as source,
relates hosted as target;
ownership sub stix-core-relationship,
relates owned as target,
relates owning as source;
authored-by sub stix-core-relationship,
relates authoring as source,
relates authored as target;
resolve-to sub stix-core-relationship,
relates resolves-from as source,
relates resolves-to as target;
beacon sub stix-core-relationship,
relates beaconed-to as target,
relates beaconing-to as source;
exfiltrate sub stix-core-relationship,
relates exfiltrated-to as target,
relates exfiltrating-to as source;
download sub stix-core-relationship,
relates downloaded as target,
relates downloading as source;
drop sub stix-core-relationship,
relates dropped as target,
relates dropping as source;
exploit sub stix-core-relationship,
relates exploiting as source,
relates exploited as target;
variant sub stix-core-relationship,
relates variant-source as source,
relates variant-target as target;
characterise sub stix-core-relationship,
relates characterised as target,
relates characterising as source;
impersonate sub stix-core-relationship,
relates impersonating as source,
relates impersonated as target;
analysis sub stix-core-relationship,
relates analysing as source,
relates analysed as target;
av-analysis sub analysis, relates av-analysis-analysing as analysing, relates av-analysis-analysed as analysed;
static-analysis sub analysis, relates static-analysis-analysing as analysing, relates static-analysis-analysed as analysed;
dynamic-analysis sub analysis, relates dynamic-analysis-analysing as analysing, relates dynamic-analysis-analysed as analysed;
analysis-of sub analysis, relates analysis-of-analysing as analysing, relates analysis-of-analysed as analysed;
remediation sub stix-core-relationship,
relates remediating as source,
relates remediated as target;
# 5.2 Sighting
sighting sub stix-core-relationship,
owns first-seen,
owns last-seen,
owns sighting-count,
owns summary,
relates where-sighted,
relates sighting-of as source,
relates observed;
##### 6 STIX™ Cyber-observable Objects #####
# 6.1 Artifact Object
artifact sub stix-cyber-observable-object,
owns mime-type,
owns payload-bin,
owns url-link,
plays hashes:hash-owner,
owns encryption-algorithm,
owns decryption-key,
plays payload-src:payload,
plays payload-dst:payload,
plays malware-analysis-sample:malware-analysis-sample-sco-sample,
plays malware-sample:malware-sco-sample,
plays raw-email-references:binary,
plays body-raw-references:non-textual,
plays content-file:containing-file,
plays HTTP-body-data:contained-data;
# 6.2 Autonomous System Object
autonomous-system sub stix-cyber-observable-object,
owns number,
owns name,
owns rir,
plays belongs-to-autonomous:belongs-to-autonomous;
# 6.3 Directory Object
directory sub stix-cyber-observable-object,
owns path,
owns path-enc,
owns ctime,
owns mtime,
owns atime,
plays directory-contains:directory-contains-container,
plays directory-contains:directory-contains-contained,
plays directory-parent:directory-parent-contained,
plays directory-parent:directory-parent-container;
# 6.4 Domain Name Object
domain-name sub stix-cyber-observable-object,
owns stix-value,
plays resolves-to-ref:from-ref,
plays resolves-to-ref:to-ref,
plays communicates-with:communicated,
plays traffic-src:source,
plays traffic-dst:destination,
plays resolve-to:resolves-from,
plays resolve-to:resolves-to;
# 6.5 Email Address Object
email-addr sub stix-cyber-observable-object,
owns stix-value,
owns display-name,
plays belongs:belonged,
plays from-email:from-email-address,
plays to-email:to-email-address,
plays cc-email:cc-email-address,
plays bcc-email:bcc-email-address;
# 6.6 Email Message
email-message sub stix-cyber-observable-object,
owns is-multipart,
owns date,
owns content-type,
owns message-id,
owns subject,
owns received-lines, # List of type string
owns body,
plays body-multipart:email,
plays email-connection:email,
plays additional-header:email,
plays raw-email-references:email;
header-value sub stix-attribute-string;
header-key sub stix-attribute-string,
owns header-value,
plays additional-header:item;
email-mime-part sub stix-sub-object,
owns body,
owns content-type,
owns content-disposition,
plays body-multipart:mime-part,
plays body-raw-references:containing-mime;
# 6.7 File
file sub stix-cyber-observable-object,
plays hashes:hash-owner,
owns size,
owns name,
owns name-enc,
owns magic-number-hex,
owns mime-type,
owns ctime,
owns mtime,
owns atime,
plays directory-contains:directory-contains-contained,
plays directory-parent:directory-parent-contained,
plays content-file:containing-file,
plays body-raw-references:non-textual,
plays malware-analysis-sample:malware-analysis-sample-sco-sample,
plays malware-sample:malware-sco-sample,
plays download:downloaded,
plays process-image:executed-image,
plays service-dll:loaded-dll,
plays archive-extension:file,
plays ntfs-extension:file,
plays pdf-extension:file,
plays raster-image-extension:file,
plays windows-pebinary-extension:file;
#### SCO EXTENSIONS ####
SCO-extension sub stix-sub-object,
plays extensions:extension;
archive-ext sub SCO-extension,
owns comment,
plays directory-contains:directory-contains-container,
plays archive-extension:an-archive;
ntfs-ext sub SCO-extension,
owns sid,
plays alt-data-streams:ntfs-ext,
plays ntfs-extension:ntfs;
alternate-data-stream sub SCO-extension,
owns name,
plays hashes:hash-owner,
owns size,
plays alt-data-streams:alt-data-stream;
pdf-ext sub SCO-extension,
owns version,
owns is-optimized,
owns pdfid0,
owns pdfid1,
plays doc-info:pdf,
plays pdf-extension:pdf;
doc-value sub stix-attribute-string;
doc-key sub stix-attribute-string,
owns doc-value,
plays doc-info:info;
raster-image-ext sub SCO-extension,
owns image-height,
owns image-width,
owns bits-per-pixel,
plays EXIF-tags:image,
plays raster-image-extension:image;
EXIF-value sub stix-attribute-string;
EXIF-key sub stix-attribute-string,
owns EXIF-value,
plays EXIF-tags:info;
windows-pebinary-ext sub SCO-extension,
owns pe-type,
owns imphash,
owns machine-hex,
owns number-of-sections,
owns time-date-stamp,
owns pointer-to-symbol-table-hex,
owns number-of-symbols,
owns size-of-optional-header,