-
Notifications
You must be signed in to change notification settings - Fork 21
/
Copy pathvocabularies.xsd
3021 lines (3018 loc) · 139 KB
/
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:stixVocabs="http://docs.oasis-open.org/cti/ns/stix/vocabularies-1" xmlns:cyboxCommon="http://docs.oasis-open.org/cti/ns/cybox/common-2" xmlns:stixCommon="http://docs.oasis-open.org/cti/ns/stix/common-1" targetNamespace="http://docs.oasis-open.org/cti/ns/stix/vocabularies-1" elementFormDefault="qualified" version="1.2.1" xml:lang="en">
<xs:annotation>
<xs:documentation> STIX[TM] Version 1.2.1. Committee Specification Draft 01 / Public Review Draft 01</xs:documentation>
<xs:appinfo>
<schema>STIX Default Vocabularies</schema>
<version>1.2.1</version>
<date>12/15/2015 9:00:00 AM</date>
<short_description>Structured Threat Information eXpression (STIX) - Schematic implementation for controlled vocabularies used in the Structured Threat Information eXchange format.</short_description>
<terms_of_use>Copyright (c) OASIS Open 2016. All Rights Reserved.
Distributed under the terms of the OASIS IPR Policy, [http://www.oasis-open.org/policies-guidelines/ipr], AS-IS, WITHOUT ANY IMPLIED OR EXPRESS WARRANTY; there is no warranty of MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE or NONINFRINGEMENT of the rights of others.</terms_of_use>
<terms_of_use> Portions copyright (c) United States Government 2012-2016. All Rights Reserved.
Source: http://docs.oasis-open.org/cti/stix/v1.2.1/csprd01/schemas/
Latest version of the specification: REPLACE_WITH_SPECIFICATION_URL
TC IPR Statement: https://www.oasis-open.org/committees/cti/ipr.php
</terms_of_use>
</xs:appinfo>
</xs:annotation>
<xs:import namespace="http://docs.oasis-open.org/cti/ns/stix/common-1" schemaLocation="common.xsd"/>
<xs:import namespace="http://docs.oasis-open.org/cti/ns/cybox/common-2" schemaLocation="cybox/common.xsd"/>
<!-- Report Intent Vocabulary -->
<xs:complexType name="ReportIntentVocab-1.0">
<xs:annotation>
<xs:documentation>
The ReportIntentVocab is the default STIX vocabulary for the ReportType Intent field.
Note that this vocabulary is under development. Feedback is appreciated and should be sent to the STIX discussion list.
</xs:documentation>
</xs:annotation>
<xs:simpleContent>
<xs:restriction base="stixCommon:ControlledVocabularyStringType">
<xs:simpleType>
<xs:union memberTypes="stixVocabs:ReportIntentEnum-1.0"/>
</xs:simpleType>
<xs:attribute name="vocab_name" type="xs:string" use="optional" fixed="STIX Default Report Intent Vocabulary"/>
<xs:attribute name="vocab_reference" type="xs:anyURI" use="optional" fixed="http://docs.oasis-open.org/cti/stix-1.2.1-xml-binding/v1.0/csd01/schemas/vocabularies.xsd#ReportIntentVocab-1.0"/>
</xs:restriction>
</xs:simpleContent>
</xs:complexType>
<xs:simpleType name="ReportIntentEnum-1.0">
<xs:annotation>
<xs:documentation>The default set of values to use for a report intent in STIX.</xs:documentation>
<xs:appinfo>
<version>1.0</version>
</xs:appinfo>
</xs:annotation>
<xs:restriction base="xs:string">
<xs:enumeration value="Collective Threat Intelligence">
<xs:annotation>
<xs:documentation>Report is intended to describe a broad characterization of a threat across multiple facets.</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="Threat Report">
<xs:annotation>
<xs:documentation>Report is intended to describe a broad characterization of a threat across multiple facets expressed as a cohesive report.</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="Indicators">
<xs:annotation>
<xs:documentation>Report is intended to describe mainly indicators.</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="Indicators - Phishing">
<xs:annotation>
<xs:documentation>Report is intended to describe mainly phishing indicators.</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="Indicators - Watchlist">
<xs:annotation>
<xs:documentation>Report is intended to describe mainly network watchlist indicators.</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="Indicators - Malware Artifacts">
<xs:annotation>
<xs:documentation>Report is intended to describe mainly malware artifact indicators.</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="Indicators - Network Activity">
<xs:annotation>
<xs:documentation>Report is intended to describe mainly network activity indicators.</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="Indicators - Endpoint Characteristics">
<xs:annotation>
<xs:documentation>Report is intended to describe mainly endpoint characteristics (hashes, registry values, installed software, known vulnerabilities, etc.) indicators.</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="Campaign Characterization">
<xs:annotation>
<xs:documentation>Report is intended to describe mainly a characterization of one or more campaigns.</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="Threat Actor Characterization">
<xs:annotation>
<xs:documentation>Report is intended to describe mainly a characterization of one or more threat actors.</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="Exploit Characterization">
<xs:annotation>
<xs:documentation>Report is intended to describe mainly a characterization of one or more exploits.</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="Attack Pattern Characterization">
<xs:annotation>
<xs:documentation>Report is intended to describe mainly a characterization of one or more attack patterns.</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="Malware Characterization">
<xs:annotation>
<xs:documentation>Report is intended to describe mainly a characterization of one or more malware instances.</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="TTP - Infrastructure">
<xs:annotation>
<xs:documentation>Report is intended to describe mainly a characterization of attacker infrastructure.</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="TTP - Tools">
<xs:annotation>
<xs:documentation>Report is intended to describe mainly a characterization of attacker tools.</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="Courses of Action">
<xs:annotation>
<xs:documentation>Report is intended to describe mainly a set of courses of action.</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="Incident">
<xs:annotation>
<xs:documentation>Report is intended to describe mainly information about one or more incidents.</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="Observations">
<xs:annotation>
<xs:documentation>Report is intended to describe mainly information about instantial observations (cyber observables).</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="Observations - Email">
<xs:annotation>
<xs:documentation>Report is intended to describe mainly information about instantial email observations (email cyber observables).</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="Malware Samples">
<xs:annotation>
<xs:documentation>Report is intended to describe a set of malware samples.</xs:documentation>
</xs:annotation>
</xs:enumeration>
</xs:restriction>
</xs:simpleType>
<!-- Package Intent Vocabulary -->
<xs:complexType name="PackageIntentVocab-1.0">
<xs:annotation>
<xs:documentation>
The PackageIntentVocab is the default STIX vocabulary for Package Intent.
</xs:documentation>
<xs:documentation>NOTE: As of STIX Version 1.2, the PackageIntentVocab is deprecated and should only be used with the deprecated STIXHeaderType/Package_Intent property. Please use a Report and ReportIntentVocab-1.0 instead.</xs:documentation>
<xs:appinfo>
<deprecated>true</deprecated>
</xs:appinfo>
</xs:annotation>
<xs:simpleContent>
<xs:restriction base="stixCommon:ControlledVocabularyStringType">
<xs:simpleType>
<xs:union memberTypes="stixVocabs:PackageIntentEnum-1.0"/>
</xs:simpleType>
<xs:attribute name="vocab_name" type="xs:string" use="optional" fixed="STIX Default Package Intent Vocabulary"/>
<xs:attribute name="vocab_reference" type="xs:anyURI" use="optional" fixed="http://docs.oasis-open.org/cti/stix-1.2.1-xml-binding/v1.0/csd01/schemas/vocabularies.xsd#PackageIntentVocab-1.0"/>
</xs:restriction>
</xs:simpleContent>
</xs:complexType>
<xs:simpleType name="PackageIntentEnum-1.0">
<xs:annotation>
<xs:documentation>The default set of values to use for a package intent in STIX.</xs:documentation>
<xs:documentation>NOTE: As of STIX Version 1.2, the PackageIntentEnum is deprecated and should only be used with the deprecated STIXHeaderType/Package_Intent property. Please use a Report and ReportIntentEnum-1.0 instead.</xs:documentation>
<xs:appinfo>
<version>1.0</version>
<deprecated>true</deprecated>
</xs:appinfo>
</xs:annotation>
<xs:restriction base="xs:string">
<xs:enumeration value="Collective Threat Intelligence">
<xs:annotation>
<xs:documentation>Package is intended to convey a broad characterization of a threat across multiple facets.</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="Threat Report">
<xs:annotation>
<xs:documentation>Package is intended to convey a broad characterization of a threat across multiple facets expressed as a cohesive report.</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="Indicators">
<xs:annotation>
<xs:documentation>Package is intended to convey mainly indicators.</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="Indicators - Phishing">
<xs:annotation>
<xs:documentation>Package is intended to convey mainly phishing indicators.</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="Indicators - Watchlist">
<xs:annotation>
<xs:documentation>Package is intended to convey mainly network watchlist indicators.</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="Indicators - Malware Artifacts">
<xs:annotation>
<xs:documentation>Package is intended to convey mainly malware artifact indicators.</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="Indicators - Network Activity">
<xs:annotation>
<xs:documentation>Package is intended to convey mainly network activity indicators.</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="Indicators - Endpoint Characteristics">
<xs:annotation>
<xs:documentation>Package is intended to convey mainly endpoint characteristics (hashes, registry values, installed software, known vulnerabilities, etc.) indicators.</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="Campaign Characterization">
<xs:annotation>
<xs:documentation>Package is intended to convey mainly a characterization of one or more campaigns.</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="Threat Actor Characterization">
<xs:annotation>
<xs:documentation>Package is intended to convey mainly a characterization of one or more threat actors.</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="Exploit Characterization">
<xs:annotation>
<xs:documentation>Package is intended to convey mainly a characterization of one or more exploits.</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="Attack Pattern Characterization">
<xs:annotation>
<xs:documentation>Package is intended to convey mainly a characterization of one or more attack patterns.</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="Malware Characterization">
<xs:annotation>
<xs:documentation>Package is intended to convey mainly a characterization of one or more malware instances.</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="TTP - Infrastructure">
<xs:annotation>
<xs:documentation>Package is intended to convey mainly a characterization of attacker infrastructure.</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="TTP - Tools">
<xs:annotation>
<xs:documentation>Package is intended to convey mainly a characterization of attacker tools.</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="Courses of Action">
<xs:annotation>
<xs:documentation>Package is intended to convey mainly a set of courses of action.</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="Incident">
<xs:annotation>
<xs:documentation>Package is intended to convey mainly information about one or more incidents.</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="Observations">
<xs:annotation>
<xs:documentation>Package is intended to convey mainly information about instantial observations (cyber observables).</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="Observations - Email">
<xs:annotation>
<xs:documentation>Package is intended to convey mainly information about instantial email observations (email cyber observables).</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="Malware Samples">
<xs:annotation>
<xs:documentation>Package is intended to convey a set of malware samples.</xs:documentation>
</xs:annotation>
</xs:enumeration>
</xs:restriction>
</xs:simpleType>
<!-- Confidence Vocabulary -->
<xs:complexType name="HighMediumLowVocab-1.0">
<xs:annotation>
<xs:documentation>The HighMediumLowVocab is the default STIX vocabulary for expressing basic values that may be high, medium, low, none, or unknown.</xs:documentation>
</xs:annotation>
<xs:simpleContent>
<xs:restriction base="stixCommon:ControlledVocabularyStringType">
<xs:simpleType>
<xs:union memberTypes="stixVocabs:HighMediumLowEnum-1.0"/>
</xs:simpleType>
<xs:attribute name="vocab_name" type="xs:string" use="optional" fixed="STIX Default High/Medium/Low Vocabulary"/>
<xs:attribute name="vocab_reference" type="xs:anyURI" use="optional" fixed="http://docs.oasis-open.org/cti/stix-1.2.1-xml-binding/v1.0/csd01/schemas/vocabularies.xsd#HighMediumLowVocab-1.0"/>
</xs:restriction>
</xs:simpleContent>
</xs:complexType>
<xs:simpleType name="HighMediumLowEnum-1.0">
<xs:annotation>
<xs:documentation>The default set of values to use for expressing a high/medium/low statement in STIX.</xs:documentation>
<xs:appinfo>
<version>1.0</version>
</xs:appinfo>
</xs:annotation>
<xs:restriction base="xs:string">
<xs:enumeration value="High"/>
<xs:enumeration value="Medium"/>
<xs:enumeration value="Low"/>
<xs:enumeration value="None"/>
<xs:enumeration value="Unknown"/>
</xs:restriction>
</xs:simpleType>
<!-- Malware Type Vocabulary -->
<xs:complexType name="MalwareTypeVocab-1.0">
<xs:annotation>
<xs:documentation>
The MalwareTypeVocab is the default STIX vocabulary for expressing types of malware instances.
Note that this vocabulary is under development. Feedback is appreciated and should be sent to the STIX discussion list.</xs:documentation>
</xs:annotation>
<xs:simpleContent>
<xs:restriction base="stixCommon:ControlledVocabularyStringType">
<xs:simpleType>
<xs:union memberTypes="stixVocabs:MalwareTypeEnum-1.0"/>
</xs:simpleType>
<xs:attribute name="vocab_name" type="xs:string" use="optional" fixed="STIX Default Malware Type Vocabulary"/>
<xs:attribute name="vocab_reference" type="xs:anyURI" use="optional" fixed="http://docs.oasis-open.org/cti/stix-1.2.1-xml-binding/v1.0/csd01/schemas/vocabularies.xsd#MalwareTypeVocab-1.0"/>
</xs:restriction>
</xs:simpleContent>
</xs:complexType>
<xs:simpleType name="MalwareTypeEnum-1.0">
<xs:annotation>
<xs:documentation>
The default set of malware types to use for characterizing a malware instance in STIX.
</xs:documentation>
<xs:appinfo>
<version>1.0</version>
<source>The initial version of this enumeration was contributed by iSight Partners, Inc. and is used with their permission.</source>
</xs:appinfo>
</xs:annotation>
<xs:restriction base="xs:string">
<xs:enumeration value="Automated Transfer Scripts"/>
<xs:enumeration value="Adware">
<xs:annotation>
<xs:documentation>Any software that is funded by advertising. Adware may also gather sensitive user information from a system.</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="Dialer">
<xs:annotation>
<xs:documentation>A program to automatically dial a telephone.</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="Bot">
<xs:annotation>
<xs:documentation>A program that resides on an infected system, communicating with and forming part of a botnet. The bot may be implanted by a worm or Trojan, which opens a backdoor. The bot then monitors the backdoor for further instructions.</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="Bot - Credential Theft">
<xs:annotation>
<xs:documentation>A bot for the specific purpose to steal credentials.</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="Bot - DDoS">
<xs:annotation>
<xs:documentation>A bot for the specific purpose to cause a denial of service attack.</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="Bot - Loader"/>
<xs:enumeration value="Bot - Spam">
<xs:annotation>
<xs:documentation>A bot for the specific purpose to send out spam email.</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="DoS / DDoS"/>
<xs:enumeration value="DoS / DDoS - Participatory"/>
<xs:enumeration value="DoS / DDoS - Script"/>
<xs:enumeration value="DoS / DDoS - Stress Test Tools"/>
<xs:enumeration value="Exploit Kits">
<xs:annotation>
<xs:documentation>A software toolkit to target common vulnerabilities.</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="POS / ATM Malware">
<xs:annotation>
<xs:documentation>Malware that exclusively targets point of sale (POS) systems or automatic teller machines (ATMs).</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="Ransomware">
<xs:annotation>
<xs:documentation>A type of malware that encrypts files on a victim's system, demanding payment of ransom in return for the access codes required to unlock files.</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="Remote Access Trojan">
<xs:annotation>
<xs:documentation>A remote access Trojan program or RAT, is a Trojan horse capable of controlling a machine through commands issue by a remote attacker.</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="Rogue Antivirus">
<xs:annotation>
<xs:documentation>A fake security product that demands money to clean phony infections.</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="Rootkit">
<xs:annotation>
<xs:documentation>A method of hiding files or processes from normal methods of monitoring, and is often used by malware to conceal its presence and activities. Rootkits can operate at a number of levels, from the application level - simply replacing or adjusting the settings of system software to prevent the display of certain information - through hooking certain functions or inserting modules or drivers into the operating system kernel, to the deeper level of firmware or virtualization rook kits, which are activated before the operating system and thus even harder to detect while the system is running.</xs:documentation>
</xs:annotation>
</xs:enumeration>
</xs:restriction>
</xs:simpleType>
<!-- Indicator Type Vocabulary -->
<xs:complexType name="IndicatorTypeVocab-1.1">
<xs:annotation>
<xs:documentation>
The IndicatorTypeVocab is the default STIX vocabulary for expressing indicator types.
</xs:documentation>
</xs:annotation>
<xs:simpleContent>
<xs:restriction base="stixCommon:ControlledVocabularyStringType">
<xs:simpleType>
<xs:union memberTypes="stixVocabs:IndicatorTypeEnum-1.1"/>
</xs:simpleType>
<xs:attribute name="vocab_name" type="xs:string" use="optional" fixed="STIX Default Indicator Type Vocabulary"/>
<xs:attribute name="vocab_reference" type="xs:anyURI" use="optional" fixed="http://docs.oasis-open.org/cti/stix-1.2.1-xml-binding/v1.0/csd01/schemas/vocabularies.xsd#IndicatorTypeVocab-1.1"/>
</xs:restriction>
</xs:simpleContent>
</xs:complexType>
<xs:simpleType name="IndicatorTypeEnum-1.1">
<xs:annotation>
<xs:documentation>The default set of Indicator types to use for characterizing Indicators in STIX.</xs:documentation>
<xs:appinfo>
<version>1.1</version>
</xs:appinfo>
</xs:annotation>
<xs:restriction base="xs:string">
<xs:enumeration value="Malicious E-mail">
<xs:annotation>
<xs:documentation>Indicator describes suspected malicious e-mail (phishing, spear phishing, infected, etc.).</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="IP Watchlist">
<xs:annotation>
<xs:documentation>Indicator describes a set of suspected malicious IP addresses or IP blocks.</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="File Hash Watchlist">
<xs:annotation>
<xs:documentation>Indicator describes a set of hashes for suspected malicious files.</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="Domain Watchlist">
<xs:annotation>
<xs:documentation>Indicator describes a set of suspected malicious domains.</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="URL Watchlist">
<xs:annotation>
<xs:documentation>Indicator describes a set of suspected malicious URLS.</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="Malware Artifacts">
<xs:annotation>
<xs:documentation>Indicator describes the effects of suspected malware.</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="C2">
<xs:annotation>
<xs:documentation>Indicator describes suspected command and control activity or static indications.</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="Anonymization">
<xs:annotation>
<xs:documentation>Indicator describes suspected anonymization techniques (Proxy, TOR, VPN, etc.).</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="Exfiltration">
<xs:annotation>
<xs:documentation>Indicator describes suspected exfiltration techniques or behavior.</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="Host Characteristics">
<xs:annotation>
<xs:documentation>Indicator describes suspected malicious host characteristics.</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="Compromised PKI Certificate">
<xs:annotation>
<xs:documentation>Indicator describes a compromised PKI Certificate.</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="Login Name">
<xs:annotation>
<xs:documentation>Indicator describes a compromised Login Name.</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="IMEI Watchlist">
<xs:annotation>
<xs:documentation>Indicator describes a watchlist for IMEI (handset) identifiers.</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="IMSI Watchlist">
<xs:annotation>
<xs:documentation>Indicator describes a watchlist for IMSI (SIM card) identifiers.</xs:documentation>
</xs:annotation>
</xs:enumeration>
</xs:restriction>
</xs:simpleType>
<xs:complexType name="IndicatorTypeVocab-1.0">
<xs:annotation>
<xs:documentation>
The IndicatorTypeVocab is the default STIX vocabulary for expressing indicator types.
</xs:documentation>
<xs:documentation>NOTE: As of STIX Version 1.1, this version of the IndicatorTypeVocab is deprecated. Please use IndicatorTypeVocab-1.1 instead.</xs:documentation>
<xs:appinfo>
<deprecated>true</deprecated>
</xs:appinfo>
</xs:annotation>
<xs:simpleContent>
<xs:restriction base="stixCommon:ControlledVocabularyStringType">
<xs:simpleType>
<xs:union memberTypes="stixVocabs:IndicatorTypeEnum-1.0"/>
</xs:simpleType>
<xs:attribute name="vocab_name" type="xs:string" use="optional" fixed="STIX Default Indicator Type Vocabulary"/>
<xs:attribute name="vocab_reference" type="xs:anyURI" use="optional" fixed="http://docs.oasis-open.org/cti/stix-1.2.1-xml-binding/v1.0/csd01/schemas/vocabularies.xsd#IndicatorTypeVocab-1.0"/>
</xs:restriction>
</xs:simpleContent>
</xs:complexType>
<xs:simpleType name="IndicatorTypeEnum-1.0">
<xs:annotation>
<xs:documentation>The default set of Indicator types to use for characterizing Indicators in STIX.</xs:documentation>
<xs:documentation>NOTE: As of STIX Version 1.1, this version of the IndicatorTypeEnum is deprecated. Please use IndicatorTypeEnum-1.1 instead.</xs:documentation>
<xs:appinfo>
<version>1.0</version>
<deprecated>true</deprecated>
</xs:appinfo>
</xs:annotation>
<xs:restriction base="xs:string">
<xs:enumeration value="Malicious E-mail">
<xs:annotation>
<xs:documentation>Indicator describes suspected malicious e-mail (phishing, spear phishing, infected, etc.).</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="IP Watchlist">
<xs:annotation>
<xs:documentation>Indicator describes a set of suspected malicious IP addresses or IP blocks.</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="File Hash Watchlist">
<xs:annotation>
<xs:documentation>Indicator describes a set of hashes for suspected malicious files.</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="Domain Watchlist">
<xs:annotation>
<xs:documentation>Indicator describes a set of suspected malicious domains.</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="URL Watchlist">
<xs:annotation>
<xs:documentation>Indicator describes a set of suspected malicious URLS.</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="Malware Artifacts">
<xs:annotation>
<xs:documentation>Indicator describes the effects of suspected malware.</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="C2">
<xs:annotation>
<xs:documentation>Indicator describes suspected command and control activity or static indications.</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="Anonymization">
<xs:annotation>
<xs:documentation>Indicator describes suspected anonymization techniques (Proxy, TOR, VPN, etc.).</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="Exfiltration">
<xs:annotation>
<xs:documentation>Indicator describes suspected exfiltration techniques or behavior.</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="Host Characteristics">
<xs:annotation>
<xs:documentation>Indicator describes suspected malicious host characteristics.</xs:documentation>
</xs:annotation>
</xs:enumeration>
</xs:restriction>
</xs:simpleType>
<!-- COA Stage Vocabulary -->
<xs:complexType name="COAStageVocab-1.0">
<xs:annotation>
<xs:documentation>The COAStageVocab is the default STIX vocabulary for expressing the stages of the threat management lifecycle that a COA is applicable to.</xs:documentation>
</xs:annotation>
<xs:simpleContent>
<xs:restriction base="stixCommon:ControlledVocabularyStringType">
<xs:simpleType>
<xs:union memberTypes="stixVocabs:COAStageEnum-1.0"/>
</xs:simpleType>
<xs:attribute name="vocab_name" type="xs:string" use="optional" fixed="STIX Default COA Stages Vocabulary"/>
<xs:attribute name="vocab_reference" type="xs:anyURI" use="optional" fixed="http://docs.oasis-open.org/cti/stix-1.2.1-xml-binding/v1.0/csd01/schemas/vocabularies.xsd#COAStageVocab-1.0"/>
</xs:restriction>
</xs:simpleContent>
</xs:complexType>
<xs:simpleType name="COAStageEnum-1.0">
<xs:annotation>
<xs:documentation>The COAStageVocab enumeration is used to define the default STIX vocabulary for expressing the stages of the threat management lifecycle to which a COA is applicable. </xs:documentation>
<xs:appinfo>
<version>1.0</version>
</xs:appinfo>
</xs:annotation>
<xs:restriction base="xs:string">
<xs:enumeration value="Remedy">
<xs:annotation>
<xs:documentation>This COA is applicable to the "Remedy" stage of the threat management lifecycle, meaning it may be applied proactively to prevent future threats.</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="Response">
<xs:annotation>
<xs:documentation>This COA is applicable to the "Response" stage of the threat management lifecycle, meaning it may be applied as an immediate reaction to an ongoing threat.</xs:documentation>
</xs:annotation>
</xs:enumeration>
</xs:restriction>
</xs:simpleType>
<!-- Campaign Status Vocabulary -->
<xs:complexType name="CampaignStatusVocab-1.0">
<xs:annotation>
<xs:documentation>The CampaignStatusVocab enumeration is used to define the default STIX vocabulary for expressing the status of a campaign.</xs:documentation>
</xs:annotation>
<xs:simpleContent>
<xs:restriction base="stixCommon:ControlledVocabularyStringType">
<xs:simpleType>
<xs:union memberTypes="stixVocabs:CampaignStatusEnum-1.0"/>
</xs:simpleType>
<xs:attribute name="vocab_name" type="xs:string" use="optional" fixed="STIX Default Campaign Status Vocabulary"/>
<xs:attribute name="vocab_reference" type="xs:anyURI" use="optional" fixed="http://docs.oasis-open.org/cti/stix-1.2.1-xml-binding/v1.0/csd01/schemas/vocabularies.xsd#CampaignStatusVocab-1.0"/>
</xs:restriction>
</xs:simpleContent>
</xs:complexType>
<xs:simpleType name="CampaignStatusEnum-1.0">
<xs:annotation>
<xs:documentation>The default list of possible statuses that a campaign might have.</xs:documentation>
<xs:appinfo>
<version>1.0</version>
</xs:appinfo>
</xs:annotation>
<xs:restriction base="xs:string">
<xs:enumeration value="Ongoing">
<xs:annotation>
<xs:documentation>This campaign is currently taking place.</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="Historic">
<xs:annotation>
<xs:documentation>This campaign occurred in the past and is currently not taking place.</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="Future">
<xs:annotation>
<xs:documentation>This campaign is expected to take place in the future.</xs:documentation>
</xs:annotation>
</xs:enumeration>
</xs:restriction>
</xs:simpleType>
<!-- Incident Status Vocabulary -->
<xs:complexType name="IncidentStatusVocab-1.0">
<xs:annotation>
<xs:documentation>The IncidentStatusVocab is the default STIX vocabulary for expressing the status of an incident.</xs:documentation>
</xs:annotation>
<xs:simpleContent>
<xs:restriction base="stixCommon:ControlledVocabularyStringType">
<xs:simpleType>
<xs:union memberTypes="stixVocabs:IncidentStatusEnum-1.0"/>
</xs:simpleType>
<xs:attribute name="vocab_name" type="xs:string" use="optional" fixed="STIX Default Incident Status Vocabulary"/>
<xs:attribute name="vocab_reference" type="xs:anyURI" use="optional" fixed="http://docs.oasis-open.org/cti/stix-1.2.1-xml-binding/v1.0/csd01/schemas/vocabularies.xsd#IncidentStatusVocab-1.0"/>
</xs:restriction>
</xs:simpleContent>
</xs:complexType>
<xs:simpleType name="IncidentStatusEnum-1.0">
<xs:annotation>
<xs:documentation>The default list of possible statuses that an incident might have.</xs:documentation>
<xs:appinfo>
<version>1.0</version>
</xs:appinfo>
</xs:annotation>
<xs:restriction base="xs:string">
<xs:enumeration value="New"/>
<xs:enumeration value="Open">
<xs:annotation>
<xs:documentation>The incident is being investigated.</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="Stalled">
<xs:annotation>
<xs:documentation>The investigation of the incident is open but progress is not being made.</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="Containment Achieved">
<xs:annotation>
<xs:documentation>Any negative impacts of the incident have been mitigated.</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="Restoration Achieved">
<xs:annotation>
<xs:documentation>Any services or operations that were degraded or disrupted have been restored</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="Incident Reported"/>
<xs:enumeration value="Closed">
<xs:annotation>
<xs:documentation>The incident is no longer under investigation.</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="Rejected">
<xs:annotation>
<xs:documentation>The incident was determined to be invalid.</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="Deleted">
<xs:annotation>
<xs:documentation>The incident was marked as “deleted”.</xs:documentation>
</xs:annotation>
</xs:enumeration>
</xs:restriction>
</xs:simpleType>
<!-- Enumerations from VERIS -->
<!-- Security Compromise Vocabulary -->
<xs:complexType name="SecurityCompromiseVocab-1.0">
<xs:annotation>
<xs:documentation>The SecurityCompromiseVocab is the default STIX vocabulary for expressing whether or not an incident resulted in a security compromise.</xs:documentation>
</xs:annotation>
<xs:simpleContent>
<xs:restriction base="stixCommon:ControlledVocabularyStringType">
<xs:simpleType>
<xs:union memberTypes="stixVocabs:SecurityCompromiseEnum-1.0"/>
</xs:simpleType>
<xs:attribute name="vocab_name" type="xs:string" use="optional" fixed="STIX Default Security Compromise Vocabulary"/>
<xs:attribute name="vocab_reference" type="xs:anyURI" use="optional" fixed="http://docs.oasis-open.org/cti/stix-1.2.1-xml-binding/v1.0/csd01/schemas/vocabularies.xsd#SecurityCompromiseVocab-1.0"/>
</xs:restriction>
</xs:simpleContent>
</xs:complexType>
<xs:simpleType name="SecurityCompromiseEnum-1.0">
<xs:annotation>
<xs:documentation>
The possible values for expressing whether an incident resulted in a security compromise.
</xs:documentation>
<xs:appinfo>
<version>1.0</version>
<source>This vocabulary is a part of the VERIS framework and is used with their permission.</source>
</xs:appinfo>
</xs:annotation>
<xs:restriction base="xs:string">
<xs:enumeration value="Yes">
<xs:annotation>
<xs:documentation>It has been confirmed that this incident resulted in a security compromise.</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="Suspected">
<xs:annotation>
<xs:documentation>It is suspected that this incident resulted in a security compromise.</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="No">
<xs:annotation>
<xs:documentation>It has been confirmed that this incident did not result in a security compromise.</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="Unknown">
<xs:annotation>
<xs:documentation>It is not known whether this incident resulted in a security compromise.</xs:documentation>
</xs:annotation>
</xs:enumeration>
</xs:restriction>
</xs:simpleType>
<!-- Discovery Method Vocabulary -->
<xs:complexType name="DiscoveryMethodVocab-2.0">
<xs:annotation>
<xs:documentation>The DiscoveryMethodVocab is the default STIX vocabulary for expressing how an incident was discovered.</xs:documentation>
</xs:annotation>
<xs:simpleContent>
<xs:restriction base="stixCommon:ControlledVocabularyStringType">
<xs:simpleType>
<xs:union memberTypes="stixVocabs:DiscoveryMethodEnum-2.0"/>
</xs:simpleType>
<xs:attribute name="vocab_name" type="xs:string" use="optional" fixed="STIX Default Discovery Method Vocabulary"/>
<xs:attribute name="vocab_reference" type="xs:anyURI" use="optional" fixed="http://docs.oasis-open.org/cti/stix-1.2.1-xml-binding/v1.0/csd01/schemas/vocabularies.xsd#DiscoveryMethodVocab-2.0"/>
</xs:restriction>
</xs:simpleContent>
</xs:complexType>
<xs:simpleType name="DiscoveryMethodEnum-2.0">
<xs:annotation>
<xs:documentation>
The possible values for expressing how an incident was discovered.
</xs:documentation>
<xs:appinfo>
<version>2.0</version>
<source>This vocabulary is a part of the VERIS framework and is used with their permission.</source>
</xs:appinfo>
</xs:annotation>
<xs:restriction base="xs:string">
<xs:enumeration value="Agent Disclosure">
<xs:annotation>
<xs:documentation>This incident was disclosed by the threat agent (e.g. public brag, private blackmail).</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="External - Fraud Detection">
<xs:annotation>
<xs:documentation>This incident was discovered through external fraud detection means (e.g. CPP).</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="Monitoring Service">
<xs:annotation>
<xs:documentation>This incident was reported by a managed security event monitoring service.</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="Law Enforcement">
<xs:annotation>
<xs:documentation>This incident was reported by law enforcement.</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="Customer">
<xs:annotation>
<xs:documentation>This incident was reported by a customer or partner affected by the incident.</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="Unrelated Party">
<xs:annotation>
<xs:documentation>This incident was reported by an unrelated third party.</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="Audit">
<xs:annotation>
<xs:documentation>This incident was discovered during an external security audit or scan.</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="Antivirus">
<xs:annotation>
<xs:documentation>This incident was discovered by an antivirus system.</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="Incident Response">
<xs:annotation>
<xs:documentation>This incident was discovered in the course of investigating a separate incident.</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="Financial Audit">
<xs:annotation>
<xs:documentation>This incident was discovered in the course of a financial audit and/or reconciliation process.</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="Internal - Fraud Detection">
<xs:annotation>
<xs:documentation>This incident was discovered through internal fraud detection means.</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="HIPS">
<xs:annotation>
<xs:documentation>This incident was discovered a host-based IDS or file integrity monitoring.</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="IT Audit">
<xs:annotation>
<xs:documentation>This incident was discovered by an internal IT audit or scan.</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="Log Review">
<xs:annotation>
<xs:documentation>This incident was discovered during a log review process or by a SIEM.</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="NIDS">
<xs:annotation>
<xs:documentation>This incident was discovered by a network-based intrustion detection/prevention system.</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="Security Alarm">
<xs:annotation>
<xs:documentation>This incident was discovered by a physical security alarm.</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="User">
<xs:annotation>
<xs:documentation>This incident was reported by a user.</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="Unknown">
<xs:annotation>
<xs:documentation>It is not known how this incident was discovered.</xs:documentation>
</xs:annotation>
</xs:enumeration>
</xs:restriction>
</xs:simpleType>
<xs:complexType name="DiscoveryMethodVocab-1.0">
<xs:annotation>
<xs:documentation>The DiscoveryMethodVocab is the default STIX vocabulary for expressing how an incident was discovered.</xs:documentation>
<xs:documentation>NOTE: As of STIX Version 1.2, DiscoveryMethodVocab-1.0 is deprecated. Please use version 2.0 instead.
</xs:documentation>
<xs:appinfo>
<version>1.0</version>
<source>This vocabulary is a part of the VERIS framework and is used with their permission.</source>
<deprecated>true</deprecated>
</xs:appinfo>
</xs:annotation>
<xs:simpleContent>
<xs:restriction base="stixCommon:ControlledVocabularyStringType">
<xs:simpleType>
<xs:union memberTypes="stixVocabs:DiscoveryMethodEnum-1.0"/>
</xs:simpleType>
<xs:attribute name="vocab_name" type="xs:string" use="optional" fixed="STIX Default Discovery Method Vocabulary"/>
<xs:attribute name="vocab_reference" type="xs:anyURI" use="optional" fixed="http://docs.oasis-open.org/cti/stix-1.2.1-xml-binding/v1.0/csd01/schemas/vocabularies.xsd#DiscoveryMethodVocab-1.0"/>
</xs:restriction>
</xs:simpleContent>
</xs:complexType>
<xs:simpleType name="DiscoveryMethodEnum-1.0">
<xs:annotation>
<xs:documentation>
The DiscoveryMethodEnum is used to define the default STIX vocabulary for expressing how an incident was discovered.</xs:documentation>
<xs:documentation>
NOTE: As of STIX Version 1.2, DiscoveryMethodEnum-1.0 is deprecated. Please use version 2.0 instead.
</xs:documentation>
<xs:appinfo>
<version>1.0</version>
<source>This vocabulary is a part of the VERIS framework and is used with their permission.</source>
<deprecated>true</deprecated>
</xs:appinfo>
</xs:annotation>
<xs:restriction base="xs:string">
<xs:enumeration value="Agent Disclosure">
<xs:annotation>
<xs:documentation>This incident was disclosed by the threat agent (e.g. public brag, private blackmail).</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="Fraud Detection">
<xs:annotation>
<xs:documentation>This incident was discovered through external fraud detection means (e.g. CPP).</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="Monitoring Service">
<xs:annotation>
<xs:documentation>This incident was reported by a managed security event monitoring service.</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="Law Enforcement">
<xs:annotation>
<xs:documentation>This incident was reported by law enforcement.</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="Customer">
<xs:annotation>
<xs:documentation>This incident was reported by a customer or partner affected by the incident.</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="Unrelated Party">
<xs:annotation>
<xs:documentation>This incident was reported by an unrelated third party.</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="Audit">
<xs:annotation>
<xs:documentation>This incident was discovered during an external security audit or scan.</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="Antivirus">
<xs:annotation>
<xs:documentation>This incident was discovered by an antivirus system.</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="Incident Response">
<xs:annotation>
<xs:documentation>This incident was discovered in the course of investigating a separate incident.</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="Financial Audit">
<xs:annotation>
<xs:documentation>This incident was discovered in the course of a financial audit and/or reconciliation process.</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="Fraud Detection">
<xs:annotation>
<xs:documentation>This incident was discovered through internal fraud detection means.</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="HIPS">
<xs:annotation>
<xs:documentation>This incident was discovered a host-based IDS or file integrity monitoring.</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="IT Audit">
<xs:annotation>
<xs:documentation>This incident was discovered by an internal IT audit or scan.</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="Log Review">
<xs:annotation>
<xs:documentation>This incident was discovered during a log review process or by a SIEM.</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="NIDS">
<xs:annotation>
<xs:documentation>This incident was discovered by a network-based intrustion detection/prevention system.</xs:documentation>