forked from CybOXProject/schemas
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcybox_default_vocabularies.xsd
executable file
·3326 lines (3324 loc) · 139 KB
/
cybox_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:cyboxVocabs="http://cybox.mitre.org/default_vocabularies-2" targetNamespace="http://cybox.mitre.org/default_vocabularies-2" elementFormDefault="qualified" version="2.0.1">
<xs:annotation>
<xs:documentation>This schema was originally developed by The MITRE Corporation. The CybOX XML Schema implementation is maintained by The MITRE Corporation and developed by the open CybOX Community. For more information, including how to get involved in the effort and how to submit change requests, please visit the CybOX website at http://cybox.mitre.org. </xs:documentation>
<xs:appinfo>
<schema>cybox_default_vocabularies</schema>
<version>2.0.1</version>
<date>09/30/2013 9:00:00 AM</date>
<short_description>The following defines types for default controlled vocabularies used within CybOX. 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 CybOX 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-2013, The MITRE Corporation. All rights reserved. The contents of this file are subject to the terms of the CybOX License located at http://cybox.mitre.org/about/termsofuse.html. See the CybOX License for the specific language governing permissions and limitations for use of this schema. When distributing copies of the CybOX Schema, this license header must be included. </terms_of_use>
</xs:appinfo>
</xs:annotation>
<xs:import namespace="http://cybox.mitre.org/common-2" schemaLocation="cybox_common.xsd"/>
<xs:complexType name="ActionTypeVocab-1.0">
<xs:annotation>
<xs:documentation>The ActionTypeVocab is the default CybOX vocabulary for Action Types, captured via the ActionType/Type element in CybOX Core.</xs:documentation>
</xs:annotation>
<xs:simpleContent>
<xs:restriction base="cyboxCommon:ControlledVocabularyStringType">
<xs:simpleType>
<xs:union memberTypes="cyboxVocabs:ActionTypeEnum-1.0"/>
</xs:simpleType>
<xs:attribute name="vocab_name" type="xs:string" use="optional" fixed="CybOX Default Action Types"/>
<xs:attribute name="vocab_reference" type="xs:anyURI" use="optional" fixed="http://cybox.mitre.org/XMLSchema/default_vocabularies/2.0/cybox_default_vocabularies.xsd#ActionTypeVocab-1.0"/>
</xs:restriction>
</xs:simpleContent>
</xs:complexType>
<xs:simpleType name="ActionTypeEnum-1.0">
<xs:annotation>
<xs:documentation>ActionTypeEnum is a (non-exhaustive) enumeration of cyber observable action types.</xs:documentation>
</xs:annotation>
<xs:restriction base="xs:string">
<xs:enumeration value="Accept">
<xs:annotation>
<xs:documentation>Specifies the atomic action of accepting an object or value.</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="Access">
<xs:annotation>
<xs:documentation>Specifies the atomic action of accessing an object.</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="Add">
<xs:annotation>
<xs:documentation>Specifies the atomic action of adding an object.</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="Alert">
<xs:annotation>
<xs:documentation>Specifies the atomic action of issuing an alert.</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="Allocate">
<xs:annotation>
<xs:documentation>Specifies the atomic action of allocating an object.</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="Archive">
<xs:annotation>
<xs:documentation>Specifies the atomic action of archiving an object or data.</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="Assign">
<xs:annotation>
<xs:documentation>Specifies the atomic action of assigning a value to an object.</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="Audit">
<xs:annotation>
<xs:documentation>Specifies the atomic action of auditing an object or data.</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="Backup">
<xs:annotation>
<xs:documentation>Specifies the atomic action of backing up an object or data.</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="Bind">
<xs:annotation>
<xs:documentation>Specifies the atomic action of binding two objects.</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="Block">
<xs:annotation>
<xs:documentation>Specifies the atomic action of blocking access to an object or resource.</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="Call">
<xs:annotation>
<xs:documentation>Specifies the atomic action of calling an object or resource.</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="Change">
<xs:annotation>
<xs:documentation>Specifies the atomic action of changing an object.</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="Check">
<xs:annotation>
<xs:documentation>Specifies the atomic action of checking an object.</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="Clean">
<xs:annotation>
<xs:documentation>Specifies the atomic action of cleaning an object, such as a file system.</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="Click">
<xs:annotation>
<xs:documentation>Specifies the atomic action of clicking an object, as with a mouse.</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="Close">
<xs:annotation>
<xs:documentation>Specifies the atomic action of closing an object, such as a window handle.</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="Compare">
<xs:annotation>
<xs:documentation>Specifies the atomic action of comparing two objects.</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="Compress">
<xs:annotation>
<xs:documentation>Specifies the atomic action of compressing an object.</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="Configure">
<xs:annotation>
<xs:documentation>Specifies the atomic action of configuring a resource.</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="Connect">
<xs:annotation>
<xs:documentation>Specifies the atomic action of connecting to an object, such as a service or resource.</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="Control">
<xs:annotation>
<xs:documentation>Specifies the atomic action of controlling an object or data.</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="Copy/Duplicate">
<xs:annotation>
<xs:documentation>Specifies the atomic action of copying or duplicating an object or data EXCEPT in cases where the object is considered a thread or process as a whole.</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="Create">
<xs:annotation>
<xs:documentation>Specifies the atomic action of creating an object or data.</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="Decode">
<xs:annotation>
<xs:documentation>Specifies the atomic action of decoding an object or data.</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="Decompress">
<xs:annotation>
<xs:documentation>Specifies the atomic action of decompressing an object, such as an archive.</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="Decrypt">
<xs:annotation>
<xs:documentation>Specifies the atomic action of decrypting an object.</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="Deny">
<xs:annotation>
<xs:documentation>Specifies the atomic action of denying access to a object or resource.</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="Depress">
<xs:annotation>
<xs:documentation>Specifies the atomic action of depressing an object that has been pressed, such a button.</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="Detect">
<xs:annotation>
<xs:documentation>Specifies the atomic action of detecting an object.</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="Disconnect">
<xs:annotation>
<xs:documentation>Specifies the atomic action of disconnecting from a service or resource.</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="Download">
<xs:annotation>
<xs:documentation>Specifies the atomic action of downloading an object or data.</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="Draw">
<xs:annotation>
<xs:documentation>Specifies the atomic action of drawing an object.</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="Drop">
<xs:annotation>
<xs:documentation>Specifies the atomic action of dropping an object, such as a connection.</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="Encode">
<xs:annotation>
<xs:documentation>Specifies the atomic action of encoding an object or data.</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="Encrypt">
<xs:annotation>
<xs:documentation>Specifies the atomic action of encrypting an object or data.</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="Enumerate">
<xs:annotation>
<xs:documentation>Specifies the atomic action of enumerating a list of objects.</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="Execute">
<xs:annotation>
<xs:documentation>Specifies the atomic action of executing an object, such as an executable file.</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="Extract">
<xs:annotation>
<xs:documentation>Specifies the atomic action of extracting an object.</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="Filter">
<xs:annotation>
<xs:documentation>Specifies the atomic action of filtering an object or data.</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="Find">
<xs:annotation>
<xs:documentation>Specifies the atomic action of finding an object or data.</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="Flush">
<xs:annotation>
<xs:documentation>Specifies the atomic action of flushing an object or data, such as a cache.</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="Fork">
<xs:annotation>
<xs:documentation>Specifies the atomic action of forking, as with a process. Because this is usually associated with processes and threads and does not generalize to objects, it is DIFFERENT from Copy/Duplicate.</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="Free">
<xs:annotation>
<xs:documentation>Specifies the atomic action of freeing an object.</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="Get">
<xs:annotation>
<xs:documentation>Specifies the atomic action of getting a value from an object.</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="Hook">
<xs:annotation>
<xs:documentation>Specifies the atomic action of hooking an object to another object.</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="Hide">
<xs:annotation>
<xs:documentation>Specifies the atomic action of hiding an object.</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="Impersonate">
<xs:annotation>
<xs:documentation>Specifies the atomic action of impersonation, in which an object performs actions that assume the character or appearance of another object.</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="Initialize">
<xs:annotation>
<xs:documentation>Specifies the atomic action of initializing an object.</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="Inject">
<xs:annotation>
<xs:documentation>Specifies the atomic action of injecting an object.</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="Install">
<xs:annotation>
<xs:documentation>Specifies the atomic action of installing an object, such as an application, program, patch, or other resource.</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="Interleave">
<xs:annotation>
<xs:documentation>Specifies the atomic action of interleaving an object, i.e. the action of arranging data in a non-contiguous way to increase performance.</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="Join">
<xs:annotation>
<xs:documentation>Specifies the atomic action of joining one object to another object. </xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="Kill">
<xs:annotation>
<xs:documentation>Specifies the atomic action of killing an object, as with a thread or program.</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="Listen">
<xs:annotation>
<xs:documentation>Specifies the atomic action of listening to an object, such as to a port on a network connection.</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="Load">
<xs:annotation>
<xs:documentation>Specifies the atomic action of loading an object. </xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="Lock">
<xs:annotation>
<xs:documentation>Specifies the atomic action of locking an object. </xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="Login/Logon">
<xs:annotation>
<xs:documentation>Specifies the atomic action of logging into an object, such as into a system or application. </xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="Logout/Logoff">
<xs:annotation>
<xs:documentation>Specifies the atomic action of logging out of an object, such as a system or application. </xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="Map">
<xs:annotation>
<xs:documentation>Specifies the atomic action of mapping an object to another object or data. </xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="Merge">
<xs:annotation>
<xs:documentation>Specifies the atomic action of merging one object to another object. </xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="Modify">
<xs:annotation>
<xs:documentation>Specifies the atomic action of modifying an object. </xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="Monitor">
<xs:annotation>
<xs:documentation>Specifies the atomic action of monitoring the state of an object.</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="Move">
<xs:annotation>
<xs:documentation>Specifies the atomic action of moving an object.</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="Open">
<xs:annotation>
<xs:documentation>Specifies the atomic action of opening an object.</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="Pack">
<xs:annotation>
<xs:documentation>Specifies the atomic action of packing an object.</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="Pause">
<xs:annotation>
<xs:documentation>Specifies the atomic action of pausing an object, such as a thread or process.</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="Press">
<xs:annotation>
<xs:documentation>Specifies the atomic action of pressing an object, such as a button.</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="Protect">
<xs:annotation>
<xs:documentation>Specifies the atomic action of protecting an object.</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="Quarantine">
<xs:annotation>
<xs:documentation>Specifies the atomic action of placing an object in quarantine, that is, to store the object in an isolated area away from other objects it can operate on.</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="Query">
<xs:annotation>
<xs:documentation>Specifies the atomic action of querying an object.</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="Queue">
<xs:annotation>
<xs:documentation>Specifies the atomic action of queueing an object.</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="Raise">
<xs:annotation>
<xs:documentation>Specifies the atomic action of raising an object.</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="Read">
<xs:annotation>
<xs:documentation>Specifies the atomic action of reading an object.</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="Receive">
<xs:annotation>
<xs:documentation>Specifies the atomic action of receiving an object.</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="Release">
<xs:annotation>
<xs:documentation>Specifies the atomic action of releasing an object.</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="Rename">
<xs:annotation>
<xs:documentation>Specifies the atomic action of renaming an object.</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="Remove/Delete">
<xs:annotation>
<xs:documentation>Specifies the atomic action of removing or deleting an object.</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="Replicate">
<xs:annotation>
<xs:documentation>Specifies the atomic action of replicating an object.</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="Restore">
<xs:annotation>
<xs:documentation>Specifies the atomic action of restoring an object.</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="Resume">
<xs:annotation>
<xs:documentation>Specifies the atomic action of resuming an object, as with a process or thread.</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="Revert">
<xs:annotation>
<xs:documentation>Specifies the atomic action of reverting an object.</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="Run">
<xs:annotation>
<xs:documentation>Specifies the atomic action of running an object, such as an application.</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="Save">
<xs:annotation>
<xs:documentation>Specifies the atomic action of saving an object.</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="Scan">
<xs:annotation>
<xs:documentation>Specifies the atomic action of scanning for an object or data.</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="Schedule">
<xs:annotation>
<xs:documentation>Specifies the atomic action of scheduling an object, such as an event.</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="Search">
<xs:annotation>
<xs:documentation>Specifies the atomic action of searching for an object.</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="Send">
<xs:annotation>
<xs:documentation>Specifies the atomic action of sending an object.</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="Set">
<xs:annotation>
<xs:documentation>Specifies the atomic action of setting an object to a value.</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="Shutdown">
<xs:annotation>
<xs:documentation>Specifies the atomic action of shutting down an object.</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="Sleep">
<xs:annotation>
<xs:documentation>Specifies the atomic action of putting to sleep an object.</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="Snapshot">
<xs:annotation>
<xs:documentation>Specifies the atomic action taking a snapshot of an object.</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="Start">
<xs:annotation>
<xs:documentation>Specifies the atomic action of starting an object, such as a thread or process.</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="Stop">
<xs:annotation>
<xs:documentation>Specifies the atomic action of stopping an object, such as a thread or process.</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="Suspend">
<xs:annotation>
<xs:documentation>Specifies the atomic action of suspending an object, such an account or privileges for an account.</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="Synchronize">
<xs:annotation>
<xs:documentation>Specifies the atomic action of synchronizing an object.</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="Throw">
<xs:annotation>
<xs:documentation>Specifies the atomic action of throwing an object, such as an exception in a programming language.</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="Transmit">
<xs:annotation>
<xs:documentation>Specifies the atomic action of transmitting an object.</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="Unblock">
<xs:annotation>
<xs:documentation>Specifies the atomic action of unblocking an object.</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="Unhide">
<xs:annotation>
<xs:documentation>Specifies the atomic action of unhiding an object.</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="Unhook">
<xs:annotation>
<xs:documentation>Specifies the atomic action of unhooking an object from another object, that is, to detach.</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="Uninstall">
<xs:annotation>
<xs:documentation>Specifies the atomic action of uninstalling an object.</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="Unload">
<xs:annotation>
<xs:documentation>Specifies the atomic action of unloading an object.</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="Unlock">
<xs:annotation>
<xs:documentation>Specifies the atomic action of unlocking an object.</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="Unmap">
<xs:annotation>
<xs:documentation>Specifies the atomic action of unmapping an object from another object or data.</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="Unpack">
<xs:annotation>
<xs:documentation>Specifies the atomic action of unpacking an object, such as an archive.</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="Update">
<xs:annotation>
<xs:documentation>Specifies the atomic action of updating an object.</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="Upgrade">
<xs:annotation>
<xs:documentation>Specifies the atomic action of upgrading an object.</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="Upload">
<xs:annotation>
<xs:documentation>Specifies the atomic action of uploading an object.</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="Wipe/Destroy/Purge">
<xs:annotation>
<xs:documentation>Specifies the atomic action of wiping, destroying, or purging an object.</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="Write">
<xs:annotation>
<xs:documentation>Specifies the atomic action of writing an object.</xs:documentation>
</xs:annotation>
</xs:enumeration>
</xs:restriction>
</xs:simpleType>
<xs:complexType name="ActionNameVocab-1.0">
<xs:annotation>
<xs:documentation>The ActionNameVocab is the default CybOX vocabulary for Action Types, captured via the ActionType/Name element in CybOX Core.</xs:documentation>
</xs:annotation>
<xs:simpleContent>
<xs:restriction base="cyboxCommon:ControlledVocabularyStringType">
<xs:simpleType>
<xs:union memberTypes="cyboxVocabs:ActionNameEnum-1.0"/>
</xs:simpleType>
<xs:attribute name="vocab_name" type="xs:string" use="optional" fixed="CybOX Default Action Names"/>
<xs:attribute name="vocab_reference" type="xs:anyURI" use="optional" fixed="http://cybox.mitre.org/XMLSchema/default_vocabularies/2.0/cybox_default_vocabularies.xsd#DefinedActionNameVocab-1.0"/>
</xs:restriction>
</xs:simpleContent>
</xs:complexType>
<xs:simpleType name="ActionNameEnum-1.0">
<xs:annotation>
<xs:documentation>The ActionNameEnum type is an enumeration of defined action names.</xs:documentation>
</xs:annotation>
<xs:restriction base="xs:string">
<xs:enumeration value="Accept Socket Connection">
<xs:annotation>
<xs:documentation>Specifies the defined action of accepting a socket connection.</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="Add Connection to Network Share">
<xs:annotation>
<xs:documentation>Specifies the defined action of adding a connection to an existing network share.</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="Add Network Share">
<xs:annotation>
<xs:documentation>Specifies the defined action of adding a new network share.</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="Add System Call Hook">
<xs:annotation>
<xs:documentation>Specifies the defined action of adding a new system call hook.</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="Add User">
<xs:annotation>
<xs:documentation>Specifies the defined action of adding a new user.</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="Add Windows Hook">
<xs:annotation>
<xs:documentation>Specifies the defined action of adding a new Windows hook.</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="Add Scheduled Task">
<xs:annotation>
<xs:documentation>Specifies the defined action of adding a scheduled task.</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="Allocate Virtual Memory in Process">
<xs:annotation>
<xs:documentation>Specifies the defined action of allocating virtual memory in a process.</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="Bind Address to Socket">
<xs:annotation>
<xs:documentation>Specifies the defined action of binding an address to a socket.</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="Change Service Configuration">
<xs:annotation>
<xs:documentation>Specifies the defined action of changing the service configuration.</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="Check for Remote Debugger">
<xs:annotation>
<xs:documentation>Specifies the defined action of checking for a remote debugger.</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="Close Port">
<xs:annotation>
<xs:documentation>Specifies the defined action of closing a port.</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="Close Registry Key">
<xs:annotation>
<xs:documentation>Specifies the defined action of closing a registry key.</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="Close Socket">
<xs:annotation>
<xs:documentation>Specifies the defined action of closing a socket.</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="Configure Service">
<xs:annotation>
<xs:documentation>Specifies the defined action of configuring a service.</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="Connect to IP">
<xs:annotation>
<xs:documentation>Specifies the defined action of connecting to an IP address.</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="Connect to Named Pipe">
<xs:annotation>
<xs:documentation>Specifies the defined action of connecting to a named pipe.</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="Connect to Network Share">
<xs:annotation>
<xs:documentation>Specifies the defined action of connecting to a network share.</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="Connect to Socket">
<xs:annotation>
<xs:documentation>Specifies the defined action of connecting to a socket.</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="Connect to URL">
<xs:annotation>
<xs:documentation>Specifies the defined action of connecting to a URL.</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="Control Driver">
<xs:annotation>
<xs:documentation>Specifies the defined action of controlling a driver.</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="Control Service">
<xs:annotation>
<xs:documentation>Specifies the defined action of controlling a service.</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="Copy File">
<xs:annotation>
<xs:documentation>Specifies the defined action of copying a file.</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="Create Dialog Box">
<xs:annotation>
<xs:documentation>Specifies the defined action of creating a dialog box.</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="Create Directory">
<xs:annotation>
<xs:documentation>Specifies the defined action of creating a new directory.</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="Create Event">
<xs:annotation>
<xs:documentation>Specifies the defined action of creating an event.</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="Create File">
<xs:annotation>
<xs:documentation>Specifies the defined action of creating a file.</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="Create File Alternate Data Stream">
<xs:annotation>
<xs:documentation>Specifies the defined action of creating an alternate data stream in a file.</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="Create File Mapping">
<xs:annotation>
<xs:documentation>Specifies the defined action of creating a new file mapping.</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="Create File Symbolic Link">
<xs:annotation>
<xs:documentation>Specifies the defined action of creating a file symbolic link.</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="Create Hidden File">
<xs:annotation>
<xs:documentation>Specifies the defined action of creating a hidden file.</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="Create Mailslot">
<xs:annotation>
<xs:documentation>Specifies the defined action of creating a mailslot.</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="Create Module">
<xs:annotation>
<xs:documentation>Specifies the defined action of creating a module.</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="Create Mutex">
<xs:annotation>
<xs:documentation>Specifies the defined action of creating a mutex.</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="Create Named Pipe">
<xs:annotation>
<xs:documentation>Specifies the defined action of creating a named pipe.</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="Create Process">
<xs:annotation>
<xs:documentation>Specifies the defined action of creating a process.</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="Create Process as User">
<xs:annotation>
<xs:documentation>Specifies the defined action of creating a process as user.</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="Create Registry Key">
<xs:annotation>
<xs:documentation>Specifies the defined action of creating a registry key.</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="Create Registry Key Value">
<xs:annotation>
<xs:documentation>Specifies the defined action of creating a registry key value.</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="Create Remote Thread in Process">
<xs:annotation>
<xs:documentation>Specifies the defined action of creating a remote thread in a process.</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="Create Service">
<xs:annotation>
<xs:documentation>Specifies the defined action of creating a service.</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="Create Socket">
<xs:annotation>
<xs:documentation>Specifies the defined action of creating a socket.</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="Create Symbolic Link">
<xs:annotation>
<xs:documentation>Specifies the defined action of creating a symbolic link.</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="Create Thread">
<xs:annotation>
<xs:documentation>Specifies the defined action of creating a thread.</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="Create Window">
<xs:annotation>
<xs:documentation>Specifies the defined action of creating a window.</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="Delete Directory">
<xs:annotation>
<xs:documentation>Specifies the defined action of deleting a directory.</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="Delete File">
<xs:annotation>
<xs:documentation>Specifies the defined action of deleting a file.</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="Delete Named Pipe">
<xs:annotation>
<xs:documentation>Specifies the defined action of deleting a named pipe.</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="Delete Network Share">
<xs:annotation>
<xs:documentation>Specifies the defined action of deleting a network share.</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="Delete Registry Key">
<xs:annotation>
<xs:documentation>Specifies the defined action of deleting a registry key.</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="Delete Registry Key Value">
<xs:annotation>
<xs:documentation>Specifies the defined action of deleting a registry key value.</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="Delete Service">
<xs:annotation>
<xs:documentation>Specifies the defined action of deleting a service.</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="Delete User">
<xs:annotation>
<xs:documentation>Specifies the defined action of deleting a user.</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="Disconnect from Named Pipe">
<xs:annotation>
<xs:documentation>Specifies the defined action of disconnecting from a named pipe.</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="Disconnect from Network Share">
<xs:annotation>
<xs:documentation>Specifies the defined action of disconnecting from a network share.</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="Disconnect from Socket">
<xs:annotation>
<xs:documentation>Specifies the defined action of disconnecting from a socket.</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="Download File">
<xs:annotation>
<xs:documentation>Specifies the defined action of downloading a file.</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="Enumerate DLLs">
<xs:annotation>
<xs:documentation>Specifies the defined action of enumerating DLLs.</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="Enumerate Network Shares">
<xs:annotation>
<xs:documentation>Specifies the defined action of enumerating network shares.</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="Enumerate Protocols">
<xs:annotation>
<xs:documentation>Specifies the defined action of enumerating protocols.</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="Enumerate Registry Key Subkeys">
<xs:annotation>
<xs:documentation>Specifies the defined action of enumerating registry key subkeys.</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="Enumerate Registry Key Values">
<xs:annotation>
<xs:documentation>Specifies the defined action of enumerating registry key values.</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="Enumerate Threads in Process">
<xs:annotation>
<xs:documentation>Specifies the defined action of enumerating threads in a process.</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="Enumerate Processes">
<xs:annotation>
<xs:documentation>Specifies the defined action of enumerating processes.</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="Enumerate Services">
<xs:annotation>
<xs:documentation>Specifies the defined action of enumerating services.</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="Enumerate System Handles">
<xs:annotation>
<xs:documentation>Specifies the defined action of enumerating system handles.</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="Enumerate Threads">
<xs:annotation>
<xs:documentation>Specifies the defined action of enumerating threads.</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="Enumerate Users">
<xs:annotation>
<xs:documentation>Specifies the defined action of enumerating users.</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="Enumerate Windows">
<xs:annotation>
<xs:documentation>Specifies the defined action of enumerating windows.</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="Find File">
<xs:annotation>
<xs:documentation>Specifies the defined action of finding a file.</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="Find Window">
<xs:annotation>
<xs:documentation>Specifies the defined action of finding a window.</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="Flush Process Instruction Cache">
<xs:annotation>
<xs:documentation>Specifies the defined action of flushing the Process Instruction Cache.</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="Free Library">
<xs:annotation>
<xs:documentation>Specifies the defined action of freeing a library.</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="Free Process Virtual Memory">
<xs:annotation>
<xs:documentation>Specifies the defined action of freeing virtual memory from a process.</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="Get Disk Free Space">
<xs:annotation>
<xs:documentation>Specifies the defined action of getting the amount of free space available on a disk.</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="Get Disk Type">
<xs:annotation>
<xs:documentation>Specifies the defined action of getting the disk type.</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="Get Elapsed System Up Time">
<xs:annotation>
<xs:documentation>Specifies the defined action of getting the elapsed system up-time.</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="Get File Attributes">
<xs:annotation>
<xs:documentation>Specifies the defined action of getting file attributes.</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="Get Function Address">
<xs:annotation>