forked from MAECProject/schemas
-
Notifications
You must be signed in to change notification settings - Fork 0
/
maec_default_vocabularies.xsd
5325 lines (5325 loc) · 356 KB
/
maec_default_vocabularies.xsd
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
<?xml version="1.0" encoding="UTF-8"?>
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:cyboxCommon="http://cybox.mitre.org/common-2" xmlns:maecVocabs="http://maec.mitre.org/default_vocabularies-1" targetNamespace="http://maec.mitre.org/default_vocabularies-1" elementFormDefault="qualified" version="1.1">
<xs:annotation>
<xs:documentation>This schema was originally developed by The MITRE Corporation. The MAEC XML Schema implementation is maintained by The MITRE Corporation and developed by the open MAEC Community. For more information, including how to get involved in the effort and how to submit change requests, please visit the MAEC website at http://maec.mitre.org. </xs:documentation>
<xs:appinfo>
<schema>maec-default-vocabularies</schema>
<version>1.1</version>
<date>02/11/2014</date>
<short_description>The following defines types for default controlled vocabularies used within MAEC. An individual vocabulary may be revised at any time. Revisions to vocabularies will result in the creation of new types with the new version number embedded in the name of those types. Vocabularies can be reference from MAEC elements through the use of xsi:Type. The individual elements where this may be done indicate the expected default vocabulary.</short_description>
<terms_of_use>Copyright (c) 2012-2014, The MITRE Corporation. All rights reserved. The contents of this file are subject to the terms of the MAEC License located at http://maec.mitre.org/about/termsofuse.html. See the MAEC License for the specific language governing permissions and limitations for use of this schema. When distributing copies of the MAEC Schema, this license header must be included. </terms_of_use>
</xs:appinfo>
</xs:annotation>
<xs:import namespace="http://cybox.mitre.org/common-2" schemaLocation="http://cybox.mitre.org/XMLSchema/common/2.1/cybox_common.xsd"/>
<xs:complexType name="ActionObjectAssociationTypeVocab-1.0">
<xs:annotation>
<xs:documentation>The ActionObjectAssocationVocab is the default MAEC vocabulary for Action-Object association types, captured via the AssociatedObjectType/Association_Type element in CybOX Core.</xs:documentation>
<xs:documentation>It should be used in place of the CybOX ActionObjectAssociationVocab-1.0.</xs:documentation>
</xs:annotation>
<xs:simpleContent>
<xs:restriction base="cyboxCommon:ControlledVocabularyStringType">
<xs:simpleType>
<xs:union memberTypes="maecVocabs:ActionObjectAssociationTypeEnum-1.0"/>
</xs:simpleType>
<xs:attribute fixed="MAEC Default Action-Object Association Names" name="vocab_name" type="xs:string" use="optional"/>
<xs:attribute fixed="http://maec.mitre.org/XMLSchema/default_vocabularies/2.1/maec_default_vocabularies.xsd#ActionObjectAssociationTypeVocab-1.0" name="vocab_reference" type="xs:anyURI" use="optional"/>
</xs:restriction>
</xs:simpleContent>
</xs:complexType>
<xs:simpleType name="ActionObjectAssociationTypeEnum-1.0">
<xs:annotation>
<xs:documentation>ActionObjectAssociationTypeEnum is a (non-exhaustive) enumeration of types of action-object associations.</xs:documentation>
</xs:annotation>
<xs:restriction base="xs:string">
<xs:enumeration value="input">
<xs:annotation>
<xs:documentation>The 'input' value specifies that the associated object serves as an input to the action. This includes cases where an object is used by the action or an existing object is modified by the action.</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="output">
<xs:annotation>
<xs:documentation>The 'output' value specifies that the associated object serves as an output to the action. This includes cases where the object is created anew by the action or otherwise returned by the action.</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="side-effect">
<xs:annotation>
<xs:documentation>The 'side-effect' value specifies that the associated object serves as a side-effect resulting from the action. This includes cases where the object is modified indirectly by the action.</xs:documentation>
</xs:annotation>
</xs:enumeration>
</xs:restriction>
</xs:simpleType>
<xs:complexType name="ImportanceTypeVocab-1.0">
<xs:annotation>
<xs:documentation>The ImportanceTypeVocab is the default MAEC vocabulary for relative importance measures, captured via the CandidateIndicatorType/Importance element in the MAEC Bundle.</xs:documentation>
</xs:annotation>
<xs:simpleContent>
<xs:restriction base="cyboxCommon:ControlledVocabularyStringType">
<xs:simpleType>
<xs:union memberTypes="maecVocabs:ImportanceTypeEnum-1.0"/>
</xs:simpleType>
<xs:attribute fixed="MAEC Default Importance Types" name="vocab_name" type="xs:string" use="optional"/>
<xs:attribute fixed="http://maec.mitre.org/XMLSchema/default_vocabularies/2.1/maec_default_vocabularies.xsd#ImportanceTypeVocab-1.0" name="vocab_reference" type="xs:anyURI" use="optional"/>
</xs:restriction>
</xs:simpleContent>
</xs:complexType>
<xs:simpleType name="ImportanceTypeEnum-1.0">
<xs:annotation>
<xs:documentation>The ImportanceTypeEnum is a (non-exhaustive) enumeration of relative importance measures.</xs:documentation>
</xs:annotation>
<xs:restriction base="xs:string">
<xs:enumeration value="high">
<xs:annotation>
<xs:documentation>The 'high' value specifies that the field is of relative high importance.</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="medium">
<xs:annotation>
<xs:documentation>The 'medium' value specifies that the field is of relative medium importance.</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="low">
<xs:annotation>
<xs:documentation>The 'low' value specifies that the field is of relative low importance.</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="informational">
<xs:annotation>
<xs:documentation>The 'informational' value specifies that the field is only informational in its importance.</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="numeric">
<xs:annotation>
<xs:documentation>The 'numeric' value specifies that the field has a numeric importance value, which is defined in another attribute or element.</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="unknown">
<xs:annotation>
<xs:documentation>The 'unknown' value specifies that the relative importance for the field is unknown.</xs:documentation>
</xs:annotation>
</xs:enumeration>
</xs:restriction>
</xs:simpleType>
<xs:complexType name="MalwareEntityTypeVocab-1.0">
<xs:annotation>
<xs:documentation>The MalwareEntityTypeVocab is the default MAEC vocabulary for malware entity types, captured via the CandidateIndicatorType/Malware_Entity/Type element in the MAEC Bundle.</xs:documentation>
</xs:annotation>
<xs:simpleContent>
<xs:restriction base="cyboxCommon:ControlledVocabularyStringType">
<xs:simpleType>
<xs:union memberTypes="maecVocabs:MalwareEntityTypeEnum-1.0"/>
</xs:simpleType>
<xs:attribute fixed="MAEC Default Malware Entity Types" name="vocab_name" type="xs:string" use="optional"/>
<xs:attribute fixed="http://maec.mitre.org/XMLSchema/default_vocabularies/2.1/maec_default_vocabularies.xsd#MalwareEntityTypeVocab-1.0" name="vocab_reference" type="xs:anyURI" use="optional"/>
</xs:restriction>
</xs:simpleContent>
</xs:complexType>
<xs:simpleType name="MalwareEntityTypeEnum-1.0">
<xs:annotation>
<xs:documentation>The MalwareEntityTypeEnum is a (non-exhaustive) enumeration of the different types of entities that a malware indicator or signature may be written against.</xs:documentation>
</xs:annotation>
<xs:restriction base="xs:string">
<xs:enumeration value="instance">
<xs:annotation>
<xs:documentation>The 'instance' value specifies that the particular malware entity being referred to is a single malware instance.</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="family">
<xs:annotation>
<xs:documentation>The 'family' value specifies that the particular malware entity being referred to is a single malware family.</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="class">
<xs:annotation>
<xs:documentation>The 'class' value specifies that the particular malware entity being referred to is a single class of malware.</xs:documentation>
</xs:annotation>
</xs:enumeration>
</xs:restriction>
</xs:simpleType>
<xs:complexType name="DeviceDriverActionNameVocab-1.0">
<xs:annotation>
<xs:documentation>The DeviceDriverActionNameVocab is the default MAEC vocabulary for device driver action names, captured via the ActionType/Name element in CybOX Core.</xs:documentation>
<xs:documentation>For device driver action names, it should be used in place of the CybOX ActionNameVocab-1.0.</xs:documentation>
<xs:documentation>Deprecated as of MAEC 4.1.</xs:documentation>
</xs:annotation>
<xs:simpleContent>
<xs:restriction base="cyboxCommon:ControlledVocabularyStringType">
<xs:simpleType>
<xs:union memberTypes="maecVocabs:DeviceDriverActionNameEnum-1.0"/>
</xs:simpleType>
<xs:attribute fixed="MAEC Default Device Driver Action Names" name="vocab_name" type="xs:string" use="optional"/>
<xs:attribute fixed="http://maec.mitre.org/XMLSchema/default_vocabularies/2.1/maec_default_vocabularies.xsd#DeviceDriverActionNameVocab-1.0" name="vocab_reference" type="xs:anyURI" use="optional"/>
</xs:restriction>
</xs:simpleContent>
</xs:complexType>
<xs:simpleType name="DeviceDriverActionNameEnum-1.0">
<xs:annotation>
<xs:documentation>The DeviceDriverActionNameEnum is a (non-exhaustive) enumeration of the different types of actions associated with device drivers.</xs:documentation>
<xs:documentation>Deprecated as of MAEC 4.1.</xs:documentation>
</xs:annotation>
<xs:restriction base="xs:string">
<xs:enumeration value="load and call driver">
<xs:annotation>
<xs:documentation>The 'load and call' value specifies the defined action of loading a driver into a system and then calling the loaded driver.</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="load driver">
<xs:annotation>
<xs:documentation>The 'load driver' value specifies the defined action of loading a driver into a system.</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="unload driver">
<xs:annotation>
<xs:documentation>The 'unload driver' value specifies the defined action of unloading a driver from a system.</xs:documentation>
</xs:annotation>
</xs:enumeration>
</xs:restriction>
</xs:simpleType>
<xs:complexType name="DeviceDriverActionNameVocab-1.1">
<xs:annotation>
<xs:documentation>The DeviceDriverActionNameVocab is the default MAEC vocabulary for device driver action names, captured via the ActionType/Name element in CybOX Core.</xs:documentation>
<xs:documentation>For device driver action names, it should be used in place of the CybOX ActionNameVocab-1.0.</xs:documentation>
<xs:documentation>Starting with MAEC 4.1, it should be used in place of the deprecated DeviceDriverActionNameVocab-1.0.</xs:documentation>
</xs:annotation>
<xs:simpleContent>
<xs:restriction base="cyboxCommon:ControlledVocabularyStringType">
<xs:simpleType>
<xs:union memberTypes="maecVocabs:DeviceDriverActionNameEnum-1.1"/>
</xs:simpleType>
<xs:attribute fixed="MAEC Default Device Driver Action Names" name="vocab_name" type="xs:string" use="optional"/>
<xs:attribute fixed="http://maec.mitre.org/XMLSchema/default_vocabularies/2.1/maec_default_vocabularies.xsd#DeviceDriverActionNameVocab-1.1" name="vocab_reference" type="xs:anyURI" use="optional"/>
</xs:restriction>
</xs:simpleContent>
</xs:complexType>
<xs:simpleType name="DeviceDriverActionNameEnum-1.1">
<xs:annotation>
<xs:documentation>The DeviceDriverActionNameEnum is a (non-exhaustive) enumeration of the different types of actions associated with device drivers.</xs:documentation>
</xs:annotation>
<xs:restriction base="xs:string">
<xs:enumeration value="load and call driver">
<xs:annotation>
<xs:documentation>The 'load and call' value specifies the defined action of loading a driver into a system and then calling the loaded driver.</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="load driver">
<xs:annotation>
<xs:documentation>The 'load driver' value specifies the defined action of loading a driver into a system.</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="unload driver">
<xs:annotation>
<xs:documentation>The 'unload driver' value specifies the defined action of unloading a driver from a system.</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="emulate driver">
<xs:annotation>
<xs:documentation>The 'emulate driver' value specifies the defined action of emulating an existing driver on a system.</xs:documentation>
</xs:annotation>
</xs:enumeration>
</xs:restriction>
</xs:simpleType>
<xs:complexType name="DebuggingActionNameVocab-1.0">
<xs:annotation>
<xs:documentation>The DebuggingActionNameVocab is the default MAEC vocabulary for debugging action names, captured via the ActionType/Name element in CybOX Core.</xs:documentation>
<xs:documentation>For debugging action names, it should be used in place of the CybOX ActionNameVocab-1.0.</xs:documentation>
</xs:annotation>
<xs:simpleContent>
<xs:restriction base="cyboxCommon:ControlledVocabularyStringType">
<xs:simpleType>
<xs:union memberTypes="maecVocabs:DebuggingActionNameEnum-1.0"/>
</xs:simpleType>
<xs:attribute fixed="MAEC Default Debugging Action Names" name="vocab_name" type="xs:string" use="optional"/>
<xs:attribute fixed="http://maec.mitre.org/XMLSchema/default_vocabularies/2.1/maec_default_vocabularies.xsd#DebuggingActionNameVocab-1.0" name="vocab_reference" type="xs:anyURI" use="optional"/>
</xs:restriction>
</xs:simpleContent>
</xs:complexType>
<xs:simpleType name="DebuggingActionNameEnum-1.0">
<xs:annotation>
<xs:documentation>The DebuggingActionNameEnum is a (non-exhaustive) enumeration of the different actions associated with debugging.</xs:documentation>
</xs:annotation>
<xs:restriction base="xs:string">
<xs:enumeration value="check for remote debugger">
<xs:annotation>
<xs:documentation>The 'check for remote debugger' value specifies the defined action of checking for the presence of a remote debugger.</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="check for kernel debugger">
<xs:annotation>
<xs:documentation>The 'check for kernel debugger' value specifies the defined action of checking for the presence of a kernel debugger.</xs:documentation>
</xs:annotation>
</xs:enumeration>
</xs:restriction>
</xs:simpleType>
<xs:complexType name="LibraryActionNameVocab-1.0">
<xs:annotation>
<xs:documentation>The LibraryActionNameVocab is the default MAEC vocabulary for library action names, captured via the ActionType/Name element in CybOX Core.</xs:documentation>
<xs:documentation>For library action names, it should be used in place of the CybOX ActionNameVocab-1.0.</xs:documentation>
<xs:documentation>Deprecated as of MAEC 4.1.</xs:documentation>
</xs:annotation>
<xs:simpleContent>
<xs:restriction base="cyboxCommon:ControlledVocabularyStringType">
<xs:simpleType>
<xs:union memberTypes="maecVocabs:LibraryActionNameEnum-1.0"/>
</xs:simpleType>
<xs:attribute fixed="MAEC Default Library Action Names" name="vocab_name" type="xs:string" use="optional"/>
<xs:attribute fixed="http://maec.mitre.org/XMLSchema/default_vocabularies/2.1/maec_default_vocabularies.xsd#LibraryActionNameVocab-1.0" name="vocab_reference" type="xs:anyURI" use="optional"/>
</xs:restriction>
</xs:simpleContent>
</xs:complexType>
<xs:simpleType name="LibraryActionNameEnum-1.0">
<xs:annotation>
<xs:documentation>The LibraryActionNameEnum is a (non-exhaustive) enumeration of the different actions associated with libraries.</xs:documentation>
<xs:documentation>Deprecated as of MAEC 4.1.</xs:documentation>
</xs:annotation>
<xs:restriction base="xs:string">
<xs:enumeration value="enumerate libraries">
<xs:annotation>
<xs:documentation>The 'enumerate libraries' value specifies the defined action of enumerating the libraries used by a process.</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="free library">
<xs:annotation>
<xs:documentation>The 'free library' value specifies the defined action of freeing a library previously loaded into the address space of the calling process.</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="load library">
<xs:annotation>
<xs:documentation>The 'load library' value specifies the defined action of loading a library into the address space of the calling process.</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="get function address">
<xs:annotation>
<xs:documentation>The 'get function address' value specifies the defined action of getting the address of an exported function or variable from a library.</xs:documentation>
</xs:annotation>
</xs:enumeration>
</xs:restriction>
</xs:simpleType>
<xs:complexType name="LibraryActionNameVocab-1.1">
<xs:annotation>
<xs:documentation>The LibraryActionNameVocab is the default MAEC vocabulary for library action names, captured via the ActionType/Name element in CybOX Core.</xs:documentation>
<xs:documentation>For library action names, it should be used in place of the CybOX ActionNameVocab-1.0.</xs:documentation>
<xs:documentation>Starting with MAEC 4.1, it should be used in place of the deprecated LibraryActionNameVocab-1.0.</xs:documentation>
</xs:annotation>
<xs:simpleContent>
<xs:restriction base="cyboxCommon:ControlledVocabularyStringType">
<xs:simpleType>
<xs:union memberTypes="maecVocabs:LibraryActionNameEnum-1.1"/>
</xs:simpleType>
<xs:attribute fixed="MAEC Default Library Action Names" name="vocab_name" type="xs:string" use="optional"/>
<xs:attribute fixed="http://maec.mitre.org/XMLSchema/default_vocabularies/2.1/maec_default_vocabularies.xsd#LibraryActionNameVocab-1.1" name="vocab_reference" type="xs:anyURI" use="optional"/>
</xs:restriction>
</xs:simpleContent>
</xs:complexType>
<xs:simpleType name="LibraryActionNameEnum-1.1">
<xs:annotation>
<xs:documentation>The LibraryActionNameEnum is a (non-exhaustive) enumeration of the different actions associated with libraries.</xs:documentation>
</xs:annotation>
<xs:restriction base="xs:string">
<xs:enumeration value="enumerate libraries">
<xs:annotation>
<xs:documentation>The 'enumerate libraries' value specifies the defined action of enumerating the libraries used by a process.</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="free library">
<xs:annotation>
<xs:documentation>The 'free library' value specifies the defined action of freeing a library previously loaded into the address space of the calling process.</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="load library">
<xs:annotation>
<xs:documentation>The 'load library' value specifies the defined action of loading a library into the address space of the calling process.</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="get function address">
<xs:annotation>
<xs:documentation>The 'get function address' value specifies the defined action of getting the address of an exported function or variable from a library.</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="call library function">
<xs:annotation>
<xs:documentation>The 'call library function' value specifies the defined action of calling a function exported by a library.</xs:documentation>
</xs:annotation>
</xs:enumeration>
</xs:restriction>
</xs:simpleType>
<xs:complexType name="DirectoryActionNameVocab-1.0">
<xs:annotation>
<xs:documentation>The DirectoryActionNameVocab is the default MAEC vocabulary for directory action names, captured via the ActionType/Name element in CybOX Core.</xs:documentation>
<xs:documentation>For directory action names, it should be used in place of the CybOX ActionNameVocab-1.0.</xs:documentation>
<xs:documentation>Deprecated as of MAEC 4.1</xs:documentation>
</xs:annotation>
<xs:simpleContent>
<xs:restriction base="cyboxCommon:ControlledVocabularyStringType">
<xs:simpleType>
<xs:union memberTypes="maecVocabs:DirectoryActionNameEnum-1.0"/>
</xs:simpleType>
<xs:attribute fixed="MAEC Default Directory Action Names" name="vocab_name" type="xs:string" use="optional"/>
<xs:attribute fixed="http://maec.mitre.org/XMLSchema/default_vocabularies/2.1/maec_default_vocabularies.xsd#DirectoryActionNameVocab-1.0" name="vocab_reference" type="xs:anyURI" use="optional"/>
</xs:restriction>
</xs:simpleContent>
</xs:complexType>
<xs:simpleType name="DirectoryActionNameEnum-1.0">
<xs:annotation>
<xs:documentation>The DirectoryActionNameEnum is a (non-exhaustive) enumeration of the different actions associated with a file directories.</xs:documentation>
<xs:documentation>Deprecated as of MAEC 4.1</xs:documentation>
</xs:annotation>
<xs:restriction base="xs:string">
<xs:enumeration value="create directory">
<xs:annotation>
<xs:documentation>The 'create directory' value specifies the defined action of creating a new directory on the filesystem.</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="delete directory">
<xs:annotation>
<xs:documentation>The 'delete directory' value specifies the defined action of deleting an existing directory on the filesystem.</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="monitor directory">
<xs:annotation>
<xs:documentation>The 'monitor directory' value specifies the defined action of monitoring an existing directory on the filesystem for changes.</xs:documentation>
</xs:annotation>
</xs:enumeration>
</xs:restriction>
</xs:simpleType>
<xs:complexType name="DirectoryActionNameVocab-1.1">
<xs:annotation>
<xs:documentation>The DirectoryActionNameVocab is the default MAEC vocabulary for directory action names, captured via the ActionType/Name element in CybOX Core.</xs:documentation>
<xs:documentation>For directory action names, it should be used in place of the CybOX ActionNameVocab-1.0.</xs:documentation>
<xs:documentation>Starting with MAEC 4.1, it should be used in place of the deprecated DirectoryActionNameVocab-1.0.</xs:documentation>
</xs:annotation>
<xs:simpleContent>
<xs:restriction base="cyboxCommon:ControlledVocabularyStringType">
<xs:simpleType>
<xs:union memberTypes="maecVocabs:DirectoryActionNameEnum-1.1"/>
</xs:simpleType>
<xs:attribute fixed="MAEC Default Directory Action Names" name="vocab_name" type="xs:string" use="optional"/>
<xs:attribute fixed="http://maec.mitre.org/XMLSchema/default_vocabularies/2.1/maec_default_vocabularies.xsd#DirectoryActionNameVocab-1.1" name="vocab_reference" type="xs:anyURI" use="optional"/>
</xs:restriction>
</xs:simpleContent>
</xs:complexType>
<xs:simpleType name="DirectoryActionNameEnum-1.1">
<xs:annotation>
<xs:documentation>The DirectoryActionNameEnum is a (non-exhaustive) enumeration of the different actions associated with a file directories.</xs:documentation>
</xs:annotation>
<xs:restriction base="xs:string">
<xs:enumeration value="create directory">
<xs:annotation>
<xs:documentation>The 'create directory' value specifies the defined action of creating a new directory on the filesystem.</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="delete directory">
<xs:annotation>
<xs:documentation>The 'delete directory' value specifies the defined action of deleting an existing directory on the filesystem.</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="monitor directory">
<xs:annotation>
<xs:documentation>The 'monitor directory' value specifies the defined action of monitoring an existing directory on the filesystem for changes.</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="hide directory">
<xs:annotation>
<xs:documentation>The 'hide directory' value specifies the defined action of hiding an existing directory.</xs:documentation>
</xs:annotation>
</xs:enumeration>
</xs:restriction>
</xs:simpleType>
<xs:complexType name="DiskActionNameVocab-1.0">
<xs:annotation>
<xs:documentation>The DiskActionNameVocab is the default MAEC vocabulary for disk action names, captured via the ActionType/Name element in CybOX Core.</xs:documentation>
<xs:documentation>For disk action names, it should be used in place of the CybOX ActionNameVocab-1.0.</xs:documentation>
<xs:documentation>Deprecated as of MAEC 4.1.</xs:documentation>
</xs:annotation>
<xs:simpleContent>
<xs:restriction base="cyboxCommon:ControlledVocabularyStringType">
<xs:simpleType>
<xs:union memberTypes="maecVocabs:DiskActionNameEnum-1.0"/>
</xs:simpleType>
<xs:attribute fixed="MAEC Default Disk Action Names" name="vocab_name" type="xs:string" use="optional"/>
<xs:attribute fixed="http://maec.mitre.org/XMLSchema/default_vocabularies/2.1/maec_default_vocabularies.xsd#DiskActionNameVocab-1.0" name="vocab_reference" type="xs:anyURI" use="optional"/>
</xs:restriction>
</xs:simpleContent>
</xs:complexType>
<xs:simpleType name="DiskActionNameEnum-1.0">
<xs:annotation>
<xs:documentation>The DiskActionNameEnum is a (non-exhaustive) enumeration of the different actions associated with hard disks.</xs:documentation>
<xs:documentation>Deprecated as of MAEC 4.1.</xs:documentation>
</xs:annotation>
<xs:restriction base="xs:string">
<xs:enumeration value="get disk type">
<xs:annotation>
<xs:documentation>The 'get disk type' value specifies the defined action of getting the disk type.</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="get disk attributes">
<xs:annotation>
<xs:documentation>The 'get disk attributes' value specifies the defined action of querying the attributes of a disk, such as the amount of available free space.</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="mount disk">
<xs:annotation>
<xs:documentation>The 'mount disk' value specifies the defined action of mounting an existing file system to a mounting point.</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="unmount disk">
<xs:annotation>
<xs:documentation>The 'unmount disk' value specifies the defined action of unmounting an existing file system from a mounting point.</xs:documentation>
</xs:annotation>
</xs:enumeration>
</xs:restriction>
</xs:simpleType>
<xs:complexType name="DiskActionNameVocab-1.1">
<xs:annotation>
<xs:documentation>The DiskActionNameVocab is the default MAEC vocabulary for disk action names, captured via the ActionType/Name element in CybOX Core.</xs:documentation>
<xs:documentation>For disk action names, it should be used in place of the CybOX ActionNameVocab-1.0.</xs:documentation>
<xs:documentation>Starting with MAEC 4.1, it should be used in place of the deprecated DiskActionNameVocab-1.0.</xs:documentation>
</xs:annotation>
<xs:simpleContent>
<xs:restriction base="cyboxCommon:ControlledVocabularyStringType">
<xs:simpleType>
<xs:union memberTypes="maecVocabs:DiskActionNameEnum-1.1"/>
</xs:simpleType>
<xs:attribute fixed="MAEC Default Disk Action Names" name="vocab_name" type="xs:string" use="optional"/>
<xs:attribute fixed="http://maec.mitre.org/XMLSchema/default_vocabularies/2.1/maec_default_vocabularies.xsd#DiskActionNameVocab-1.1" name="vocab_reference" type="xs:anyURI" use="optional"/>
</xs:restriction>
</xs:simpleContent>
</xs:complexType>
<xs:simpleType name="DiskActionNameEnum-1.1">
<xs:annotation>
<xs:documentation>The DiskActionNameEnum is a (non-exhaustive) enumeration of the different actions associated with hard disks.</xs:documentation>
</xs:annotation>
<xs:restriction base="xs:string">
<xs:enumeration value="get disk type">
<xs:annotation>
<xs:documentation>The 'get disk type' value specifies the defined action of getting the disk type.</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="get disk attributes">
<xs:annotation>
<xs:documentation>The 'get disk attributes' value specifies the defined action of querying the attributes of a disk, such as the amount of available free space.</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="mount disk">
<xs:annotation>
<xs:documentation>The 'mount disk' value specifies the defined action of mounting an existing file system to a mounting point.</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="unmount disk">
<xs:annotation>
<xs:documentation>The 'unmount disk' value specifies the defined action of unmounting an existing file system from a mounting point.</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="emulate disk">
<xs:annotation>
<xs:documentation>The 'emulate disk' value specifies the defined action of emulating an existing disk.</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="list disks">
<xs:annotation>
<xs:documentation>The 'list disks' value specifies the defined action of listing all disks available on a system.</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="monitor disk">
<xs:annotation>
<xs:documentation>The 'monitor disk' value specifies the defined action of monitoring an existing disk for changes.</xs:documentation>
</xs:annotation>
</xs:enumeration>
</xs:restriction>
</xs:simpleType>
<xs:complexType name="FileActionNameVocab-1.0">
<xs:annotation>
<xs:documentation>The FileActionNameVocab is the default MAEC vocabulary for file action names, captured via the ActionType/Name element in CybOX Core.</xs:documentation>
<xs:documentation>For file action names, it should be used in place of the CybOX ActionNameVocab-1.0.</xs:documentation>
<xs:documentation>Deprecated as of MAEC 4.1.</xs:documentation>
</xs:annotation>
<xs:simpleContent>
<xs:restriction base="cyboxCommon:ControlledVocabularyStringType">
<xs:simpleType>
<xs:union memberTypes="maecVocabs:FileActionNameEnum-1.0"/>
</xs:simpleType>
<xs:attribute fixed="MAEC Default File Action Names" name="vocab_name" type="xs:string" use="optional"/>
<xs:attribute fixed="http://maec.mitre.org/XMLSchema/default_vocabularies/2.1/maec_default_vocabularies.xsd#FileActionNameVocab-1.0" name="vocab_reference" type="xs:anyURI" use="optional"/>
</xs:restriction>
</xs:simpleContent>
</xs:complexType>
<xs:simpleType name="FileActionNameEnum-1.0">
<xs:annotation>
<xs:documentation>The FileActionNameEnum is a (non-exhaustive) enumeration of the different actions associated with a file.</xs:documentation>
<xs:documentation>Deprecated as of MAEC 4.1.</xs:documentation>
</xs:annotation>
<xs:restriction base="xs:string">
<xs:enumeration value="create file">
<xs:annotation>
<xs:documentation>The 'create file' value specifies the defined action of creating a new file.</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="delete file">
<xs:annotation>
<xs:documentation>The 'delete file' value specifies the defined action of deleting an existing file.</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="copy file">
<xs:annotation>
<xs:documentation>The 'copy file' value specifies the defined action of copying an existing file from one location to another.</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="create file symbolic link">
<xs:annotation>
<xs:documentation>The 'create file symbolic link' value specifies the defined action of creating a symbolic link to an existing file.</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="find file">
<xs:annotation>
<xs:documentation>The 'find file' value specifies the defined action of searching for an existing file.</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="get file attributes">
<xs:annotation>
<xs:documentation>The 'get file attributes' value specifies the defined action of getting the attributes of an existing file.</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="set file attributes">
<xs:annotation>
<xs:documentation>The 'set file attributes' value specifies the defined action of setting the file attributes for an existing file.</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="lock file">
<xs:annotation>
<xs:documentation>The 'lock file' value specifies the defined action of locking an existing file.</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="unlock file">
<xs:annotation>
<xs:documentation>The 'unlock file' value specifies the defined action of unlocking an existing file.</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="modify file">
<xs:annotation>
<xs:documentation>The 'modify file' value specifies the defined action of modifying an existing file in some manner.</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="move file">
<xs:annotation>
<xs:documentation>The 'move file' value specifies the defined action of moving an existing file from one location to another.</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="open file">
<xs:annotation>
<xs:documentation>The 'open file' value specifies the defined action of opening an existing file for reading or writing.</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="read from file">
<xs:annotation>
<xs:documentation>The 'read from file' value specifies the defined action of reading from an existing file.</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="write to file">
<xs:annotation>
<xs:documentation>The 'write to file' value specifies the defined action of writing to an existing file.</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="rename file">
<xs:annotation>
<xs:documentation>The 'rename file' value specifies the defined action of renaming an existing file.</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="create file alternate data stream">
<xs:annotation>
<xs:documentation>The 'create file alternate data stream' value specifies the defined action of creating an alternate data stream in an existing file.</xs:documentation>
<xs:documentation>Windows-specific.</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="send control code to file">
<xs:annotation>
<xs:documentation>The 'send control code to file' value specifies the defined action of sending a control code to a file.</xs:documentation>
<xs:documentation>Windows-specific.</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="create file mapping">
<xs:annotation>
<xs:documentation>The 'create file mapping' value specifies the defined action of creating a new file mapping object.</xs:documentation>
<xs:documentation>Windows-specific.</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="open file mapping">
<xs:annotation>
<xs:documentation>The 'open file mapping' value specifies the defined action of opening an existing file mapping object.</xs:documentation>
<xs:documentation>Windows-specific.</xs:documentation>
</xs:annotation>
</xs:enumeration>
</xs:restriction>
</xs:simpleType>
<xs:complexType name="FileActionNameVocab-1.1">
<xs:annotation>
<xs:documentation>The FileActionNameVocab is the default MAEC vocabulary for file action names, captured via the ActionType/Name element in CybOX Core.</xs:documentation>
<xs:documentation>For file action names, it should be used in place of the CybOX ActionNameVocab-1.0.</xs:documentation>
<xs:documentation>Starting with MAEC 4.1, it should be used in place of the deprecated FileActionNameVocab-1.0.</xs:documentation>
</xs:annotation>
<xs:simpleContent>
<xs:restriction base="cyboxCommon:ControlledVocabularyStringType">
<xs:simpleType>
<xs:union memberTypes="maecVocabs:FileActionNameEnum-1.1"/>
</xs:simpleType>
<xs:attribute fixed="MAEC Default File Action Names" name="vocab_name" type="xs:string" use="optional"/>
<xs:attribute fixed="http://maec.mitre.org/XMLSchema/default_vocabularies/2.1/maec_default_vocabularies.xsd#FileActionNameVocab-1.1" name="vocab_reference" type="xs:anyURI" use="optional"/>
</xs:restriction>
</xs:simpleContent>
</xs:complexType>
<xs:simpleType name="FileActionNameEnum-1.1">
<xs:annotation>
<xs:documentation>The FileActionNameEnum is a (non-exhaustive) enumeration of the different actions associated with a file.</xs:documentation>
</xs:annotation>
<xs:restriction base="xs:string">
<xs:enumeration value="create file">
<xs:annotation>
<xs:documentation>The 'create file' value specifies the defined action of creating a new file.</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="delete file">
<xs:annotation>
<xs:documentation>The 'delete file' value specifies the defined action of deleting an existing file.</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="copy file">
<xs:annotation>
<xs:documentation>The 'copy file' value specifies the defined action of copying an existing file from one location to another.</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="create file symbolic link">
<xs:annotation>
<xs:documentation>The 'create file symbolic link' value specifies the defined action of creating a symbolic link to an existing file.</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="find file">
<xs:annotation>
<xs:documentation>The 'find file' value specifies the defined action of searching for an existing file.</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="get file attributes">
<xs:annotation>
<xs:documentation>The 'get file attributes' value specifies the defined action of getting the attributes of an existing file.</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="set file attributes">
<xs:annotation>
<xs:documentation>The 'set file attributes' value specifies the defined action of setting the file attributes for an existing file.</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="lock file">
<xs:annotation>
<xs:documentation>The 'lock file' value specifies the defined action of locking an existing file.</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="unlock file">
<xs:annotation>
<xs:documentation>The 'unlock file' value specifies the defined action of unlocking an existing file.</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="modify file">
<xs:annotation>
<xs:documentation>The 'modify file' value specifies the defined action of modifying an existing file in some manner.</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="move file">
<xs:annotation>
<xs:documentation>The 'move file' value specifies the defined action of moving an existing file from one location to another.</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="open file">
<xs:annotation>
<xs:documentation>The 'open file' value specifies the defined action of opening an existing file for reading or writing.</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="read from file">
<xs:annotation>
<xs:documentation>The 'read from file' value specifies the defined action of reading from an existing file.</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="write to file">
<xs:annotation>
<xs:documentation>The 'write to file' value specifies the defined action of writing to an existing file.</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="rename file">
<xs:annotation>
<xs:documentation>The 'rename file' value specifies the defined action of renaming an existing file.</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="create file alternate data stream">
<xs:annotation>
<xs:documentation>The 'create file alternate data stream' value specifies the defined action of creating an alternate data stream in an existing file.</xs:documentation>
<xs:documentation>Windows-specific.</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="send control code to file">
<xs:annotation>
<xs:documentation>The 'send control code to file' value specifies the defined action of sending a control code to a file.</xs:documentation>
<xs:documentation>Windows-specific.</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="create file mapping">
<xs:annotation>
<xs:documentation>The 'create file mapping' value specifies the defined action of creating a new file mapping object.</xs:documentation>
<xs:documentation>Windows-specific.</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="open file mapping">
<xs:annotation>
<xs:documentation>The 'open file mapping' value specifies the defined action of opening an existing file mapping object.</xs:documentation>
<xs:documentation>Windows-specific.</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="execute file">
<xs:annotation>
<xs:documentation>The 'execute file' value specifies the defined action of executing an existing file.</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="hide file">
<xs:annotation>
<xs:documentation>The 'hide file' value specifies the defined action of hiding an existing file.</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="close file">
<xs:annotation>
<xs:documentation>The 'close file' value specifies the defined action of closing an existing file that previously opened for reading or writing.</xs:documentation>
</xs:annotation>
</xs:enumeration>
</xs:restriction>
</xs:simpleType>
<xs:complexType name="HookingActionNameVocab-1.0">
<xs:annotation>
<xs:documentation>The HookingActionNameVocab is the default MAEC vocabulary for hooking action names, captured via the ActionType/Name element in CybOX Core.</xs:documentation>
<xs:documentation>For hooking action names, it should be used in place of the CybOX ActionNameVocab-1.0.</xs:documentation>
<xs:documentation>Deprecated as of MAEC 4.1.</xs:documentation>
</xs:annotation>
<xs:simpleContent>
<xs:restriction base="cyboxCommon:ControlledVocabularyStringType">
<xs:simpleType>
<xs:union memberTypes="maecVocabs:HookingActionNameEnum-1.0"/>
</xs:simpleType>
<xs:attribute fixed="MAEC Default Hooking Action Names" name="vocab_name" type="xs:string" use="optional"/>
<xs:attribute fixed="http://maec.mitre.org/XMLSchema/default_vocabularies/2.1/maec_default_vocabularies.xsd#HookingActionNameVocab-1.0" name="vocab_reference" type="xs:anyURI" use="optional"/>
</xs:restriction>
</xs:simpleContent>
</xs:complexType>
<xs:simpleType name="HookingActionNameEnum-1.0">
<xs:annotation>
<xs:documentation>The HookingActionNameEnum is a (non-exhaustive) enumeration of the different actions associated with various kinds of hooking.</xs:documentation>
<xs:documentation>Deprecated as of MAEC 4.1.</xs:documentation>
</xs:annotation>
<xs:restriction base="xs:string">
<xs:enumeration value="add system call hook">
<xs:annotation>
<xs:documentation>The 'add system call hook' value specifies the defined action of adding a new system call hook.</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="add windows hook">
<xs:annotation>
<xs:documentation>The 'add windows hook' value specifies the defined action of adding a new Windows application-defined hook procedure.</xs:documentation>
<xs:documentation>Windows-specific.</xs:documentation>
</xs:annotation>
</xs:enumeration>
</xs:restriction>
</xs:simpleType>
<xs:complexType name="HookingActionNameVocab-1.1">
<xs:annotation>
<xs:documentation>The HookingActionNameVocab is the default MAEC vocabulary for hooking action names, captured via the ActionType/Name element in CybOX Core.</xs:documentation>
<xs:documentation>For hooking action names, it should be used in place of the CybOX ActionNameVocab-1.0.</xs:documentation>
<xs:documentation>Starting with MAEC 4.1, it should be used in place of the deprecated HookingActionNameVocab-1.0.</xs:documentation>
</xs:annotation>
<xs:simpleContent>
<xs:restriction base="cyboxCommon:ControlledVocabularyStringType">
<xs:simpleType>
<xs:union memberTypes="maecVocabs:HookingActionNameEnum-1.1"/>
</xs:simpleType>
<xs:attribute fixed="MAEC Default Hooking Action Names" name="vocab_name" type="xs:string" use="optional"/>
<xs:attribute fixed="http://maec.mitre.org/XMLSchema/default_vocabularies/2.1/maec_default_vocabularies.xsd#HookingActionNameVocab-1.1" name="vocab_reference" type="xs:anyURI" use="optional"/>
</xs:restriction>
</xs:simpleContent>
</xs:complexType>
<xs:simpleType name="HookingActionNameEnum-1.1">
<xs:annotation>
<xs:documentation>The HookingActionNameEnum is a (non-exhaustive) enumeration of the different actions associated with various kinds of hooking.</xs:documentation>
</xs:annotation>
<xs:restriction base="xs:string">
<xs:enumeration value="add system call hook">
<xs:annotation>
<xs:documentation>The 'add system call hook' value specifies the defined action of adding a new system call hook.</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="add windows hook">
<xs:annotation>
<xs:documentation>The 'add windows hook' value specifies the defined action of adding a new Windows application-defined hook procedure.</xs:documentation>
<xs:documentation>Windows-specific.</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="hide hook">
<xs:annotation>
<xs:documentation>The 'hide hook' value specifies the defined action of hiding an existing hook.</xs:documentation>
</xs:annotation>
</xs:enumeration>
</xs:restriction>
</xs:simpleType>
<xs:complexType name="DNSActionNameVocab-1.0">
<xs:annotation>
<xs:documentation>The DNSActionNameVocab is the default MAEC vocabulary for DNS action names, captured via the ActionType/Name element in CybOX Core.</xs:documentation>
<xs:documentation>For DNS action names, it should be used in place of the CybOX ActionNameVocab-1.0.</xs:documentation>
</xs:annotation>
<xs:simpleContent>
<xs:restriction base="cyboxCommon:ControlledVocabularyStringType">
<xs:simpleType>
<xs:union memberTypes="maecVocabs:DNSActionNameEnum-1.0"/>
</xs:simpleType>
<xs:attribute fixed="MAEC Default DNS Action Names" name="vocab_name" type="xs:string" use="optional"/>
<xs:attribute fixed="http://maec.mitre.org/XMLSchema/default_vocabularies/2.1/maec_default_vocabularies.xsd#DNSActionNameVocab-1.0" name="vocab_reference" type="xs:anyURI" use="optional"/>
</xs:restriction>
</xs:simpleContent>
</xs:complexType>
<xs:simpleType name="DNSActionNameEnum-1.0">
<xs:annotation>
<xs:documentation>The DNSActionNameEnum is a (non-exhaustive) enumeration of the different actions associated with the Domain Name System (DNS).</xs:documentation>
</xs:annotation>
<xs:restriction base="xs:string">
<xs:enumeration value="send dns query">
<xs:annotation>
<xs:documentation>The 'send dns query' value specifies the defined action of sending a DNS query.</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="send reverse dns lookup">
<xs:annotation>
<xs:documentation>The 'send reverse dns lookup' value specifies the defined action of sending a reverse DNS lookup.</xs:documentation>
</xs:annotation>
</xs:enumeration>
</xs:restriction>
</xs:simpleType>
<xs:complexType name="IRCActionNameVocab-1.0">
<xs:annotation>
<xs:documentation>The IRCActionNameVocab is the default MAEC vocabulary for IRC action names, captured via the ActionType/Name element in CybOX Core.</xs:documentation>
<xs:documentation>For IRC action names, it should be used in place of the CybOX ActionNameVocab-1.0.</xs:documentation>
</xs:annotation>
<xs:simpleContent>
<xs:restriction base="cyboxCommon:ControlledVocabularyStringType">
<xs:simpleType>
<xs:union memberTypes="maecVocabs:IRCActionNameEnum-1.0"/>
</xs:simpleType>
<xs:attribute fixed="MAEC Default IRC Action Names" name="vocab_name" type="xs:string" use="optional"/>
<xs:attribute fixed="http://maec.mitre.org/XMLSchema/default_vocabularies/2.1/maec_default_vocabularies.xsd#IRCActionNameVocab-1.0" name="vocab_reference" type="xs:anyURI" use="optional"/>
</xs:restriction>
</xs:simpleContent>
</xs:complexType>
<xs:simpleType name="IRCActionNameEnum-1.0">
<xs:annotation>
<xs:documentation>The IRCActionNameEnum is a (non-exhaustive) enumeration of the different actions associated with the Internet Relay Chat (IRC).</xs:documentation>
</xs:annotation>
<xs:restriction base="xs:string">
<xs:enumeration value="connect to irc server">
<xs:annotation>
<xs:documentation>The 'connect to irc server' value specifies the defined action of connecting to an existing IRC server.</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="disconnect from irc server">
<xs:annotation>
<xs:documentation>The 'disconnect from irc server' value specifies the defined action of disconnecting from an existing IRC server.</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="set irc nickname">
<xs:annotation>
<xs:documentation>The 'set irc nickname' value specifies the defined action of setting an IRC nickname on an IRC server.</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="join irc channel">
<xs:annotation>
<xs:documentation>The 'join irc channel' value specifies the defined action of joining a channel on an IRC server.</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="leave irc channel">
<xs:annotation>
<xs:documentation>The 'leave irc channel' value specifies the defined action of leaving a channel on an IRC server.</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="send irc private message">
<xs:annotation>
<xs:documentation>The 'send irc private message' value specifies the defined action of sending a private message to another user on an IRC server.</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="receive irc private message">
<xs:annotation>
<xs:documentation>The 'receive irc private message' value specifies the defined action of receiving a private message from another user on an IRC server.</xs:documentation>
</xs:annotation>
</xs:enumeration>
</xs:restriction>
</xs:simpleType>
<xs:complexType name="FTPActionNameVocab-1.0">
<xs:annotation>
<xs:documentation>The FTPActionNameVocab is the default MAEC vocabulary for FTP action names, captured via the ActionType/Name element in CybOX Core.</xs:documentation>
<xs:documentation>For FTP action names, it should be used in place of the CybOX ActionNameVocab-1.0.</xs:documentation>
</xs:annotation>
<xs:simpleContent>
<xs:restriction base="cyboxCommon:ControlledVocabularyStringType">
<xs:simpleType>
<xs:union memberTypes="maecVocabs:FTPActionNameEnum-1.0"/>
</xs:simpleType>
<xs:attribute fixed="MAEC Default FTP Action Names" name="vocab_name" type="xs:string" use="optional"/>
<xs:attribute fixed="http://maec.mitre.org/XMLSchema/default_vocabularies/2.1/maec_default_vocabularies.xsd#FTPActionNameVocab-1.0" name="vocab_reference" type="xs:anyURI" use="optional"/>
</xs:restriction>
</xs:simpleContent>
</xs:complexType>
<xs:simpleType name="FTPActionNameEnum-1.0">
<xs:annotation>
<xs:documentation>The FTPActionNameEnum is a (non-exhaustive) enumeration of the different actions associated with the File Transfer Protocol (FTP).</xs:documentation>
</xs:annotation>
<xs:restriction base="xs:string">
<xs:enumeration value="connect to ftp server">
<xs:annotation>
<xs:documentation>The 'connect to ftp server' value specifies the defined action of connecting to an existing FTP server.</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="disconnect from ftp server">
<xs:annotation>
<xs:documentation>The 'disconnect from ftp server' value specifies the defined action of disconnecting from an existing FTP server.</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="send ftp command">
<xs:annotation>
<xs:documentation>The 'send ftp command' value specifies the defined action of sending a command on an FTP server connection.</xs:documentation>
</xs:annotation>
</xs:enumeration>
</xs:restriction>
</xs:simpleType>
<xs:complexType name="HTTPActionNameVocab-1.0">
<xs:annotation>
<xs:documentation>The HTTPActionNameVocab is the default MAEC vocabulary for HTTP action names, captured via the ActionType/Name element in CybOX Core.</xs:documentation>
<xs:documentation>For HTTP action names, it should be used in place of the CybOX ActionNameVocab-1.0.</xs:documentation>
</xs:annotation>
<xs:simpleContent>
<xs:restriction base="cyboxCommon:ControlledVocabularyStringType">
<xs:simpleType>
<xs:union memberTypes="maecVocabs:HTTPActionNameEnum-1.0"/>
</xs:simpleType>
<xs:attribute fixed="MAEC Default HTTP Action Names" name="vocab_name" type="xs:string" use="optional"/>
<xs:attribute fixed="http://maec.mitre.org/XMLSchema/default_vocabularies/2.1/maec_default_vocabularies.xsd#HTTPActionNameVocab-1.0" name="vocab_reference" type="xs:anyURI" use="optional"/>
</xs:restriction>