stix_schema_spy 1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +15 -0
- data/.gitignore +17 -0
- data/Gemfile +4 -0
- data/LICENSE.txt +24 -0
- data/README.md +41 -0
- data/Rakefile +3 -0
- data/config/1.0.1/stix/README.md +20 -0
- data/config/1.0.1/stix/campaign.xsd +210 -0
- data/config/1.0.1/stix/course_of_action.xsd +166 -0
- data/config/1.0.1/stix/cybox/README.md +13 -0
- data/config/1.0.1/stix/cybox/cybox_common.xsd +2319 -0
- data/config/1.0.1/stix/cybox/cybox_core.xsd +1095 -0
- data/config/1.0.1/stix/cybox/cybox_default_vocabularies.xsd +3326 -0
- data/config/1.0.1/stix/cybox/extensions/platform/README.txt +1 -0
- data/config/1.0.1/stix/cybox/extensions/platform/cpe-language_2.3.xsd +234 -0
- data/config/1.0.1/stix/cybox/extensions/platform/cpe-naming_2.3.xsd +45 -0
- data/config/1.0.1/stix/cybox/extensions/platform/cpe2.3.xsd +40 -0
- data/config/1.0.1/stix/cybox/extensions/platform/xml.xsd +145 -0
- data/config/1.0.1/stix/cybox/objects/API_Object.xsd +55 -0
- data/config/1.0.1/stix/cybox/objects/Account_Object.xsd +50 -0
- data/config/1.0.1/stix/cybox/objects/Address_Object.xsd +122 -0
- data/config/1.0.1/stix/cybox/objects/Artifact_Object.xsd +206 -0
- data/config/1.0.1/stix/cybox/objects/Code_Object.xsd +417 -0
- data/config/1.0.1/stix/cybox/objects/Custom_Object.xsd +43 -0
- data/config/1.0.1/stix/cybox/objects/DNS_Cache_Object.xsd +53 -0
- data/config/1.0.1/stix/cybox/objects/DNS_Query_Object.xsd +159 -0
- data/config/1.0.1/stix/cybox/objects/DNS_Record_Object.xsd +87 -0
- data/config/1.0.1/stix/cybox/objects/Device_Object.xsd +55 -0
- data/config/1.0.1/stix/cybox/objects/Disk_Object.xsd +117 -0
- data/config/1.0.1/stix/cybox/objects/Disk_Partition_Object.xsd +199 -0
- data/config/1.0.1/stix/cybox/objects/Email_Message_Object.xsd +273 -0
- data/config/1.0.1/stix/cybox/objects/File_Object.xsd +359 -0
- data/config/1.0.1/stix/cybox/objects/GUI_Dialogbox_Object.xsd +41 -0
- data/config/1.0.1/stix/cybox/objects/GUI_Object.xsd +40 -0
- data/config/1.0.1/stix/cybox/objects/GUI_Window_Object.xsd +46 -0
- data/config/1.0.1/stix/cybox/objects/HTTP_Session_Object.xsd +623 -0
- data/config/1.0.1/stix/cybox/objects/Library_Object.xsd +114 -0
- data/config/1.0.1/stix/cybox/objects/Link_Object.xsd +36 -0
- data/config/1.0.1/stix/cybox/objects/Linux_Package_Object.xsd +119 -0
- data/config/1.0.1/stix/cybox/objects/Memory_Object.xsd +70 -0
- data/config/1.0.1/stix/cybox/objects/Mutex_Object.xsd +40 -0
- data/config/1.0.1/stix/cybox/objects/Network_Connection_Object.xsd +609 -0
- data/config/1.0.1/stix/cybox/objects/Network_Flow_Object.xsd +1559 -0
- data/config/1.0.1/stix/cybox/objects/Network_Packet_Object.xsd +2948 -0
- data/config/1.0.1/stix/cybox/objects/Network_Route_Entry_Object.xsd +155 -0
- data/config/1.0.1/stix/cybox/objects/Network_Route_Object.xsd +93 -0
- data/config/1.0.1/stix/cybox/objects/Network_Socket_Object.xsd +524 -0
- data/config/1.0.1/stix/cybox/objects/Network_Subnet_Object.xsd +64 -0
- data/config/1.0.1/stix/cybox/objects/PDF_File_Object.xsd +601 -0
- data/config/1.0.1/stix/cybox/objects/Pipe_Object.xsd +40 -0
- data/config/1.0.1/stix/cybox/objects/Port_Object.xsd +74 -0
- data/config/1.0.1/stix/cybox/objects/Process_Object.xsd +197 -0
- data/config/1.0.1/stix/cybox/objects/Product_Object.xsd +60 -0
- data/config/1.0.1/stix/cybox/objects/Semaphore_Object.xsd +50 -0
- data/config/1.0.1/stix/cybox/objects/Socket_Address_Object.xsd +42 -0
- data/config/1.0.1/stix/cybox/objects/System_Object.xsd +409 -0
- data/config/1.0.1/stix/cybox/objects/URI_Object.xsd +62 -0
- data/config/1.0.1/stix/cybox/objects/Unix_File_Object.xsd +164 -0
- data/config/1.0.1/stix/cybox/objects/Unix_Network_Route_Entry_Object.xsd +56 -0
- data/config/1.0.1/stix/cybox/objects/Unix_Pipe_Object.xsd +36 -0
- data/config/1.0.1/stix/cybox/objects/Unix_Process_Object.xsd +143 -0
- data/config/1.0.1/stix/cybox/objects/Unix_User_Account_Object.xsd +78 -0
- data/config/1.0.1/stix/cybox/objects/Unix_Volume_Object.xsd +41 -0
- data/config/1.0.1/stix/cybox/objects/User_Account_Object.xsd +110 -0
- data/config/1.0.1/stix/cybox/objects/User_Session_Object.xsd +60 -0
- data/config/1.0.1/stix/cybox/objects/Volume_Object.xsd +235 -0
- data/config/1.0.1/stix/cybox/objects/Whois_Object.xsd +456 -0
- data/config/1.0.1/stix/cybox/objects/Win_Computer_Account_Object.xsd +135 -0
- data/config/1.0.1/stix/cybox/objects/Win_Critical_Section_Object.xsd +40 -0
- data/config/1.0.1/stix/cybox/objects/Win_Driver_Object.xsd +269 -0
- data/config/1.0.1/stix/cybox/objects/Win_Event_Log_Object.xsd +137 -0
- data/config/1.0.1/stix/cybox/objects/Win_Event_Object.xsd +80 -0
- data/config/1.0.1/stix/cybox/objects/Win_Executable_File_Object.xsd +1333 -0
- data/config/1.0.1/stix/cybox/objects/Win_File_Object.xsd +269 -0
- data/config/1.0.1/stix/cybox/objects/Win_Handle_Object.xsd +186 -0
- data/config/1.0.1/stix/cybox/objects/Win_Kernel_Hook_Object.xsd +109 -0
- data/config/1.0.1/stix/cybox/objects/Win_Kernel_Object.xsd +128 -0
- data/config/1.0.1/stix/cybox/objects/Win_Mailslot_Object.xsd +56 -0
- data/config/1.0.1/stix/cybox/objects/Win_Memory_Page_Region_Object.xsd +198 -0
- data/config/1.0.1/stix/cybox/objects/Win_Mutex_Object.xsd +42 -0
- data/config/1.0.1/stix/cybox/objects/Win_Network_Route_Entry_Object.xsd +200 -0
- data/config/1.0.1/stix/cybox/objects/Win_Network_Share_Object.xsd +205 -0
- data/config/1.0.1/stix/cybox/objects/Win_Pipe_Object.xsd +73 -0
- data/config/1.0.1/stix/cybox/objects/Win_Prefetch_Object.xsd +113 -0
- data/config/1.0.1/stix/cybox/objects/Win_Process_Object.xsd +167 -0
- data/config/1.0.1/stix/cybox/objects/Win_Registry_Key_Object.xsd +290 -0
- data/config/1.0.1/stix/cybox/objects/Win_Semaphore_Object.xsd +42 -0
- data/config/1.0.1/stix/cybox/objects/Win_Service_Object.xsd +287 -0
- data/config/1.0.1/stix/cybox/objects/Win_System_Object.xsd +126 -0
- data/config/1.0.1/stix/cybox/objects/Win_System_Restore_Object.xsd +199 -0
- data/config/1.0.1/stix/cybox/objects/Win_Task_Object.xsd +755 -0
- data/config/1.0.1/stix/cybox/objects/Win_Thread_Object.xsd +146 -0
- data/config/1.0.1/stix/cybox/objects/Win_User_Account_Object.xsd +73 -0
- data/config/1.0.1/stix/cybox/objects/Win_Volume_Object.xsd +161 -0
- data/config/1.0.1/stix/cybox/objects/Win_Waitable_Timer_Object.xsd +90 -0
- data/config/1.0.1/stix/cybox/objects/X509_Certificate_Object.xsd +270 -0
- data/config/1.0.1/stix/data_marking.xsd +92 -0
- data/config/1.0.1/stix/exploit_target.xsd +224 -0
- data/config/1.0.1/stix/extensions/address/ciq_address_3.0.xsd +27 -0
- data/config/1.0.1/stix/extensions/address/readme.txt +1 -0
- data/config/1.0.1/stix/extensions/attack_pattern/capec_2.6.1.xsd +31 -0
- data/config/1.0.1/stix/extensions/attack_pattern/readme.txt +1 -0
- data/config/1.0.1/stix/extensions/identity/ciq_identity_3.0.xsd +108 -0
- data/config/1.0.1/stix/extensions/identity/readme.txt +1 -0
- data/config/1.0.1/stix/extensions/malware/maec_4.0.1.xsd +31 -0
- data/config/1.0.1/stix/extensions/malware/readme.txt +1 -0
- data/config/1.0.1/stix/extensions/marking/simple_marking.xsd +30 -0
- data/config/1.0.1/stix/extensions/marking/tlp.xsd +39 -0
- data/config/1.0.1/stix/extensions/structured_coa/generic.xsd +46 -0
- data/config/1.0.1/stix/extensions/test_mechanism/generic.xsd +46 -0
- data/config/1.0.1/stix/extensions/test_mechanism/open_ioc_2010.xsd +32 -0
- data/config/1.0.1/stix/extensions/test_mechanism/oval_5.10.xsd +37 -0
- data/config/1.0.1/stix/extensions/test_mechanism/snort.xsd +36 -0
- data/config/1.0.1/stix/extensions/test_mechanism/yara.xsd +36 -0
- data/config/1.0.1/stix/extensions/vulnerability/cvrf_1.1.xsd +33 -0
- data/config/1.0.1/stix/extensions/vulnerability/readme.txt +1 -0
- data/config/1.0.1/stix/external/capec_2.6.1/ap_schema_v2.6.1.xsd +3618 -0
- data/config/1.0.1/stix/external/cvrf_1.1/common.xsd +176 -0
- data/config/1.0.1/stix/external/cvrf_1.1/cpe-language_2.2a.xsd +182 -0
- data/config/1.0.1/stix/external/cvrf_1.1/cvrf.xsd +487 -0
- data/config/1.0.1/stix/external/cvrf_1.1/cvss-v2_0.9.xsd +415 -0
- data/config/1.0.1/stix/external/cvrf_1.1/dc.xsd +118 -0
- data/config/1.0.1/stix/external/cvrf_1.1/prod.xsd +292 -0
- data/config/1.0.1/stix/external/cvrf_1.1/scap-core_0.9.xsd +170 -0
- data/config/1.0.1/stix/external/cvrf_1.1/vuln.xsd +631 -0
- data/config/1.0.1/stix/external/cvrf_1.1/xml.xsd +287 -0
- data/config/1.0.1/stix/external/maec_4.0.1/maec_bundle_schema.xsd +1139 -0
- data/config/1.0.1/stix/external/maec_4.0.1/maec_package_schema.xsd +938 -0
- data/config/1.0.1/stix/external/maec_4.0.1/metadataSharing.xsd +1712 -0
- data/config/1.0.1/stix/external/oasis_ciq_3.0/CommonTypes.xsd +104 -0
- data/config/1.0.1/stix/external/oasis_ciq_3.0/xAL-types.xsd +511 -0
- data/config/1.0.1/stix/external/oasis_ciq_3.0/xAL.xsd +672 -0
- data/config/1.0.1/stix/external/oasis_ciq_3.0/xNAL-types.xsd +36 -0
- data/config/1.0.1/stix/external/oasis_ciq_3.0/xNAL.xsd +126 -0
- data/config/1.0.1/stix/external/oasis_ciq_3.0/xNL-types.xsd +222 -0
- data/config/1.0.1/stix/external/oasis_ciq_3.0/xNL.xsd +284 -0
- data/config/1.0.1/stix/external/oasis_ciq_3.0/xPIL-types.xsd +854 -0
- data/config/1.0.1/stix/external/oasis_ciq_3.0/xPIL.xsd +1621 -0
- data/config/1.0.1/stix/external/oasis_ciq_3.0/xlink-2003-12-31.xsd +90 -0
- data/config/1.0.1/stix/external/open_ioc_2010/ioc-TR.xsd +25 -0
- data/config/1.0.1/stix/external/open_ioc_2010/ioc.xsd +105 -0
- data/config/1.0.1/stix/external/oval_5.10/oval-common-schema.xsd +781 -0
- data/config/1.0.1/stix/external/oval_5.10/oval-definitions-schema.xsd +1608 -0
- data/config/1.0.1/stix/external/oval_5.10/oval-variables-schema.xsd +84 -0
- data/config/1.0.1/stix/external/oval_5.10/xmldsig-core-schema.xsd +309 -0
- data/config/1.0.1/stix/incident.xsd +787 -0
- data/config/1.0.1/stix/indicator.xsd +310 -0
- data/config/1.0.1/stix/stix_common.xsd +762 -0
- data/config/1.0.1/stix/stix_core.xsd +218 -0
- data/config/1.0.1/stix/stix_default_vocabularies.xsd +1684 -0
- data/config/1.0.1/stix/threat_actor.xsd +174 -0
- data/config/1.0.1/stix/ttp.xsd +341 -0
- data/config/1.0/stix/campaign.xsd +209 -0
- data/config/1.0/stix/course_of_action.xsd +165 -0
- data/config/1.0/stix/cybox/cybox_common.xsd +2319 -0
- data/config/1.0/stix/cybox/cybox_core.xsd +1090 -0
- data/config/1.0/stix/cybox/cybox_default_vocabularies.xsd +3106 -0
- data/config/1.0/stix/cybox/extensions/platform/README.txt +1 -0
- data/config/1.0/stix/cybox/extensions/platform/cpe2.3.xsd +40 -0
- data/config/1.0/stix/cybox/objects/API_Object.xsd +55 -0
- data/config/1.0/stix/cybox/objects/Account_Object.xsd +50 -0
- data/config/1.0/stix/cybox/objects/Address_Object.xsd +122 -0
- data/config/1.0/stix/cybox/objects/Artifact_Object.xsd +206 -0
- data/config/1.0/stix/cybox/objects/Code_Object.xsd +417 -0
- data/config/1.0/stix/cybox/objects/Custom_Object.xsd +43 -0
- data/config/1.0/stix/cybox/objects/DNS_Cache_Object.xsd +53 -0
- data/config/1.0/stix/cybox/objects/DNS_Query_Object.xsd +159 -0
- data/config/1.0/stix/cybox/objects/DNS_Record_Object.xsd +87 -0
- data/config/1.0/stix/cybox/objects/Device_Object.xsd +55 -0
- data/config/1.0/stix/cybox/objects/Disk_Object.xsd +117 -0
- data/config/1.0/stix/cybox/objects/Disk_Partition_Object.xsd +199 -0
- data/config/1.0/stix/cybox/objects/Email_Message_Object.xsd +273 -0
- data/config/1.0/stix/cybox/objects/File_Object.xsd +359 -0
- data/config/1.0/stix/cybox/objects/GUI_Dialogbox_Object.xsd +41 -0
- data/config/1.0/stix/cybox/objects/GUI_Object.xsd +40 -0
- data/config/1.0/stix/cybox/objects/GUI_Window_Object.xsd +46 -0
- data/config/1.0/stix/cybox/objects/HTTP_Session_Object.xsd +623 -0
- data/config/1.0/stix/cybox/objects/Library_Object.xsd +114 -0
- data/config/1.0/stix/cybox/objects/Link_Object.xsd +24 -0
- data/config/1.0/stix/cybox/objects/Linux_Package_Object.xsd +119 -0
- data/config/1.0/stix/cybox/objects/Memory_Object.xsd +70 -0
- data/config/1.0/stix/cybox/objects/Mutex_Object.xsd +40 -0
- data/config/1.0/stix/cybox/objects/Network_Connection_Object.xsd +609 -0
- data/config/1.0/stix/cybox/objects/Network_Flow_Object.xsd +1559 -0
- data/config/1.0/stix/cybox/objects/Network_Packet_Object.xsd +2948 -0
- data/config/1.0/stix/cybox/objects/Network_Route_Entry_Object.xsd +155 -0
- data/config/1.0/stix/cybox/objects/Network_Route_Object.xsd +93 -0
- data/config/1.0/stix/cybox/objects/Network_Socket_Object.xsd +524 -0
- data/config/1.0/stix/cybox/objects/Network_Subnet_Object.xsd +64 -0
- data/config/1.0/stix/cybox/objects/PDF_File_Object.xsd +601 -0
- data/config/1.0/stix/cybox/objects/Pipe_Object.xsd +40 -0
- data/config/1.0/stix/cybox/objects/Port_Object.xsd +74 -0
- data/config/1.0/stix/cybox/objects/Process_Object.xsd +197 -0
- data/config/1.0/stix/cybox/objects/Product_Object.xsd +60 -0
- data/config/1.0/stix/cybox/objects/Semaphore_Object.xsd +50 -0
- data/config/1.0/stix/cybox/objects/Socket_Address_Object.xsd +42 -0
- data/config/1.0/stix/cybox/objects/System_Object.xsd +409 -0
- data/config/1.0/stix/cybox/objects/URI_Object.xsd +62 -0
- data/config/1.0/stix/cybox/objects/Unix_File_Object.xsd +164 -0
- data/config/1.0/stix/cybox/objects/Unix_Network_Route_Entry_Object.xsd +56 -0
- data/config/1.0/stix/cybox/objects/Unix_Pipe_Object.xsd +36 -0
- data/config/1.0/stix/cybox/objects/Unix_Process_Object.xsd +143 -0
- data/config/1.0/stix/cybox/objects/Unix_User_Account_Object.xsd +78 -0
- data/config/1.0/stix/cybox/objects/Unix_Volume_Object.xsd +41 -0
- data/config/1.0/stix/cybox/objects/User_Account_Object.xsd +110 -0
- data/config/1.0/stix/cybox/objects/User_Session_Object.xsd +60 -0
- data/config/1.0/stix/cybox/objects/Volume_Object.xsd +235 -0
- data/config/1.0/stix/cybox/objects/Whois_Object.xsd +456 -0
- data/config/1.0/stix/cybox/objects/Win_Computer_Account_Object.xsd +135 -0
- data/config/1.0/stix/cybox/objects/Win_Critical_Section_Object.xsd +40 -0
- data/config/1.0/stix/cybox/objects/Win_Driver_Object.xsd +269 -0
- data/config/1.0/stix/cybox/objects/Win_Event_Log_Object.xsd +137 -0
- data/config/1.0/stix/cybox/objects/Win_Event_Object.xsd +80 -0
- data/config/1.0/stix/cybox/objects/Win_Executable_File_Object.xsd +1333 -0
- data/config/1.0/stix/cybox/objects/Win_File_Object.xsd +269 -0
- data/config/1.0/stix/cybox/objects/Win_Handle_Object.xsd +186 -0
- data/config/1.0/stix/cybox/objects/Win_Kernel_Hook_Object.xsd +109 -0
- data/config/1.0/stix/cybox/objects/Win_Kernel_Object.xsd +128 -0
- data/config/1.0/stix/cybox/objects/Win_Mailslot_Object.xsd +56 -0
- data/config/1.0/stix/cybox/objects/Win_Memory_Page_Region_Object.xsd +198 -0
- data/config/1.0/stix/cybox/objects/Win_Mutex_Object.xsd +42 -0
- data/config/1.0/stix/cybox/objects/Win_Network_Route_Entry_Object.xsd +200 -0
- data/config/1.0/stix/cybox/objects/Win_Network_Share_Object.xsd +205 -0
- data/config/1.0/stix/cybox/objects/Win_Pipe_Object.xsd +73 -0
- data/config/1.0/stix/cybox/objects/Win_Prefetch_Object.xsd +113 -0
- data/config/1.0/stix/cybox/objects/Win_Process_Object.xsd +167 -0
- data/config/1.0/stix/cybox/objects/Win_Registry_Key_Object.xsd +290 -0
- data/config/1.0/stix/cybox/objects/Win_Semaphore_Object.xsd +42 -0
- data/config/1.0/stix/cybox/objects/Win_Service_Object.xsd +287 -0
- data/config/1.0/stix/cybox/objects/Win_System_Object.xsd +126 -0
- data/config/1.0/stix/cybox/objects/Win_System_Restore_Object.xsd +199 -0
- data/config/1.0/stix/cybox/objects/Win_Task_Object.xsd +755 -0
- data/config/1.0/stix/cybox/objects/Win_Thread_Object.xsd +146 -0
- data/config/1.0/stix/cybox/objects/Win_User_Account_Object.xsd +73 -0
- data/config/1.0/stix/cybox/objects/Win_Volume_Object.xsd +161 -0
- data/config/1.0/stix/cybox/objects/Win_Waitable_Timer_Object.xsd +90 -0
- data/config/1.0/stix/cybox/objects/X509_Certificate_Object.xsd +270 -0
- data/config/1.0/stix/data_marking.xsd +92 -0
- data/config/1.0/stix/exploit_target.xsd +223 -0
- data/config/1.0/stix/extensions/address/ciq_address_3.0.xsd +27 -0
- data/config/1.0/stix/extensions/address/readme.txt +1 -0
- data/config/1.0/stix/extensions/attack_pattern/capec_2.5.xsd +31 -0
- data/config/1.0/stix/extensions/identity/ciq_identity_3.0.xsd +108 -0
- data/config/1.0/stix/extensions/identity/readme.txt +1 -0
- data/config/1.0/stix/extensions/malware/maec_4.0.xsd +32 -0
- data/config/1.0/stix/extensions/malware/readme.txt +3 -0
- data/config/1.0/stix/extensions/marking/simple_marking.xsd +30 -0
- data/config/1.0/stix/extensions/marking/tlp.xsd +39 -0
- data/config/1.0/stix/extensions/structured_coa/generic.xsd +46 -0
- data/config/1.0/stix/extensions/test_mechanism/generic.xsd +46 -0
- data/config/1.0/stix/extensions/test_mechanism/open_ioc_2010.xsd +32 -0
- data/config/1.0/stix/extensions/test_mechanism/oval_5.10.xsd +37 -0
- data/config/1.0/stix/extensions/test_mechanism/snort.xsd +36 -0
- data/config/1.0/stix/extensions/test_mechanism/yara.xsd +36 -0
- data/config/1.0/stix/extensions/vulnerability/cvrf_1.1.xsd +33 -0
- data/config/1.0/stix/extensions/vulnerability/readme.txt +1 -0
- data/config/1.0/stix/external/capec_2.5/ap_schema_v2.5.xsd +2671 -0
- data/config/1.0/stix/external/cvrf_1.1/common.xsd +176 -0
- data/config/1.0/stix/external/cvrf_1.1/cpe-language_2.2a.xsd +182 -0
- data/config/1.0/stix/external/cvrf_1.1/cvrf.xsd +487 -0
- data/config/1.0/stix/external/cvrf_1.1/cvss-v2_0.9.xsd +415 -0
- data/config/1.0/stix/external/cvrf_1.1/dc.xsd +118 -0
- data/config/1.0/stix/external/cvrf_1.1/prod.xsd +292 -0
- data/config/1.0/stix/external/cvrf_1.1/scap-core_0.9.xsd +170 -0
- data/config/1.0/stix/external/cvrf_1.1/vuln.xsd +631 -0
- data/config/1.0/stix/external/cvrf_1.1/xml.xsd +287 -0
- data/config/1.0/stix/external/oasis_ciq_3.0/CommonTypes.xsd +104 -0
- data/config/1.0/stix/external/oasis_ciq_3.0/xAL-types.xsd +511 -0
- data/config/1.0/stix/external/oasis_ciq_3.0/xAL.xsd +672 -0
- data/config/1.0/stix/external/oasis_ciq_3.0/xNAL-types.xsd +36 -0
- data/config/1.0/stix/external/oasis_ciq_3.0/xNAL.xsd +126 -0
- data/config/1.0/stix/external/oasis_ciq_3.0/xNL-types.xsd +222 -0
- data/config/1.0/stix/external/oasis_ciq_3.0/xNL.xsd +284 -0
- data/config/1.0/stix/external/oasis_ciq_3.0/xPIL-types.xsd +854 -0
- data/config/1.0/stix/external/oasis_ciq_3.0/xPIL.xsd +1621 -0
- data/config/1.0/stix/external/oasis_ciq_3.0/xlink-2003-12-31.xsd +90 -0
- data/config/1.0/stix/external/open_ioc_2010/ioc-TR.xsd +25 -0
- data/config/1.0/stix/external/open_ioc_2010/ioc.xsd +105 -0
- data/config/1.0/stix/external/oval_5.10/oval-common-schema.xsd +781 -0
- data/config/1.0/stix/external/oval_5.10/oval-definitions-schema.xsd +1608 -0
- data/config/1.0/stix/external/oval_5.10/oval-variables-schema.xsd +84 -0
- data/config/1.0/stix/external/oval_5.10/xmldsig-core-schema.xsd +309 -0
- data/config/1.0/stix/incident.xsd +786 -0
- data/config/1.0/stix/indicator.xsd +309 -0
- data/config/1.0/stix/stix_common.xsd +762 -0
- data/config/1.0/stix/stix_core.xsd +217 -0
- data/config/1.0/stix/stix_default_vocabularies.xsd +1578 -0
- data/config/1.0/stix/threat_actor.xsd +173 -0
- data/config/1.0/stix/ttp.xsd +340 -0
- data/config/1.1/stix/campaign.xsd +223 -0
- data/config/1.1/stix/course_of_action.xsd +190 -0
- data/config/1.1/stix/cybox/cybox_common.xsd +2700 -0
- data/config/1.1/stix/cybox/cybox_core.xsd +1145 -0
- data/config/1.1/stix/cybox/cybox_default_vocabularies.xsd +5180 -0
- data/config/1.1/stix/cybox/extensions/location/ciq_address_3.0.xsd +27 -0
- data/config/1.1/stix/cybox/extensions/platform/README.txt +1 -0
- data/config/1.1/stix/cybox/extensions/platform/cpe2.3.xsd +34 -0
- data/config/1.1/stix/cybox/external/cpe_2.3/cpe-language_2.3.xsd +234 -0
- data/config/1.1/stix/cybox/external/cpe_2.3/cpe-naming_2.3.xsd +45 -0
- data/config/1.1/stix/cybox/external/cpe_2.3/xml.xsd +145 -0
- data/config/1.1/stix/cybox/external/oasis_ciq_3.0/CommonTypes.xsd +104 -0
- data/config/1.1/stix/cybox/external/oasis_ciq_3.0/xAL-types.xsd +511 -0
- data/config/1.1/stix/cybox/external/oasis_ciq_3.0/xAL.xsd +672 -0
- data/config/1.1/stix/cybox/external/oasis_ciq_3.0/xNAL-types.xsd +36 -0
- data/config/1.1/stix/cybox/external/oasis_ciq_3.0/xNAL.xsd +126 -0
- data/config/1.1/stix/cybox/external/oasis_ciq_3.0/xNL-types.xsd +222 -0
- data/config/1.1/stix/cybox/external/oasis_ciq_3.0/xNL.xsd +284 -0
- data/config/1.1/stix/cybox/external/oasis_ciq_3.0/xPIL-types.xsd +854 -0
- data/config/1.1/stix/cybox/external/oasis_ciq_3.0/xPIL.xsd +1621 -0
- data/config/1.1/stix/cybox/external/oasis_ciq_3.0/xlink-2003-12-31.xsd +90 -0
- data/config/1.1/stix/cybox/objects/API_Object.xsd +55 -0
- data/config/1.1/stix/cybox/objects/ARP_Cache_Object.xsd +98 -0
- data/config/1.1/stix/cybox/objects/AS_Object.xsd +50 -0
- data/config/1.1/stix/cybox/objects/Account_Object.xsd +501 -0
- data/config/1.1/stix/cybox/objects/Address_Object.xsd +127 -0
- data/config/1.1/stix/cybox/objects/Archive_File_Object.xsd +134 -0
- data/config/1.1/stix/cybox/objects/Artifact_Object.xsd +212 -0
- data/config/1.1/stix/cybox/objects/Code_Object.xsd +417 -0
- data/config/1.1/stix/cybox/objects/Custom_Object.xsd +42 -0
- data/config/1.1/stix/cybox/objects/DNS_Cache_Object.xsd +53 -0
- data/config/1.1/stix/cybox/objects/DNS_Query_Object.xsd +164 -0
- data/config/1.1/stix/cybox/objects/DNS_Record_Object.xsd +92 -0
- data/config/1.1/stix/cybox/objects/Device_Object.xsd +65 -0
- data/config/1.1/stix/cybox/objects/Disk_Object.xsd +117 -0
- data/config/1.1/stix/cybox/objects/Disk_Partition_Object.xsd +199 -0
- data/config/1.1/stix/cybox/objects/Domain_Name_Object.xsd +57 -0
- data/config/1.1/stix/cybox/objects/Email_Message_Object.xsd +278 -0
- data/config/1.1/stix/cybox/objects/File_Object.xsd +397 -0
- data/config/1.1/stix/cybox/objects/GUI_Dialogbox_Object.xsd +41 -0
- data/config/1.1/stix/cybox/objects/GUI_Object.xsd +40 -0
- data/config/1.1/stix/cybox/objects/GUI_Window_Object.xsd +46 -0
- data/config/1.1/stix/cybox/objects/HTTP_Session_Object.xsd +633 -0
- data/config/1.1/stix/cybox/objects/Hostname_Object.xsd +45 -0
- data/config/1.1/stix/cybox/objects/Image_File_Object.xsd +124 -0
- data/config/1.1/stix/cybox/objects/Library_Object.xsd +114 -0
- data/config/1.1/stix/cybox/objects/Link_Object.xsd +36 -0
- data/config/1.1/stix/cybox/objects/Linux_Package_Object.xsd +75 -0
- data/config/1.1/stix/cybox/objects/Memory_Object.xsd +141 -0
- data/config/1.1/stix/cybox/objects/Mutex_Object.xsd +40 -0
- data/config/1.1/stix/cybox/objects/Network_Connection_Object.xsd +540 -0
- data/config/1.1/stix/cybox/objects/Network_Flow_Object.xsd +1559 -0
- data/config/1.1/stix/cybox/objects/Network_Packet_Object.xsd +2934 -0
- data/config/1.1/stix/cybox/objects/Network_Route_Entry_Object.xsd +155 -0
- data/config/1.1/stix/cybox/objects/Network_Route_Object.xsd +93 -0
- data/config/1.1/stix/cybox/objects/Network_Socket_Object.xsd +529 -0
- data/config/1.1/stix/cybox/objects/Network_Subnet_Object.xsd +64 -0
- data/config/1.1/stix/cybox/objects/PDF_File_Object.xsd +595 -0
- data/config/1.1/stix/cybox/objects/Pipe_Object.xsd +40 -0
- data/config/1.1/stix/cybox/objects/Port_Object.xsd +40 -0
- data/config/1.1/stix/cybox/objects/Process_Object.xsd +199 -0
- data/config/1.1/stix/cybox/objects/Product_Object.xsd +65 -0
- data/config/1.1/stix/cybox/objects/SMS_Message_Object.xsd +79 -0
- data/config/1.1/stix/cybox/objects/Semaphore_Object.xsd +50 -0
- data/config/1.1/stix/cybox/objects/Socket_Address_Object.xsd +50 -0
- data/config/1.1/stix/cybox/objects/System_Object.xsd +410 -0
- data/config/1.1/stix/cybox/objects/URI_Object.xsd +62 -0
- data/config/1.1/stix/cybox/objects/URL_History_Object.xsd +104 -0
- data/config/1.1/stix/cybox/objects/Unix_File_Object.xsd +164 -0
- data/config/1.1/stix/cybox/objects/Unix_Network_Route_Entry_Object.xsd +56 -0
- data/config/1.1/stix/cybox/objects/Unix_Pipe_Object.xsd +36 -0
- data/config/1.1/stix/cybox/objects/Unix_Process_Object.xsd +143 -0
- data/config/1.1/stix/cybox/objects/Unix_User_Account_Object.xsd +78 -0
- data/config/1.1/stix/cybox/objects/Unix_Volume_Object.xsd +41 -0
- data/config/1.1/stix/cybox/objects/User_Account_Object.xsd +110 -0
- data/config/1.1/stix/cybox/objects/User_Session_Object.xsd +60 -0
- data/config/1.1/stix/cybox/objects/Volume_Object.xsd +235 -0
- data/config/1.1/stix/cybox/objects/Whois_Object.xsd +430 -0
- data/config/1.1/stix/cybox/objects/Win_Computer_Account_Object.xsd +135 -0
- data/config/1.1/stix/cybox/objects/Win_Critical_Section_Object.xsd +40 -0
- data/config/1.1/stix/cybox/objects/Win_Driver_Object.xsd +270 -0
- data/config/1.1/stix/cybox/objects/Win_Event_Log_Object.xsd +137 -0
- data/config/1.1/stix/cybox/objects/Win_Event_Object.xsd +80 -0
- data/config/1.1/stix/cybox/objects/Win_Executable_File_Object.xsd +1311 -0
- data/config/1.1/stix/cybox/objects/Win_File_Object.xsd +269 -0
- data/config/1.1/stix/cybox/objects/Win_Filemapping_Object.xsd +175 -0
- data/config/1.1/stix/cybox/objects/Win_Handle_Object.xsd +351 -0
- data/config/1.1/stix/cybox/objects/Win_Hook_Object.xsd +152 -0
- data/config/1.1/stix/cybox/objects/Win_Kernel_Hook_Object.xsd +109 -0
- data/config/1.1/stix/cybox/objects/Win_Kernel_Object.xsd +128 -0
- data/config/1.1/stix/cybox/objects/Win_Mailslot_Object.xsd +56 -0
- data/config/1.1/stix/cybox/objects/Win_Memory_Page_Region_Object.xsd +198 -0
- data/config/1.1/stix/cybox/objects/Win_Mutex_Object.xsd +42 -0
- data/config/1.1/stix/cybox/objects/Win_Network_Route_Entry_Object.xsd +200 -0
- data/config/1.1/stix/cybox/objects/Win_Network_Share_Object.xsd +205 -0
- data/config/1.1/stix/cybox/objects/Win_Pipe_Object.xsd +73 -0
- data/config/1.1/stix/cybox/objects/Win_Prefetch_Object.xsd +113 -0
- data/config/1.1/stix/cybox/objects/Win_Process_Object.xsd +174 -0
- data/config/1.1/stix/cybox/objects/Win_Registry_Key_Object.xsd +290 -0
- data/config/1.1/stix/cybox/objects/Win_Semaphore_Object.xsd +42 -0
- data/config/1.1/stix/cybox/objects/Win_Service_Object.xsd +287 -0
- data/config/1.1/stix/cybox/objects/Win_System_Object.xsd +126 -0
- data/config/1.1/stix/cybox/objects/Win_System_Restore_Object.xsd +207 -0
- data/config/1.1/stix/cybox/objects/Win_Task_Object.xsd +755 -0
- data/config/1.1/stix/cybox/objects/Win_Thread_Object.xsd +146 -0
- data/config/1.1/stix/cybox/objects/Win_User_Account_Object.xsd +73 -0
- data/config/1.1/stix/cybox/objects/Win_Volume_Object.xsd +161 -0
- data/config/1.1/stix/cybox/objects/Win_Waitable_Timer_Object.xsd +90 -0
- data/config/1.1/stix/cybox/objects/X509_Certificate_Object.xsd +275 -0
- data/config/1.1/stix/data_marking.xsd +96 -0
- data/config/1.1/stix/exploit_target.xsd +323 -0
- data/config/1.1/stix/extensions/address/ciq_3.0_address.xsd +27 -0
- data/config/1.1/stix/extensions/address/readme.txt +1 -0
- data/config/1.1/stix/extensions/attack_pattern/capec_2.7_attack_pattern.xsd +31 -0
- data/config/1.1/stix/extensions/attack_pattern/readme.txt +1 -0
- data/config/1.1/stix/extensions/identity/ciq_3.0_identity.xsd +113 -0
- data/config/1.1/stix/extensions/identity/readme.txt +1 -0
- data/config/1.1/stix/extensions/malware/maec_4.1_malware.xsd +31 -0
- data/config/1.1/stix/extensions/malware/readme.txt +1 -0
- data/config/1.1/stix/extensions/marking/simple_marking.xsd +31 -0
- data/config/1.1/stix/extensions/marking/terms_of_use_marking.xsd +31 -0
- data/config/1.1/stix/extensions/marking/tlp_marking.xsd +40 -0
- data/config/1.1/stix/extensions/structured_coa/generic_structured_coa.xsd +46 -0
- data/config/1.1/stix/extensions/test_mechanism/generic_test_mechanism.xsd +46 -0
- data/config/1.1/stix/extensions/test_mechanism/open_ioc_2010_test_mechanism.xsd +32 -0
- data/config/1.1/stix/extensions/test_mechanism/oval_5.10_test_mechanism.xsd +37 -0
- data/config/1.1/stix/extensions/test_mechanism/snort_test_mechanism.xsd +56 -0
- data/config/1.1/stix/extensions/test_mechanism/yara_test_mechanism.xsd +36 -0
- data/config/1.1/stix/extensions/vulnerability/cvrf_1.1_vulnerability.xsd +33 -0
- data/config/1.1/stix/extensions/vulnerability/readme.txt +1 -0
- data/config/1.1/stix/external/capec_2.7/ap_schema_v2.7.xsd +3618 -0
- data/config/1.1/stix/external/cvrf_1.1/common.xsd +176 -0
- data/config/1.1/stix/external/cvrf_1.1/cpe-language_2.2a.xsd +182 -0
- data/config/1.1/stix/external/cvrf_1.1/cvrf.xsd +487 -0
- data/config/1.1/stix/external/cvrf_1.1/cvss-v2_0.9.xsd +415 -0
- data/config/1.1/stix/external/cvrf_1.1/dc.xsd +118 -0
- data/config/1.1/stix/external/cvrf_1.1/prod.xsd +292 -0
- data/config/1.1/stix/external/cvrf_1.1/scap-core_0.9.xsd +170 -0
- data/config/1.1/stix/external/cvrf_1.1/vuln.xsd +631 -0
- data/config/1.1/stix/external/cvrf_1.1/xml.xsd +287 -0
- data/config/1.1/stix/external/maec_4.1/maec_bundle_schema.xsd +1228 -0
- data/config/1.1/stix/external/maec_4.1/maec_container_schema.xsd +62 -0
- data/config/1.1/stix/external/maec_4.1/maec_default_vocabularies.xsd +5325 -0
- data/config/1.1/stix/external/maec_4.1/maec_package_schema.xsd +1095 -0
- data/config/1.1/stix/external/maec_4.1/metadataSharing.xsd +1712 -0
- data/config/1.1/stix/external/oasis_ciq_3.0/CommonTypes.xsd +104 -0
- data/config/1.1/stix/external/oasis_ciq_3.0/xAL-types.xsd +511 -0
- data/config/1.1/stix/external/oasis_ciq_3.0/xAL.xsd +672 -0
- data/config/1.1/stix/external/oasis_ciq_3.0/xNAL-types.xsd +36 -0
- data/config/1.1/stix/external/oasis_ciq_3.0/xNAL.xsd +126 -0
- data/config/1.1/stix/external/oasis_ciq_3.0/xNL-types.xsd +222 -0
- data/config/1.1/stix/external/oasis_ciq_3.0/xNL.xsd +284 -0
- data/config/1.1/stix/external/oasis_ciq_3.0/xPIL-types.xsd +854 -0
- data/config/1.1/stix/external/oasis_ciq_3.0/xPIL.xsd +1621 -0
- data/config/1.1/stix/external/oasis_ciq_3.0/xlink-2003-12-31.xsd +90 -0
- data/config/1.1/stix/external/open_ioc_2010/ioc-TR.xsd +25 -0
- data/config/1.1/stix/external/open_ioc_2010/ioc.xsd +105 -0
- data/config/1.1/stix/external/oval_5.10/oval-common-schema.xsd +781 -0
- data/config/1.1/stix/external/oval_5.10/oval-definitions-schema.xsd +1608 -0
- data/config/1.1/stix/external/oval_5.10/oval-variables-schema.xsd +84 -0
- data/config/1.1/stix/external/oval_5.10/xmldsig-core-schema.xsd +309 -0
- data/config/1.1/stix/incident.xsd +759 -0
- data/config/1.1/stix/indicator.xsd +367 -0
- data/config/1.1/stix/stix_common.xsd +932 -0
- data/config/1.1/stix/stix_core.xsd +253 -0
- data/config/1.1/stix/stix_default_vocabularies.xsd +2015 -0
- data/config/1.1/stix/threat_actor.xsd +181 -0
- data/config/1.1/stix/ttp.xsd +429 -0
- data/config/1.1/uber_schema.xsd +149 -0
- data/config/mappings.json +30 -0
- data/lib/stix_schema_spy.rb +18 -0
- data/lib/stix_schema_spy/models/attribute.rb +20 -0
- data/lib/stix_schema_spy/models/complex_type.rb +50 -0
- data/lib/stix_schema_spy/models/element.rb +26 -0
- data/lib/stix_schema_spy/models/external_type.rb +48 -0
- data/lib/stix_schema_spy/models/has_children.rb +83 -0
- data/lib/stix_schema_spy/models/node.rb +71 -0
- data/lib/stix_schema_spy/models/schema.rb +217 -0
- data/lib/stix_schema_spy/models/simple_type.rb +47 -0
- data/lib/stix_schema_spy/models/special_field.rb +21 -0
- data/lib/stix_schema_spy/models/type.rb +106 -0
- data/lib/stix_schema_spy/util/schema_naming.rb +106 -0
- data/lib/stix_schema_spy/util/tasks.rb +69 -0
- data/lib/stix_schema_spy/version.rb +3 -0
- data/spec/lib/schema_naming_spec.rb +190 -0
- data/spec/models/complex_type_spec.rb +68 -0
- data/spec/models/node_spec.rb +47 -0
- data/spec/models/schema_spec.rb +63 -0
- data/spec/models/simple_type_spec.rb +38 -0
- data/spec/models/type_spec.rb +43 -0
- data/spec/spec_helper.rb +8 -0
- data/stix_schema_spy.gemspec +27 -0
- metadata +602 -0
@@ -0,0 +1,217 @@
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
2
|
+
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:cybox="http://cybox.mitre.org/cybox-2" xmlns:stix="http://stix.mitre.org/stix-1" xmlns:marking="http://data-marking.mitre.org/Marking-1" xmlns:stixCommon="http://stix.mitre.org/common-1" targetNamespace="http://stix.mitre.org/stix-1" elementFormDefault="qualified" attributeFormDefault="unqualified" version="1.0" xml:lang="English">
|
3
|
+
<xs:annotation>
|
4
|
+
<xs:documentation>This schema was originally developed by The MITRE Corporation. The STIX XML Schema implementation is maintained by The MITRE Corporation and developed by the open STIX Community. For more information, including how to get involved in the effort and how to submit change requests, please visit the STIX website at http://stix.mitre.org. </xs:documentation>
|
5
|
+
<xs:appinfo>
|
6
|
+
<version>1.0</version>
|
7
|
+
<date>04/08/2013 9:00:00 AM</date>
|
8
|
+
<short_description>Structured Threat Information eXpression (STIX) - Schematic implementation for a structured cyber threat expression language architecture.</short_description>
|
9
|
+
<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 STIX License located at http://stix.mitre.org/about/termsofuse.html. See the STIX License for the specific language governing permissions and limitations for use of this schema. When distributing copies of the STIX Schema, this license header must be included. </terms_of_use>
|
10
|
+
</xs:appinfo>
|
11
|
+
</xs:annotation>
|
12
|
+
<xs:import namespace="http://stix.mitre.org/common-1" schemaLocation="stix_common.xsd"/>
|
13
|
+
<xs:import namespace="http://cybox.mitre.org/cybox-2" schemaLocation="cybox/cybox_core.xsd"/>
|
14
|
+
<xs:import namespace="http://data-marking.mitre.org/Marking-1" schemaLocation="data_marking.xsd"/>
|
15
|
+
<xs:element name="STIX_Package" type="stix:STIXType">
|
16
|
+
<xs:annotation>
|
17
|
+
<xs:documentation>The STIX_Package field contains a bundle of information characterized in the Structured Threat Information eXpression (STIX) language.</xs:documentation>
|
18
|
+
</xs:annotation>
|
19
|
+
</xs:element>
|
20
|
+
<xs:complexType name="STIXType">
|
21
|
+
<xs:annotation>
|
22
|
+
<xs:documentation>STIXType defines a bundle of information characterized in the Structured Threat Information eXpression (STIX) language.</xs:documentation>
|
23
|
+
</xs:annotation>
|
24
|
+
<xs:sequence>
|
25
|
+
<xs:element name="STIX_Header" type="stix:STIXHeaderType" minOccurs="0">
|
26
|
+
<xs:annotation>
|
27
|
+
<xs:documentation>The STIX_Header field provides information characterizing this package of STIX content.</xs:documentation>
|
28
|
+
</xs:annotation>
|
29
|
+
</xs:element>
|
30
|
+
<xs:element name="Observables" type="cybox:ObservablesType" minOccurs="0">
|
31
|
+
<xs:annotation>
|
32
|
+
<xs:documentation>Characterizes one or more cyber observables.</xs:documentation>
|
33
|
+
</xs:annotation>
|
34
|
+
</xs:element>
|
35
|
+
<xs:element name="Indicators" type="stix:IndicatorsType" minOccurs="0">
|
36
|
+
<xs:annotation>
|
37
|
+
<xs:documentation>Characterizes one or more cyber threat Indicators.</xs:documentation>
|
38
|
+
</xs:annotation>
|
39
|
+
</xs:element>
|
40
|
+
<xs:element name="TTPs" type="stix:TTPsType" minOccurs="0">
|
41
|
+
<xs:annotation>
|
42
|
+
<xs:documentation>Characterizes one or more cyber threat adversary Tactics, Techniques or Procedures.</xs:documentation>
|
43
|
+
</xs:annotation>
|
44
|
+
</xs:element>
|
45
|
+
<xs:element name="Exploit_Targets" type="stixCommon:ExploitTargetsType" minOccurs="0">
|
46
|
+
<xs:annotation>
|
47
|
+
<xs:documentation>Characterizes one or more potential targets for exploitation.</xs:documentation>
|
48
|
+
</xs:annotation>
|
49
|
+
</xs:element>
|
50
|
+
<xs:element name="Incidents" type="stix:IncidentsType" minOccurs="0">
|
51
|
+
<xs:annotation>
|
52
|
+
<xs:documentation>Characterizes one or more cyber threat Incidents.</xs:documentation>
|
53
|
+
</xs:annotation>
|
54
|
+
</xs:element>
|
55
|
+
<xs:element name="Courses_Of_Action" type="stix:CoursesOfActionType" minOccurs="0">
|
56
|
+
<xs:annotation>
|
57
|
+
<xs:documentation>Characterizes Courses of Action to be taken in regards to one of more cyber threats.</xs:documentation>
|
58
|
+
</xs:annotation>
|
59
|
+
</xs:element>
|
60
|
+
<xs:element name="Campaigns" type="stix:CampaignsType" minOccurs="0">
|
61
|
+
<xs:annotation>
|
62
|
+
<xs:documentation>Characterizes one or more cyber threat Campaigns.</xs:documentation>
|
63
|
+
</xs:annotation>
|
64
|
+
</xs:element>
|
65
|
+
<xs:element name="Threat_Actors" type="stix:ThreatActorsType" minOccurs="0">
|
66
|
+
<xs:annotation>
|
67
|
+
<xs:documentation>Characterizes one or more cyber Threat Actors.</xs:documentation>
|
68
|
+
</xs:annotation>
|
69
|
+
</xs:element>
|
70
|
+
</xs:sequence>
|
71
|
+
<xs:attribute name="id" type="xs:QName">
|
72
|
+
<xs:annotation>
|
73
|
+
<xs:documentation>Specifies a globally unique identifier for this STIX Package. </xs:documentation>
|
74
|
+
</xs:annotation>
|
75
|
+
</xs:attribute>
|
76
|
+
<xs:attribute name="idref" type="xs:QName">
|
77
|
+
<xs:annotation>
|
78
|
+
<xs:documentation>Specifies a globally unique identifier of a STIX Package specified elsewhere.</xs:documentation>
|
79
|
+
</xs:annotation>
|
80
|
+
</xs:attribute>
|
81
|
+
<xs:attribute name="version" type="stix:STIXPackageVersionEnum" default="1.0">
|
82
|
+
<xs:annotation>
|
83
|
+
<xs:documentation>Specifies the relevant STIX schema version for this content.</xs:documentation>
|
84
|
+
</xs:annotation>
|
85
|
+
</xs:attribute>
|
86
|
+
</xs:complexType>
|
87
|
+
<xs:simpleType name="STIXPackageVersionEnum">
|
88
|
+
<xs:annotation>
|
89
|
+
<xs:documentation>An enumeration of all versions of STIX package types valid in the current release of STIX.</xs:documentation>
|
90
|
+
</xs:annotation>
|
91
|
+
<xs:restriction base="xs:string">
|
92
|
+
<xs:enumeration value="1.0"/>
|
93
|
+
</xs:restriction>
|
94
|
+
</xs:simpleType>
|
95
|
+
<xs:complexType name="STIXHeaderType">
|
96
|
+
<xs:annotation>
|
97
|
+
<xs:documentation>The STIXHeaderType provides a structure for characterizing a package of STIX content.</xs:documentation>
|
98
|
+
</xs:annotation>
|
99
|
+
<xs:sequence>
|
100
|
+
<xs:element name="Title" type="xs:string" minOccurs="0">
|
101
|
+
<xs:annotation>
|
102
|
+
<xs:documentation>The Title field provides a simple title for this STIX Package.</xs:documentation>
|
103
|
+
</xs:annotation>
|
104
|
+
</xs:element>
|
105
|
+
<xs:element name="Package_Intent" type="stixCommon:ControlledVocabularyStringType" minOccurs="0">
|
106
|
+
<xs:annotation>
|
107
|
+
<xs:documentation>
|
108
|
+
The Package_Intent field characterizes the intended purpose or use for this package of STIX content.
|
109
|
+
|
110
|
+
This field is implemented through the xsi:type controlled vocabulary extension mechanism. The default vocabulary type is PackageIntentVocab-1.0 in the http://stix.mitre.org/default_vocabularies-1 namespace. This type is defined in the stix_default_vocabularies.xsd file or at the URL http://stix.mitre.org/XMLSchema/default_vocabularies/1.0.0/stix_default_vocabularies.xsd .
|
111
|
+
|
112
|
+
Users may also define their own vocabulary using the type extension mechanism, specify a vocabulary name and reference using the attributes, or simply use this as a string field.
|
113
|
+
</xs:documentation>
|
114
|
+
</xs:annotation>
|
115
|
+
</xs:element>
|
116
|
+
<xs:element name="Description" type="stixCommon:StructuredTextType" minOccurs="0">
|
117
|
+
<xs:annotation>
|
118
|
+
<xs:documentation>The Description field provides a description of this package of STIX content.</xs:documentation>
|
119
|
+
</xs:annotation>
|
120
|
+
</xs:element>
|
121
|
+
<xs:element name="Handling" type="marking:MarkingType" minOccurs="0">
|
122
|
+
<xs:annotation>
|
123
|
+
<xs:documentation>Specifies the relevant handling guidance for this STIX_Package. The valid marking scope is the nearest STIXPackageType ancestor of this Handling element and all its descendants.</xs:documentation>
|
124
|
+
</xs:annotation>
|
125
|
+
</xs:element>
|
126
|
+
<xs:element name="Information_Source" type="stixCommon:InformationSourceType" minOccurs="0">
|
127
|
+
<xs:annotation>
|
128
|
+
<xs:documentation>The Information_Source field details the source of this entry, including time information as well as information about the producer, contributors, tools, and references.</xs:documentation>
|
129
|
+
</xs:annotation>
|
130
|
+
</xs:element>
|
131
|
+
</xs:sequence>
|
132
|
+
</xs:complexType>
|
133
|
+
<!---->
|
134
|
+
<xs:complexType name="IndicatorsType">
|
135
|
+
<xs:sequence>
|
136
|
+
<xs:element name="Indicator" type="stixCommon:IndicatorBaseType" maxOccurs="unbounded">
|
137
|
+
<xs:annotation>
|
138
|
+
<xs:documentation>
|
139
|
+
Characterizes a single cyber threat Indicator.
|
140
|
+
|
141
|
+
This field is implemented through the xsi:type extension mechanism. The default and strongly recommended type is IndicatorType in the http://stix.mitre.org/Indicator-2 namespace. This type is defined in the indicator.xsd file or at the URL http://stix.mitre.org/XMLSchema/indicator/2.0/indicator.xsd.
|
142
|
+
</xs:documentation>
|
143
|
+
</xs:annotation>
|
144
|
+
</xs:element>
|
145
|
+
</xs:sequence>
|
146
|
+
</xs:complexType>
|
147
|
+
<xs:complexType name="TTPsType">
|
148
|
+
<xs:sequence>
|
149
|
+
<xs:element name="TTP" type="stixCommon:TTPBaseType" minOccurs="0" maxOccurs="unbounded">
|
150
|
+
<xs:annotation>
|
151
|
+
<xs:documentation>
|
152
|
+
Characterizes a single cyber threat adversary Tactic, Technique or Procedure.
|
153
|
+
|
154
|
+
This field is implemented through the xsi:type extension mechanism. The default and strongly recommended type is TTPType in the http://stix.mitre.org/TTP-1 namespace. This type is defined in the ttp.xsd file or at the URL http://stix.mitre.org/XMLSchema/ttp/1.0/ttp.xsd.
|
155
|
+
</xs:documentation>
|
156
|
+
</xs:annotation>
|
157
|
+
</xs:element>
|
158
|
+
<xs:element name="Kill_Chains" type="stixCommon:KillChainsType" minOccurs="0">
|
159
|
+
<xs:annotation>
|
160
|
+
<xs:documentation>The Kill_Chains field characterizes specific Kill Chain definitions for reference within specific TTP entries, Indicators and elsewhere.</xs:documentation>
|
161
|
+
</xs:annotation>
|
162
|
+
</xs:element>
|
163
|
+
</xs:sequence>
|
164
|
+
</xs:complexType>
|
165
|
+
<xs:complexType name="IncidentsType">
|
166
|
+
<xs:sequence>
|
167
|
+
<xs:element name="Incident" type="stixCommon:IncidentBaseType" maxOccurs="unbounded">
|
168
|
+
<xs:annotation>
|
169
|
+
<xs:documentation>
|
170
|
+
Identifies or characterizes a single cyber threat Incident.
|
171
|
+
|
172
|
+
This field is implemented through the xsi:type extension mechanism. The default and strongly recommended type is IncidentType in the http://stix.mitre.org/Incident-1 namespace. This type is defined in the incident.xsd file or at the URL http://stix.mitre.org/XMLSchema/incident/1.0/incident.xsd.
|
173
|
+
</xs:documentation>
|
174
|
+
</xs:annotation>
|
175
|
+
</xs:element>
|
176
|
+
</xs:sequence>
|
177
|
+
</xs:complexType>
|
178
|
+
<xs:complexType name="CoursesOfActionType">
|
179
|
+
<xs:sequence>
|
180
|
+
<xs:element name="Course_Of_Action" type="stixCommon:CourseOfActionBaseType" maxOccurs="unbounded">
|
181
|
+
<xs:annotation>
|
182
|
+
<xs:documentation>
|
183
|
+
The Course_Of_Action field characterizes a Course of Action to be taken in regards to one of more cyber threats.
|
184
|
+
|
185
|
+
This field is implemented through the xsi:type extension mechanism. The default and strongly recommended type is CourseOfActionType in the http://stix.mitre.org/CourseOfAction-1 namespace. This type is defined in the course_of_action.xsd file or at the URL http://stix.mitre.org/XMLSchema/course_of_action/1.0/course_of_action.xsd.
|
186
|
+
</xs:documentation>
|
187
|
+
</xs:annotation>
|
188
|
+
</xs:element>
|
189
|
+
</xs:sequence>
|
190
|
+
</xs:complexType>
|
191
|
+
<xs:complexType name="CampaignsType">
|
192
|
+
<xs:sequence>
|
193
|
+
<xs:element name="Campaign" type="stixCommon:CampaignBaseType" maxOccurs="unbounded">
|
194
|
+
<xs:annotation>
|
195
|
+
<xs:documentation>
|
196
|
+
Characterizes a single cyber threat Campaign.
|
197
|
+
|
198
|
+
This field is implemented through the xsi:type extension mechanism. The default and strongly recommended type is CampaignType in the http://stix.mitre.org/Campaign-1 namespace. This type is defined in the campaign.xsd file or at the URL http://stix.mitre.org/XMLSchema/campaign/1.0/campaign.xsd.
|
199
|
+
</xs:documentation>
|
200
|
+
</xs:annotation>
|
201
|
+
</xs:element>
|
202
|
+
</xs:sequence>
|
203
|
+
</xs:complexType>
|
204
|
+
<xs:complexType name="ThreatActorsType">
|
205
|
+
<xs:sequence>
|
206
|
+
<xs:element name="Threat_Actor" type="stixCommon:ThreatActorBaseType" maxOccurs="unbounded">
|
207
|
+
<xs:annotation>
|
208
|
+
<xs:documentation>
|
209
|
+
Characterizes a single cyber Threat Actor.
|
210
|
+
|
211
|
+
This field is implemented through the xsi:type extension mechanism. The default and strongly recommended type is ThreatActorType in the http://stix.mitre.org/ThreatActor-1 namespace. This type is defined in the threat_actor.xsd file or at the URL http://stix.mitre.org/XMLSchema/threat_actor/1.0/threat_actor.xsd.
|
212
|
+
</xs:documentation>
|
213
|
+
</xs:annotation>
|
214
|
+
</xs:element>
|
215
|
+
</xs:sequence>
|
216
|
+
</xs:complexType>
|
217
|
+
</xs:schema>
|
@@ -0,0 +1,1578 @@
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
2
|
+
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:stixVocabs="http://stix.mitre.org/default_vocabularies-1" xmlns:stixCommon="http://stix.mitre.org/common-1" targetNamespace="http://stix.mitre.org/default_vocabularies-1" elementFormDefault="qualified" version="1.0.0" xml:lang="English">
|
3
|
+
<xs:annotation>
|
4
|
+
<xs:documentation>This schema was originally developed by The MITRE Corporation. The STIX XML Schema implementation is maintained by The MITRE Corporation and developed by the open STIX Community. For more information, including how to get involved in the effort and how to submit change requests, please visit the STIX website at http://stix.mitre.org. </xs:documentation>
|
5
|
+
<xs:appinfo>
|
6
|
+
<schema>STIX Default Vocabularies</schema>
|
7
|
+
<version>1.0.0</version>
|
8
|
+
<date>04/08/2013 9:00:00 AM</date>
|
9
|
+
<short_description>Structured Threat Information eXpression (STIX) - Schematic implementation for controlled vocabularies used in the Structured Threat Information eXchange format.</short_description>
|
10
|
+
<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 STIX License located at http://stix.mitre.org/about/termsofuse.html. See the STIX License for the specific language governing permissions and limitations for use of this schema. When distributing copies of the STIX Schema, this license header must be included. </terms_of_use>
|
11
|
+
</xs:appinfo>
|
12
|
+
</xs:annotation>
|
13
|
+
<xs:import namespace="http://stix.mitre.org/common-1" schemaLocation="stix_common.xsd"/>
|
14
|
+
<!-- Package Intent Vocabulary -->
|
15
|
+
<xs:complexType name="PackageIntentVocab-1.0">
|
16
|
+
<xs:annotation>
|
17
|
+
<xs:documentation>
|
18
|
+
The PackageIntentVocabType is the default STIX vocabulary for Package Intent.
|
19
|
+
|
20
|
+
Note that this vocabulary is under development. Feedback is appreciated and should be sent to the STIX discussion list.
|
21
|
+
</xs:documentation>
|
22
|
+
</xs:annotation>
|
23
|
+
<xs:simpleContent>
|
24
|
+
<xs:restriction base="stixCommon:ControlledVocabularyStringType">
|
25
|
+
<xs:simpleType>
|
26
|
+
<xs:union memberTypes="stixVocabs:PackageIntentEnum-1.0"/>
|
27
|
+
</xs:simpleType>
|
28
|
+
<xs:attribute name="vocab_name" type="xs:string" use="optional" fixed="STIX Default Package Intent Vocabulary"/>
|
29
|
+
<xs:attribute name="vocab_reference" type="xs:anyURI" use="optional" fixed="http://stix.mitre.org/XMLSchema/default_vocabularies/1.0.0/stix_default_vocabularies.xsd#PackageIntentVocab-1.0"/>
|
30
|
+
</xs:restriction>
|
31
|
+
</xs:simpleContent>
|
32
|
+
</xs:complexType>
|
33
|
+
<xs:simpleType name="PackageIntentEnum-1.0">
|
34
|
+
<xs:annotation>
|
35
|
+
<xs:documentation>The default set of values to use for a package intent in STIX.</xs:documentation>
|
36
|
+
<xs:appinfo>
|
37
|
+
<version>1.0</version>
|
38
|
+
</xs:appinfo>
|
39
|
+
</xs:annotation>
|
40
|
+
<xs:restriction base="xs:string">
|
41
|
+
<xs:enumeration value="Collective Threat Intelligence">
|
42
|
+
<xs:annotation>
|
43
|
+
<xs:documentation>Package is intended to convey a broad characterization of a threat across multiple facets.</xs:documentation>
|
44
|
+
</xs:annotation>
|
45
|
+
</xs:enumeration>
|
46
|
+
<xs:enumeration value="Threat Report">
|
47
|
+
<xs:annotation>
|
48
|
+
<xs:documentation>Package is intended to convey a broad characterization of a threat across multiple facets expressed as a cohesive report.</xs:documentation>
|
49
|
+
</xs:annotation>
|
50
|
+
</xs:enumeration>
|
51
|
+
<xs:enumeration value="Indicators">
|
52
|
+
<xs:annotation>
|
53
|
+
<xs:documentation>Package is intended to convey mainly indicators.</xs:documentation>
|
54
|
+
</xs:annotation>
|
55
|
+
</xs:enumeration>
|
56
|
+
<xs:enumeration value="Indicators - Phishing">
|
57
|
+
<xs:annotation>
|
58
|
+
<xs:documentation>Package is intended to convey mainly phishing indicators.</xs:documentation>
|
59
|
+
</xs:annotation>
|
60
|
+
</xs:enumeration>
|
61
|
+
<xs:enumeration value="Indicators - Watchlist">
|
62
|
+
<xs:annotation>
|
63
|
+
<xs:documentation>Package is intended to convey mainly network watchlist indicators.</xs:documentation>
|
64
|
+
</xs:annotation>
|
65
|
+
</xs:enumeration>
|
66
|
+
<xs:enumeration value="Indicators - Malware Artifacts">
|
67
|
+
<xs:annotation>
|
68
|
+
<xs:documentation>Package is intended to convey mainly malware artifact indicators.</xs:documentation>
|
69
|
+
</xs:annotation>
|
70
|
+
</xs:enumeration>
|
71
|
+
<xs:enumeration value="Indicators - Network Activity">
|
72
|
+
<xs:annotation>
|
73
|
+
<xs:documentation>Package is intended to convey mainly network activity indicators.</xs:documentation>
|
74
|
+
</xs:annotation>
|
75
|
+
</xs:enumeration>
|
76
|
+
<xs:enumeration value="Indicators - Endpoint Characteristics">
|
77
|
+
<xs:annotation>
|
78
|
+
<xs:documentation>Package is intended to convey mainly endpoint characteristics (hashes, registry values, installed software, known vulnerabilities, etc.) indicators.</xs:documentation>
|
79
|
+
</xs:annotation>
|
80
|
+
</xs:enumeration>
|
81
|
+
<xs:enumeration value="Campaign Characterization">
|
82
|
+
<xs:annotation>
|
83
|
+
<xs:documentation>Package is intended to convey mainly a characterization of one or more campaigns.</xs:documentation>
|
84
|
+
</xs:annotation>
|
85
|
+
</xs:enumeration>
|
86
|
+
<xs:enumeration value="Threat Actor Characterization">
|
87
|
+
<xs:annotation>
|
88
|
+
<xs:documentation>Package is intended to convey mainly a characterization of one or more threat actors.</xs:documentation>
|
89
|
+
</xs:annotation>
|
90
|
+
</xs:enumeration>
|
91
|
+
<xs:enumeration value="Exploit Characterization">
|
92
|
+
<xs:annotation>
|
93
|
+
<xs:documentation>Package is intended to convey mainly a characterization of one or more exploits.</xs:documentation>
|
94
|
+
</xs:annotation>
|
95
|
+
</xs:enumeration>
|
96
|
+
<xs:enumeration value="Attack Pattern Characterization">
|
97
|
+
<xs:annotation>
|
98
|
+
<xs:documentation>Package is intended to convey mainly a characterization of one or more attack patterns.</xs:documentation>
|
99
|
+
</xs:annotation>
|
100
|
+
</xs:enumeration>
|
101
|
+
<xs:enumeration value="Malware Characterization">
|
102
|
+
<xs:annotation>
|
103
|
+
<xs:documentation>Package is intended to convey mainly a characterization of one or more malware instances.</xs:documentation>
|
104
|
+
</xs:annotation>
|
105
|
+
</xs:enumeration>
|
106
|
+
<xs:enumeration value="TTP - Infrastructure">
|
107
|
+
<xs:annotation>
|
108
|
+
<xs:documentation>Package is intended to convey mainly a characterization of attacker infrastructure.</xs:documentation>
|
109
|
+
</xs:annotation>
|
110
|
+
</xs:enumeration>
|
111
|
+
<xs:enumeration value="TTP - Tools">
|
112
|
+
<xs:annotation>
|
113
|
+
<xs:documentation>Package is intended to convey mainly a characterization of attacker tools.</xs:documentation>
|
114
|
+
</xs:annotation>
|
115
|
+
</xs:enumeration>
|
116
|
+
<xs:enumeration value="Courses of Action">
|
117
|
+
<xs:annotation>
|
118
|
+
<xs:documentation>Package is intended to convey mainly a set of courses of action.</xs:documentation>
|
119
|
+
</xs:annotation>
|
120
|
+
</xs:enumeration>
|
121
|
+
<xs:enumeration value="Incident">
|
122
|
+
<xs:annotation>
|
123
|
+
<xs:documentation>Package is intended to convey mainly information about one or more incidents.</xs:documentation>
|
124
|
+
</xs:annotation>
|
125
|
+
</xs:enumeration>
|
126
|
+
<xs:enumeration value="Observations">
|
127
|
+
<xs:annotation>
|
128
|
+
<xs:documentation>Package is intended to convey mainly information about instantial observations (cyber observables).</xs:documentation>
|
129
|
+
</xs:annotation>
|
130
|
+
</xs:enumeration>
|
131
|
+
<xs:enumeration value="Observations - Email">
|
132
|
+
<xs:annotation>
|
133
|
+
<xs:documentation>Package is intended to convey mainly information about instantial email observations (email cyber observables).</xs:documentation>
|
134
|
+
</xs:annotation>
|
135
|
+
</xs:enumeration>
|
136
|
+
<xs:enumeration value="Malware Samples">
|
137
|
+
<xs:annotation>
|
138
|
+
<xs:documentation>Package is intended to convey a set of malware samples.</xs:documentation>
|
139
|
+
</xs:annotation>
|
140
|
+
</xs:enumeration>
|
141
|
+
</xs:restriction>
|
142
|
+
</xs:simpleType>
|
143
|
+
<!-- Confidence Vocabulary -->
|
144
|
+
<xs:complexType name="HighMediumLowVocab-1.0">
|
145
|
+
<xs:annotation>
|
146
|
+
<xs:documentation>The HighMediumLowVocabType is the default STIX vocabulary for expressing basic values that may be high, medium, low, none, or unknown.</xs:documentation>
|
147
|
+
</xs:annotation>
|
148
|
+
<xs:simpleContent>
|
149
|
+
<xs:restriction base="stixCommon:ControlledVocabularyStringType">
|
150
|
+
<xs:simpleType>
|
151
|
+
<xs:union memberTypes="stixVocabs:HighMediumLowEnum-1.0"/>
|
152
|
+
</xs:simpleType>
|
153
|
+
<xs:attribute name="vocab_name" type="xs:string" use="optional" fixed="STIX Default High/Medium/Low Vocabulary"/>
|
154
|
+
<xs:attribute name="vocab_reference" type="xs:anyURI" use="optional" fixed="http://stix.mitre.org/XMLSchema/default_vocabularies/1.0.0/stix_default_vocabularies.xsd#HighMediumLowVocab-1.0"/>
|
155
|
+
</xs:restriction>
|
156
|
+
</xs:simpleContent>
|
157
|
+
</xs:complexType>
|
158
|
+
<xs:simpleType name="HighMediumLowEnum-1.0">
|
159
|
+
<xs:annotation>
|
160
|
+
<xs:documentation>The default set of values to use for expressing a high/medium/low statement in STIX.</xs:documentation>
|
161
|
+
<xs:appinfo>
|
162
|
+
<version>1.0</version>
|
163
|
+
</xs:appinfo>
|
164
|
+
</xs:annotation>
|
165
|
+
<xs:restriction base="xs:string">
|
166
|
+
<xs:enumeration value="High"/>
|
167
|
+
<xs:enumeration value="Medium"/>
|
168
|
+
<xs:enumeration value="Low"/>
|
169
|
+
<xs:enumeration value="None"/>
|
170
|
+
<xs:enumeration value="Unknown"/>
|
171
|
+
</xs:restriction>
|
172
|
+
</xs:simpleType>
|
173
|
+
<!-- Malware Type Vocabulary -->
|
174
|
+
<xs:complexType name="MalwareTypeVocab-1.0">
|
175
|
+
<xs:annotation>
|
176
|
+
<xs:documentation>
|
177
|
+
The MalwareTypeVocabType is the default STIX vocabulary for expressing types of malware instances.
|
178
|
+
|
179
|
+
Note that this vocabulary is under development. Feedback is appreciated and should be sent to the STIX discussion list.</xs:documentation>
|
180
|
+
</xs:annotation>
|
181
|
+
<xs:simpleContent>
|
182
|
+
<xs:restriction base="stixCommon:ControlledVocabularyStringType">
|
183
|
+
<xs:simpleType>
|
184
|
+
<xs:union memberTypes="stixVocabs:MalwareTypeEnum-1.0"/>
|
185
|
+
</xs:simpleType>
|
186
|
+
<xs:attribute name="vocab_name" type="xs:string" use="optional" fixed="STIX Default Malware Type Vocabulary"/>
|
187
|
+
<xs:attribute name="vocab_reference" type="xs:anyURI" use="optional" fixed="http://stix.mitre.org/XMLSchema/default_vocabularies/1.0.0/stix_default_vocabularies.xsd#MalwareTypeVocab-1.0"/>
|
188
|
+
</xs:restriction>
|
189
|
+
</xs:simpleContent>
|
190
|
+
</xs:complexType>
|
191
|
+
<xs:simpleType name="MalwareTypeEnum-1.0">
|
192
|
+
<xs:annotation>
|
193
|
+
<xs:documentation>
|
194
|
+
The default set of malware types to use for characterizing a malware instance in STIX.
|
195
|
+
</xs:documentation>
|
196
|
+
<xs:appinfo>
|
197
|
+
<version>1.0</version>
|
198
|
+
<source>The initial version of this enumeration was contributed by iSight Partners, Inc. and is used with their permission.</source>
|
199
|
+
</xs:appinfo>
|
200
|
+
</xs:annotation>
|
201
|
+
<xs:restriction base="xs:string">
|
202
|
+
<xs:enumeration value="Automated Transfer Scripts"/>
|
203
|
+
<xs:enumeration value="Adware"/>
|
204
|
+
<xs:enumeration value="Dialer"/>
|
205
|
+
<xs:enumeration value="Bot"/>
|
206
|
+
<xs:enumeration value="Bot - Credential Theft"/>
|
207
|
+
<xs:enumeration value="Bot - DDoS"/>
|
208
|
+
<xs:enumeration value="Bot - Loader"/>
|
209
|
+
<xs:enumeration value="Bot - Spam"/>
|
210
|
+
<xs:enumeration value="DoS / DDoS"/>
|
211
|
+
<xs:enumeration value="DoS / DDoS - Participatory"/>
|
212
|
+
<xs:enumeration value="DoS / DDoS - Script"/>
|
213
|
+
<xs:enumeration value="DoS / DDoS - Stress Test Tools"/>
|
214
|
+
<xs:enumeration value="Exploit Kits"/>
|
215
|
+
<xs:enumeration value="POS / ATM Malware"/>
|
216
|
+
<xs:enumeration value="Ransomware"/>
|
217
|
+
<xs:enumeration value="Remote Access Trojan"/>
|
218
|
+
<xs:enumeration value="Rogue Antivirus"/>
|
219
|
+
<xs:enumeration value="Rootkit"/>
|
220
|
+
</xs:restriction>
|
221
|
+
</xs:simpleType>
|
222
|
+
<!-- Indicator Type Vocabulary -->
|
223
|
+
<xs:complexType name="IndicatorTypeVocab-1.0">
|
224
|
+
<xs:annotation>
|
225
|
+
<xs:documentation>
|
226
|
+
The IndicatorTypeVocabType is the default STIX vocabulary for expressing indicator types.
|
227
|
+
|
228
|
+
Note that this vocabulary is under development. Feedback is appreciated and should be sent to the STIX discussion list.
|
229
|
+
</xs:documentation>
|
230
|
+
</xs:annotation>
|
231
|
+
<xs:simpleContent>
|
232
|
+
<xs:restriction base="stixCommon:ControlledVocabularyStringType">
|
233
|
+
<xs:simpleType>
|
234
|
+
<xs:union memberTypes="stixVocabs:IndicatorTypeEnum-1.0"/>
|
235
|
+
</xs:simpleType>
|
236
|
+
<xs:attribute name="vocab_name" type="xs:string" use="optional" fixed="STIX Default Indicator Type Vocabulary"/>
|
237
|
+
<xs:attribute name="vocab_reference" type="xs:anyURI" use="optional" fixed="http://stix.mitre.org/XMLSchema/default_vocabularies/1.0.0/stix_default_vocabularies.xsd#IndicatorTypeVocab-1.0"/>
|
238
|
+
</xs:restriction>
|
239
|
+
</xs:simpleContent>
|
240
|
+
</xs:complexType>
|
241
|
+
<xs:simpleType name="IndicatorTypeEnum-1.0">
|
242
|
+
<xs:annotation>
|
243
|
+
<xs:documentation>The default set of Indicator types to use for characterizing Indicators in STIX.</xs:documentation>
|
244
|
+
<xs:appinfo>
|
245
|
+
<version>1.0</version>
|
246
|
+
</xs:appinfo>
|
247
|
+
</xs:annotation>
|
248
|
+
<xs:restriction base="xs:string">
|
249
|
+
<xs:enumeration value="Malicious E-mail">
|
250
|
+
<xs:annotation>
|
251
|
+
<xs:documentation>Indicator describes suspected malicious e-mail (phishing, spear phishing, infected, etc.).</xs:documentation>
|
252
|
+
</xs:annotation>
|
253
|
+
</xs:enumeration>
|
254
|
+
<xs:enumeration value="IP Watchlist">
|
255
|
+
<xs:annotation>
|
256
|
+
<xs:documentation>Indicator describes a set of suspected malicious IP addresses or IP blocks.</xs:documentation>
|
257
|
+
</xs:annotation>
|
258
|
+
</xs:enumeration>
|
259
|
+
<xs:enumeration value="File Hash Watchlist">
|
260
|
+
<xs:annotation>
|
261
|
+
<xs:documentation>Indicator describes a set of hashes for suspected malicious files.</xs:documentation>
|
262
|
+
</xs:annotation>
|
263
|
+
</xs:enumeration>
|
264
|
+
<xs:enumeration value="Domain Watchlist">
|
265
|
+
<xs:annotation>
|
266
|
+
<xs:documentation>Indicator describes a set of suspected malicious domains.</xs:documentation>
|
267
|
+
</xs:annotation>
|
268
|
+
</xs:enumeration>
|
269
|
+
<xs:enumeration value="URL Watchlist">
|
270
|
+
<xs:annotation>
|
271
|
+
<xs:documentation>Indicator describes a set of suspected malicious URLS.</xs:documentation>
|
272
|
+
</xs:annotation>
|
273
|
+
</xs:enumeration>
|
274
|
+
<xs:enumeration value="Malware Artifacts">
|
275
|
+
<xs:annotation>
|
276
|
+
<xs:documentation>Indicator describes the effects of suspected malware.</xs:documentation>
|
277
|
+
</xs:annotation>
|
278
|
+
</xs:enumeration>
|
279
|
+
<xs:enumeration value="C2">
|
280
|
+
<xs:annotation>
|
281
|
+
<xs:documentation>Indicator describes suspected command and control activity or static indications.</xs:documentation>
|
282
|
+
</xs:annotation>
|
283
|
+
</xs:enumeration>
|
284
|
+
<xs:enumeration value="Anonymization">
|
285
|
+
<xs:annotation>
|
286
|
+
<xs:documentation>Indicator describes suspected anonymization techniques (Proxy, TOR, VPN, etc.).</xs:documentation>
|
287
|
+
</xs:annotation>
|
288
|
+
</xs:enumeration>
|
289
|
+
<xs:enumeration value="Exfiltration">
|
290
|
+
<xs:annotation>
|
291
|
+
<xs:documentation>Indicator describes suspected exfiltration techniques or behavior.</xs:documentation>
|
292
|
+
</xs:annotation>
|
293
|
+
</xs:enumeration>
|
294
|
+
<xs:enumeration value="Host Characteristics">
|
295
|
+
<xs:annotation>
|
296
|
+
<xs:documentation>Indicator describes suspected malicious host characteristics.</xs:documentation>
|
297
|
+
</xs:annotation>
|
298
|
+
</xs:enumeration>
|
299
|
+
</xs:restriction>
|
300
|
+
</xs:simpleType>
|
301
|
+
<!-- COA Stage Vocabulary -->
|
302
|
+
<xs:complexType name="COAStageVocab-1.0">
|
303
|
+
<xs:annotation>
|
304
|
+
<xs:documentation>The COAStageVocabType is the default STIX vocabulary for expressing the stages of the threat management lifecycle that a COA is applicable to.</xs:documentation>
|
305
|
+
</xs:annotation>
|
306
|
+
<xs:simpleContent>
|
307
|
+
<xs:restriction base="stixCommon:ControlledVocabularyStringType">
|
308
|
+
<xs:simpleType>
|
309
|
+
<xs:union memberTypes="stixVocabs:COAStageEnum-1.0"/>
|
310
|
+
</xs:simpleType>
|
311
|
+
<xs:attribute name="vocab_name" type="xs:string" use="optional" fixed="STIX Default COA Stages Vocabulary"/>
|
312
|
+
<xs:attribute name="vocab_reference" type="xs:anyURI" use="optional" fixed="http://stix.mitre.org/XMLSchema/default_vocabularies/1.0.0/stix_default_vocabularies.xsd#COAStageVocab-1.0"/>
|
313
|
+
</xs:restriction>
|
314
|
+
</xs:simpleContent>
|
315
|
+
</xs:complexType>
|
316
|
+
<xs:simpleType name="COAStageEnum-1.0">
|
317
|
+
<xs:annotation>
|
318
|
+
<xs:documentation>The default set of stages of the threat management lifecycle that a COA may be applicable to.</xs:documentation>
|
319
|
+
<xs:appinfo>
|
320
|
+
<version>1.0</version>
|
321
|
+
</xs:appinfo>
|
322
|
+
</xs:annotation>
|
323
|
+
<xs:restriction base="xs:string">
|
324
|
+
<xs:enumeration value="Remedy">
|
325
|
+
<xs:annotation>
|
326
|
+
<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>
|
327
|
+
</xs:annotation>
|
328
|
+
</xs:enumeration>
|
329
|
+
<xs:enumeration value="Response">
|
330
|
+
<xs:annotation>
|
331
|
+
<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>
|
332
|
+
</xs:annotation>
|
333
|
+
</xs:enumeration>
|
334
|
+
</xs:restriction>
|
335
|
+
</xs:simpleType>
|
336
|
+
<!-- Campaign Status Vocabulary -->
|
337
|
+
<xs:complexType name="CampaignStatusVocab-1.0">
|
338
|
+
<xs:annotation>
|
339
|
+
<xs:documentation>The CampaignStatusVocabType is the default STIX vocabulary for expressing the status of a campaign.</xs:documentation>
|
340
|
+
</xs:annotation>
|
341
|
+
<xs:simpleContent>
|
342
|
+
<xs:restriction base="stixCommon:ControlledVocabularyStringType">
|
343
|
+
<xs:simpleType>
|
344
|
+
<xs:union memberTypes="stixVocabs:CampaignStatusEnum-1.0"/>
|
345
|
+
</xs:simpleType>
|
346
|
+
<xs:attribute name="vocab_name" type="xs:string" use="optional" fixed="STIX Default Campaign Status Vocabulary"/>
|
347
|
+
<xs:attribute name="vocab_reference" type="xs:anyURI" use="optional" fixed="http://stix.mitre.org/XMLSchema/default_vocabularies/1.0.0/stix_default_vocabularies.xsd#CampaignStatusVocab-1.0"/>
|
348
|
+
</xs:restriction>
|
349
|
+
</xs:simpleContent>
|
350
|
+
</xs:complexType>
|
351
|
+
<xs:simpleType name="CampaignStatusEnum-1.0">
|
352
|
+
<xs:annotation>
|
353
|
+
<xs:documentation>The default list of possible statuses that a campaign might have.</xs:documentation>
|
354
|
+
<xs:appinfo>
|
355
|
+
<version>1.0</version>
|
356
|
+
</xs:appinfo>
|
357
|
+
</xs:annotation>
|
358
|
+
<xs:restriction base="xs:string">
|
359
|
+
<xs:enumeration value="Ongoing">
|
360
|
+
<xs:annotation>
|
361
|
+
<xs:documentation>This campaign is currently taking place.</xs:documentation>
|
362
|
+
</xs:annotation>
|
363
|
+
</xs:enumeration>
|
364
|
+
<xs:enumeration value="Historic">
|
365
|
+
<xs:annotation>
|
366
|
+
<xs:documentation>This campaign occurred in the past and is currently not taking place.</xs:documentation>
|
367
|
+
</xs:annotation>
|
368
|
+
</xs:enumeration>
|
369
|
+
<xs:enumeration value="Future">
|
370
|
+
<xs:annotation>
|
371
|
+
<xs:documentation>This campaign is expected to take place in the future.</xs:documentation>
|
372
|
+
</xs:annotation>
|
373
|
+
</xs:enumeration>
|
374
|
+
</xs:restriction>
|
375
|
+
</xs:simpleType>
|
376
|
+
<!-- Incident Status Vocabulary -->
|
377
|
+
<xs:complexType name="IncidentStatusVocab-1.0">
|
378
|
+
<xs:annotation>
|
379
|
+
<xs:documentation>The IncidentStatusVocabType is the default STIX vocabulary for expressing the status of an incident.</xs:documentation>
|
380
|
+
</xs:annotation>
|
381
|
+
<xs:simpleContent>
|
382
|
+
<xs:restriction base="stixCommon:ControlledVocabularyStringType">
|
383
|
+
<xs:simpleType>
|
384
|
+
<xs:union memberTypes="stixVocabs:IncidentStatusEnum-1.0"/>
|
385
|
+
</xs:simpleType>
|
386
|
+
<xs:attribute name="vocab_name" type="xs:string" use="optional" fixed="STIX Default Incident Status Vocabulary"/>
|
387
|
+
<xs:attribute name="vocab_reference" type="xs:anyURI" use="optional" fixed="http://stix.mitre.org/XMLSchema/default_vocabularies/1.0.0/stix_default_vocabularies.xsd#IncidentStatusVocab-1.0"/>
|
388
|
+
</xs:restriction>
|
389
|
+
</xs:simpleContent>
|
390
|
+
</xs:complexType>
|
391
|
+
<xs:simpleType name="IncidentStatusEnum-1.0">
|
392
|
+
<xs:annotation>
|
393
|
+
<xs:documentation>The default list of possible statuses that an incident might have.</xs:documentation>
|
394
|
+
<xs:appinfo>
|
395
|
+
<version>1.0</version>
|
396
|
+
</xs:appinfo>
|
397
|
+
</xs:annotation>
|
398
|
+
<xs:restriction base="xs:string">
|
399
|
+
<xs:enumeration value="New"/>
|
400
|
+
<xs:enumeration value="Open"/>
|
401
|
+
<xs:enumeration value="Stalled"/>
|
402
|
+
<xs:enumeration value="Containment Achieved"/>
|
403
|
+
<xs:enumeration value="Restoration Achieved"/>
|
404
|
+
<xs:enumeration value="Incident Reported"/>
|
405
|
+
<xs:enumeration value="Closed"/>
|
406
|
+
<xs:enumeration value="Rejected"/>
|
407
|
+
<xs:enumeration value="Deleted"/>
|
408
|
+
</xs:restriction>
|
409
|
+
</xs:simpleType>
|
410
|
+
<!-- Enumerations from VERIS -->
|
411
|
+
<!-- Security Compromise Vocabulary -->
|
412
|
+
<xs:complexType name="SecurityCompromiseVocab-1.0">
|
413
|
+
<xs:annotation>
|
414
|
+
<xs:documentation>The SecurityCompromiseVocabType is the default STIX vocabulary for expressing whether or not an incident resulted in a security compromise.</xs:documentation>
|
415
|
+
</xs:annotation>
|
416
|
+
<xs:simpleContent>
|
417
|
+
<xs:restriction base="stixCommon:ControlledVocabularyStringType">
|
418
|
+
<xs:simpleType>
|
419
|
+
<xs:union memberTypes="stixVocabs:SecurityCompromiseEnum-1.0"/>
|
420
|
+
</xs:simpleType>
|
421
|
+
<xs:attribute name="vocab_name" type="xs:string" use="optional" fixed="STIX Default Security Compromise Vocabulary"/>
|
422
|
+
<xs:attribute name="vocab_reference" type="xs:anyURI" use="optional" fixed="http://stix.mitre.org/XMLSchema/default_vocabularies/1.0.0/stix_default_vocabularies.xsd#SecurityCompromiseVocab-1.0"/>
|
423
|
+
</xs:restriction>
|
424
|
+
</xs:simpleContent>
|
425
|
+
</xs:complexType>
|
426
|
+
<xs:simpleType name="SecurityCompromiseEnum-1.0">
|
427
|
+
<xs:annotation>
|
428
|
+
<xs:documentation>
|
429
|
+
The possible values for expressing whether an incident resulted in a security compromise.
|
430
|
+
</xs:documentation>
|
431
|
+
<xs:appinfo>
|
432
|
+
<version>1.0</version>
|
433
|
+
<source>This vocabulary is a part of the VERIS framework and is used with their permission.</source>
|
434
|
+
</xs:appinfo>
|
435
|
+
</xs:annotation>
|
436
|
+
<xs:restriction base="xs:string">
|
437
|
+
<xs:enumeration value="Yes">
|
438
|
+
<xs:annotation>
|
439
|
+
<xs:documentation>It has been confirmed that this incident resulted in a security compromise.</xs:documentation>
|
440
|
+
</xs:annotation>
|
441
|
+
</xs:enumeration>
|
442
|
+
<xs:enumeration value="Suspected">
|
443
|
+
<xs:annotation>
|
444
|
+
<xs:documentation>It is suspected that this incident resulted in a security compromise.</xs:documentation>
|
445
|
+
</xs:annotation>
|
446
|
+
</xs:enumeration>
|
447
|
+
<xs:enumeration value="No">
|
448
|
+
<xs:annotation>
|
449
|
+
<xs:documentation>It has been confirmed that this incident did not result in a security compromise.</xs:documentation>
|
450
|
+
</xs:annotation>
|
451
|
+
</xs:enumeration>
|
452
|
+
<xs:enumeration value="Unknown">
|
453
|
+
<xs:annotation>
|
454
|
+
<xs:documentation>It is not known whether this incident resulted in a security compromise.</xs:documentation>
|
455
|
+
</xs:annotation>
|
456
|
+
</xs:enumeration>
|
457
|
+
</xs:restriction>
|
458
|
+
</xs:simpleType>
|
459
|
+
<!-- Discovery Method Vocabulary -->
|
460
|
+
<xs:complexType name="DiscoveryMethodVocab-1.0">
|
461
|
+
<xs:annotation>
|
462
|
+
<xs:documentation>The DiscoveryMethodVocabType is the default STIX vocabulary for expressing how an incident was discovered.</xs:documentation>
|
463
|
+
</xs:annotation>
|
464
|
+
<xs:simpleContent>
|
465
|
+
<xs:restriction base="stixCommon:ControlledVocabularyStringType">
|
466
|
+
<xs:simpleType>
|
467
|
+
<xs:union memberTypes="stixVocabs:DiscoveryMethodEnum-1.0"/>
|
468
|
+
</xs:simpleType>
|
469
|
+
<xs:attribute name="vocab_name" type="xs:string" use="optional" fixed="STIX Default Discovery Method Vocabulary"/>
|
470
|
+
<xs:attribute name="vocab_reference" type="xs:anyURI" use="optional" fixed="http://stix.mitre.org/XMLSchema/default_vocabularies/1.0.0/stix_default_vocabularies.xsd#DiscoveryMethodVocab-1.0"/>
|
471
|
+
</xs:restriction>
|
472
|
+
</xs:simpleContent>
|
473
|
+
</xs:complexType>
|
474
|
+
<xs:simpleType name="DiscoveryMethodEnum-1.0">
|
475
|
+
<xs:annotation>
|
476
|
+
<xs:documentation>
|
477
|
+
The possible values for expressing how an incident was discovered.
|
478
|
+
</xs:documentation>
|
479
|
+
<xs:appinfo>
|
480
|
+
<version>1.0</version>
|
481
|
+
<source>This vocabulary is a part of the VERIS framework and is used with their permission.</source>
|
482
|
+
</xs:appinfo>
|
483
|
+
</xs:annotation>
|
484
|
+
<xs:restriction base="xs:string">
|
485
|
+
<xs:enumeration value="Agent Disclosure">
|
486
|
+
<xs:annotation>
|
487
|
+
<xs:documentation>This incident was disclosed by the threat agent (e.g. public brag, private blackmail).</xs:documentation>
|
488
|
+
</xs:annotation>
|
489
|
+
</xs:enumeration>
|
490
|
+
<xs:enumeration value="Fraud Detection">
|
491
|
+
<xs:annotation>
|
492
|
+
<xs:documentation>This incident was discovered through external fraud detection means (e.g. CPP).</xs:documentation>
|
493
|
+
</xs:annotation>
|
494
|
+
</xs:enumeration>
|
495
|
+
<xs:enumeration value="Monitoring Service">
|
496
|
+
<xs:annotation>
|
497
|
+
<xs:documentation>This incident was reported by a managed security event monitoring service.</xs:documentation>
|
498
|
+
</xs:annotation>
|
499
|
+
</xs:enumeration>
|
500
|
+
<xs:enumeration value="Law Enforcement">
|
501
|
+
<xs:annotation>
|
502
|
+
<xs:documentation>This incident was reported by law enforcement.</xs:documentation>
|
503
|
+
</xs:annotation>
|
504
|
+
</xs:enumeration>
|
505
|
+
<xs:enumeration value="Customer">
|
506
|
+
<xs:annotation>
|
507
|
+
<xs:documentation>This incident was reported by a customer or partner affected by the incident.</xs:documentation>
|
508
|
+
</xs:annotation>
|
509
|
+
</xs:enumeration>
|
510
|
+
<xs:enumeration value="Unrelated Party">
|
511
|
+
<xs:annotation>
|
512
|
+
<xs:documentation>This incident was reported by an unrelated third party.</xs:documentation>
|
513
|
+
</xs:annotation>
|
514
|
+
</xs:enumeration>
|
515
|
+
<xs:enumeration value="Audit">
|
516
|
+
<xs:annotation>
|
517
|
+
<xs:documentation>This incident was discovered during an external security audit or scan.</xs:documentation>
|
518
|
+
</xs:annotation>
|
519
|
+
</xs:enumeration>
|
520
|
+
<xs:enumeration value="Antivirus">
|
521
|
+
<xs:annotation>
|
522
|
+
<xs:documentation>This incident was discovered by an antivirus system.</xs:documentation>
|
523
|
+
</xs:annotation>
|
524
|
+
</xs:enumeration>
|
525
|
+
<xs:enumeration value="Incident Response">
|
526
|
+
<xs:annotation>
|
527
|
+
<xs:documentation>This incident was discovered in the course of investigating a separate incident.</xs:documentation>
|
528
|
+
</xs:annotation>
|
529
|
+
</xs:enumeration>
|
530
|
+
<xs:enumeration value="Financial Audit">
|
531
|
+
<xs:annotation>
|
532
|
+
<xs:documentation>This incident was discovered in the course of a financial audit and/or reconciliation process.</xs:documentation>
|
533
|
+
</xs:annotation>
|
534
|
+
</xs:enumeration>
|
535
|
+
<xs:enumeration value="Fraud Detection">
|
536
|
+
<xs:annotation>
|
537
|
+
<xs:documentation>This incident was discovered through internal fraud detection means.</xs:documentation>
|
538
|
+
</xs:annotation>
|
539
|
+
</xs:enumeration>
|
540
|
+
<xs:enumeration value="HIPS">
|
541
|
+
<xs:annotation>
|
542
|
+
<xs:documentation>This incident was discovered a host-based IDS or file integrity monitoring.</xs:documentation>
|
543
|
+
</xs:annotation>
|
544
|
+
</xs:enumeration>
|
545
|
+
<xs:enumeration value="IT Audit">
|
546
|
+
<xs:annotation>
|
547
|
+
<xs:documentation>This incident was discovered by an internal IT audit or scan.</xs:documentation>
|
548
|
+
</xs:annotation>
|
549
|
+
</xs:enumeration>
|
550
|
+
<xs:enumeration value="Log Review">
|
551
|
+
<xs:annotation>
|
552
|
+
<xs:documentation>This incident was discovered during a log review process or by a SIEM.</xs:documentation>
|
553
|
+
</xs:annotation>
|
554
|
+
</xs:enumeration>
|
555
|
+
<xs:enumeration value="NIDS">
|
556
|
+
<xs:annotation>
|
557
|
+
<xs:documentation>This incident was discovered by a network-based intrustion detection/prevention system.</xs:documentation>
|
558
|
+
</xs:annotation>
|
559
|
+
</xs:enumeration>
|
560
|
+
<xs:enumeration value="Security Alarm">
|
561
|
+
<xs:annotation>
|
562
|
+
<xs:documentation>This incident was discovered by a physical security alarm.</xs:documentation>
|
563
|
+
</xs:annotation>
|
564
|
+
</xs:enumeration>
|
565
|
+
<xs:enumeration value="User">
|
566
|
+
<xs:annotation>
|
567
|
+
<xs:documentation>This incident was reported by a user.</xs:documentation>
|
568
|
+
</xs:annotation>
|
569
|
+
</xs:enumeration>
|
570
|
+
<xs:enumeration value="Unknown">
|
571
|
+
<xs:annotation>
|
572
|
+
<xs:documentation>It is not known how this incident was discovered.</xs:documentation>
|
573
|
+
</xs:annotation>
|
574
|
+
</xs:enumeration>
|
575
|
+
</xs:restriction>
|
576
|
+
</xs:simpleType>
|
577
|
+
<!-- Availability Loss Type Vocabulary -->
|
578
|
+
<xs:complexType name="AvailabilityLossTypeVocab-1.0">
|
579
|
+
<xs:annotation>
|
580
|
+
<xs:documentation>The AvailabilityLossTypeVocabType is the default STIX vocabulary for expressing the type of availability that was lost due to an incident.</xs:documentation>
|
581
|
+
</xs:annotation>
|
582
|
+
<xs:simpleContent>
|
583
|
+
<xs:restriction base="stixCommon:ControlledVocabularyStringType">
|
584
|
+
<xs:simpleType>
|
585
|
+
<xs:union memberTypes="stixVocabs:AvailabilityLossTypeEnum-1.0"/>
|
586
|
+
</xs:simpleType>
|
587
|
+
<xs:attribute name="vocab_name" type="xs:string" use="optional" fixed="STIX Default Availability Loss Type Vocabulary"/>
|
588
|
+
<xs:attribute name="vocab_reference" type="xs:anyURI" use="optional" fixed="http://stix.mitre.org/XMLSchema/default_vocabularies/1.0.0/stix_default_vocabularies.xsd#AvailabilityLossTypeVocab-1.0"/>
|
589
|
+
</xs:restriction>
|
590
|
+
</xs:simpleContent>
|
591
|
+
</xs:complexType>
|
592
|
+
<xs:simpleType name="AvailabilityLossTypeEnum-1.0">
|
593
|
+
<xs:annotation>
|
594
|
+
<xs:documentation>
|
595
|
+
The possible values for expressing the type of availability that was lost due to an incident.
|
596
|
+
</xs:documentation>
|
597
|
+
<xs:appinfo>
|
598
|
+
<version>1.0</version>
|
599
|
+
<source>This vocabulary is a part of the VERIS framework and is used with their permission.</source>
|
600
|
+
</xs:appinfo>
|
601
|
+
</xs:annotation>
|
602
|
+
<xs:restriction base="xs:string">
|
603
|
+
<xs:enumeration value="Destruction">
|
604
|
+
<xs:annotation>
|
605
|
+
<xs:documentation>The information was destroyed or wiped.</xs:documentation>
|
606
|
+
</xs:annotation>
|
607
|
+
</xs:enumeration>
|
608
|
+
<xs:enumeration value="Loss">
|
609
|
+
<xs:annotation>
|
610
|
+
<xs:documentation>Availability to the information was lost.</xs:documentation>
|
611
|
+
</xs:annotation>
|
612
|
+
</xs:enumeration>
|
613
|
+
<xs:enumeration value="Interruption">
|
614
|
+
<xs:annotation>
|
615
|
+
<xs:documentation>Availability to the information was interrupted.</xs:documentation>
|
616
|
+
</xs:annotation>
|
617
|
+
</xs:enumeration>
|
618
|
+
<xs:enumeration value="Degredation">
|
619
|
+
<xs:annotation>
|
620
|
+
<xs:documentation>Availability to the information was degraded.</xs:documentation>
|
621
|
+
</xs:annotation>
|
622
|
+
</xs:enumeration>
|
623
|
+
<xs:enumeration value="Acceleration">
|
624
|
+
<xs:annotation>
|
625
|
+
<xs:documentation>Availability loss type is acceleration.</xs:documentation>
|
626
|
+
</xs:annotation>
|
627
|
+
</xs:enumeration>
|
628
|
+
<xs:enumeration value="Obscuration">
|
629
|
+
<xs:annotation>
|
630
|
+
<xs:documentation>Availability to the information is obscured.</xs:documentation>
|
631
|
+
</xs:annotation>
|
632
|
+
</xs:enumeration>
|
633
|
+
<xs:enumeration value="Unknown">
|
634
|
+
<xs:annotation>
|
635
|
+
<xs:documentation>The availability loss type is not known.</xs:documentation>
|
636
|
+
</xs:annotation>
|
637
|
+
</xs:enumeration>
|
638
|
+
</xs:restriction>
|
639
|
+
</xs:simpleType>
|
640
|
+
<!-- Loss Duration Vocabulary -->
|
641
|
+
<xs:complexType name="LossDurationVocab-1.0">
|
642
|
+
<xs:annotation>
|
643
|
+
<xs:documentation>The LossDurationVocabType is the default STIX vocabulary for expressing the approximate length of time of a loss due to an incident.</xs:documentation>
|
644
|
+
</xs:annotation>
|
645
|
+
<xs:simpleContent>
|
646
|
+
<xs:restriction base="stixCommon:ControlledVocabularyStringType">
|
647
|
+
<xs:simpleType>
|
648
|
+
<xs:union memberTypes="stixVocabs:LossDurationEnum-1.0"/>
|
649
|
+
</xs:simpleType>
|
650
|
+
<xs:attribute name="vocab_name" type="xs:string" use="optional" fixed="STIX Default Loss Duration Vocabulary"/>
|
651
|
+
<xs:attribute name="vocab_reference" type="xs:anyURI" use="optional" fixed="http://stix.mitre.org/XMLSchema/default_vocabularies/1.0.0/stix_default_vocabularies.xsd#LossDurationVocab-1.0"/>
|
652
|
+
</xs:restriction>
|
653
|
+
</xs:simpleContent>
|
654
|
+
</xs:complexType>
|
655
|
+
<xs:simpleType name="LossDurationEnum-1.0">
|
656
|
+
<xs:annotation>
|
657
|
+
<xs:documentation>
|
658
|
+
The possible values for expressing the type of availability that was lost due to an incident.
|
659
|
+
</xs:documentation>
|
660
|
+
<xs:appinfo>
|
661
|
+
<version>1.0</version>
|
662
|
+
</xs:appinfo>
|
663
|
+
</xs:annotation>
|
664
|
+
<xs:restriction base="xs:string">
|
665
|
+
<xs:enumeration value="Permanent">
|
666
|
+
<xs:annotation>
|
667
|
+
<xs:documentation>The loss is permanent.</xs:documentation>
|
668
|
+
</xs:annotation>
|
669
|
+
</xs:enumeration>
|
670
|
+
<xs:enumeration value="Weeks">
|
671
|
+
<xs:annotation>
|
672
|
+
<xs:documentation>The loss lasted for weeks.</xs:documentation>
|
673
|
+
</xs:annotation>
|
674
|
+
</xs:enumeration>
|
675
|
+
<xs:enumeration value="Days">
|
676
|
+
<xs:annotation>
|
677
|
+
<xs:documentation>The loss lasted for days.</xs:documentation>
|
678
|
+
</xs:annotation>
|
679
|
+
</xs:enumeration>
|
680
|
+
<xs:enumeration value="Hours">
|
681
|
+
<xs:annotation>
|
682
|
+
<xs:documentation>The loss lasted for hours.</xs:documentation>
|
683
|
+
</xs:annotation>
|
684
|
+
</xs:enumeration>
|
685
|
+
<xs:enumeration value="Minutes">
|
686
|
+
<xs:annotation>
|
687
|
+
<xs:documentation>The loss lasted for minutes.</xs:documentation>
|
688
|
+
</xs:annotation>
|
689
|
+
</xs:enumeration>
|
690
|
+
<xs:enumeration value="Seconds">
|
691
|
+
<xs:annotation>
|
692
|
+
<xs:documentation>The loss lasted for seconds.</xs:documentation>
|
693
|
+
</xs:annotation>
|
694
|
+
</xs:enumeration>
|
695
|
+
<xs:enumeration value="Unknown">
|
696
|
+
<xs:annotation>
|
697
|
+
<xs:documentation>The loss duration is not known.</xs:documentation>
|
698
|
+
</xs:annotation>
|
699
|
+
</xs:enumeration>
|
700
|
+
</xs:restriction>
|
701
|
+
</xs:simpleType>
|
702
|
+
<!-- Ownership Class Vocabulary -->
|
703
|
+
<xs:complexType name="OwnershipClassVocab-1.0">
|
704
|
+
<xs:annotation>
|
705
|
+
<xs:documentation>The OwnershipClassVocabType is the default STIX vocabulary for expressing the type of ownership of an asset.</xs:documentation>
|
706
|
+
</xs:annotation>
|
707
|
+
<xs:simpleContent>
|
708
|
+
<xs:restriction base="stixCommon:ControlledVocabularyStringType">
|
709
|
+
<xs:simpleType>
|
710
|
+
<xs:union memberTypes="stixVocabs:OwnershipClassEnum-1.0"/>
|
711
|
+
</xs:simpleType>
|
712
|
+
<xs:attribute name="vocab_name" type="xs:string" use="optional" fixed="STIX Default Ownership Class Vocabulary"/>
|
713
|
+
<xs:attribute name="vocab_reference" type="xs:anyURI" use="optional" fixed="http://stix.mitre.org/XMLSchema/default_vocabularies/1.0.0/stix_default_vocabularies.xsd#OwnershipClassVocab-1.0"/>
|
714
|
+
</xs:restriction>
|
715
|
+
</xs:simpleContent>
|
716
|
+
</xs:complexType>
|
717
|
+
<xs:simpleType name="OwnershipClassEnum-1.0">
|
718
|
+
<xs:annotation>
|
719
|
+
<xs:documentation>
|
720
|
+
The possible values for expressing the ownership class of an object.
|
721
|
+
</xs:documentation>
|
722
|
+
<xs:appinfo>
|
723
|
+
<version>1.0</version>
|
724
|
+
</xs:appinfo>
|
725
|
+
</xs:annotation>
|
726
|
+
<xs:restriction base="xs:string">
|
727
|
+
<xs:enumeration value="Internally-Owned">
|
728
|
+
<xs:annotation>
|
729
|
+
<xs:documentation>The asset is owned internally.</xs:documentation>
|
730
|
+
</xs:annotation>
|
731
|
+
</xs:enumeration>
|
732
|
+
<xs:enumeration value="Employee-Owned">
|
733
|
+
<xs:annotation>
|
734
|
+
<xs:documentation>The asset is owned by an employee.</xs:documentation>
|
735
|
+
</xs:annotation>
|
736
|
+
</xs:enumeration>
|
737
|
+
<xs:enumeration value="Partner-Owned">
|
738
|
+
<xs:annotation>
|
739
|
+
<xs:documentation>The asset is owned by a partner.</xs:documentation>
|
740
|
+
</xs:annotation>
|
741
|
+
</xs:enumeration>
|
742
|
+
<xs:enumeration value="Customer-Owned">
|
743
|
+
<xs:annotation>
|
744
|
+
<xs:documentation>The asset is owned by a customer.</xs:documentation>
|
745
|
+
</xs:annotation>
|
746
|
+
</xs:enumeration>
|
747
|
+
<xs:enumeration value="Unknown">
|
748
|
+
<xs:annotation>
|
749
|
+
<xs:documentation>The asset ownership class is unknown.</xs:documentation>
|
750
|
+
</xs:annotation>
|
751
|
+
</xs:enumeration>
|
752
|
+
</xs:restriction>
|
753
|
+
</xs:simpleType>
|
754
|
+
<!-- Management Class Vocabulary -->
|
755
|
+
<xs:complexType name="ManagementClassVocab-1.0">
|
756
|
+
<xs:annotation>
|
757
|
+
<xs:documentation>The ManagementClassVocabType is the default STIX vocabulary for expressing the type of management of an asset.</xs:documentation>
|
758
|
+
</xs:annotation>
|
759
|
+
<xs:simpleContent>
|
760
|
+
<xs:restriction base="stixCommon:ControlledVocabularyStringType">
|
761
|
+
<xs:simpleType>
|
762
|
+
<xs:union memberTypes="stixVocabs:ManagementClassEnum-1.0"/>
|
763
|
+
</xs:simpleType>
|
764
|
+
<xs:attribute name="vocab_name" type="xs:string" use="optional" fixed="STIX Default Management Class Vocabulary"/>
|
765
|
+
<xs:attribute name="vocab_reference" type="xs:anyURI" use="optional" fixed="http://stix.mitre.org/XMLSchema/default_vocabularies/1.0.0/stix_default_vocabularies.xsd#ManagementClassVocab-1.0"/>
|
766
|
+
</xs:restriction>
|
767
|
+
</xs:simpleContent>
|
768
|
+
</xs:complexType>
|
769
|
+
<xs:simpleType name="ManagementClassEnum-1.0">
|
770
|
+
<xs:annotation>
|
771
|
+
<xs:documentation>
|
772
|
+
The possible values for expressing the management class of an object.
|
773
|
+
</xs:documentation>
|
774
|
+
<xs:appinfo>
|
775
|
+
<version>1.0</version>
|
776
|
+
</xs:appinfo>
|
777
|
+
</xs:annotation>
|
778
|
+
<xs:restriction base="xs:string">
|
779
|
+
<xs:enumeration value="Internally-Managed">
|
780
|
+
<xs:annotation>
|
781
|
+
<xs:documentation>The asset is managed internally.</xs:documentation>
|
782
|
+
</xs:annotation>
|
783
|
+
</xs:enumeration>
|
784
|
+
<xs:enumeration value="Externally-Management">
|
785
|
+
<xs:annotation>
|
786
|
+
<xs:documentation>The asset is managed externally.</xs:documentation>
|
787
|
+
</xs:annotation>
|
788
|
+
</xs:enumeration>
|
789
|
+
<xs:enumeration value="Co-Management">
|
790
|
+
<xs:annotation>
|
791
|
+
<xs:documentation>The asset is co-managed.</xs:documentation>
|
792
|
+
</xs:annotation>
|
793
|
+
</xs:enumeration>
|
794
|
+
<xs:enumeration value="Unknown">
|
795
|
+
<xs:annotation>
|
796
|
+
<xs:documentation>The asset management class is unknown.</xs:documentation>
|
797
|
+
</xs:annotation>
|
798
|
+
</xs:enumeration>
|
799
|
+
</xs:restriction>
|
800
|
+
</xs:simpleType>
|
801
|
+
<!-- Location Class Vocabulary -->
|
802
|
+
<xs:complexType name="LocationClassVocab-1.0">
|
803
|
+
<xs:annotation>
|
804
|
+
<xs:documentation>The LocationClassVocabType is the default STIX vocabulary for expressing the location of an asset.</xs:documentation>
|
805
|
+
</xs:annotation>
|
806
|
+
<xs:simpleContent>
|
807
|
+
<xs:restriction base="stixCommon:ControlledVocabularyStringType">
|
808
|
+
<xs:simpleType>
|
809
|
+
<xs:union memberTypes="stixVocabs:LocationClassEnum-1.0"/>
|
810
|
+
</xs:simpleType>
|
811
|
+
<xs:attribute name="vocab_name" type="xs:string" use="optional" fixed="STIX Default Location Class Vocabulary"/>
|
812
|
+
<xs:attribute name="vocab_reference" type="xs:anyURI" use="optional" fixed="http://stix.mitre.org/XMLSchema/default_vocabularies/1.0.0/stix_default_vocabularies.xsd#LocationClassVocab-1.0"/>
|
813
|
+
</xs:restriction>
|
814
|
+
</xs:simpleContent>
|
815
|
+
</xs:complexType>
|
816
|
+
<xs:simpleType name="LocationClassEnum-1.0">
|
817
|
+
<xs:annotation>
|
818
|
+
<xs:documentation>
|
819
|
+
The possible values for expressing the location class of an object.
|
820
|
+
</xs:documentation>
|
821
|
+
<xs:appinfo>
|
822
|
+
<version>1.0</version>
|
823
|
+
</xs:appinfo>
|
824
|
+
</xs:annotation>
|
825
|
+
<xs:restriction base="xs:string">
|
826
|
+
<xs:enumeration value="Internally-Located">
|
827
|
+
<xs:annotation>
|
828
|
+
<xs:documentation>The asset is located internally.</xs:documentation>
|
829
|
+
</xs:annotation>
|
830
|
+
</xs:enumeration>
|
831
|
+
<xs:enumeration value="Externally-Located">
|
832
|
+
<xs:annotation>
|
833
|
+
<xs:documentation>The asset is located externally.</xs:documentation>
|
834
|
+
</xs:annotation>
|
835
|
+
</xs:enumeration>
|
836
|
+
<xs:enumeration value="Co-Located">
|
837
|
+
<xs:annotation>
|
838
|
+
<xs:documentation>The asset is co-located.</xs:documentation>
|
839
|
+
</xs:annotation>
|
840
|
+
</xs:enumeration>
|
841
|
+
<xs:enumeration value="Mobile">
|
842
|
+
<xs:annotation>
|
843
|
+
<xs:documentation>The asset is mobile.</xs:documentation>
|
844
|
+
</xs:annotation>
|
845
|
+
</xs:enumeration>
|
846
|
+
<xs:enumeration value="Unknown">
|
847
|
+
<xs:annotation>
|
848
|
+
<xs:documentation>The asset location is unknown.</xs:documentation>
|
849
|
+
</xs:annotation>
|
850
|
+
</xs:enumeration>
|
851
|
+
</xs:restriction>
|
852
|
+
</xs:simpleType>
|
853
|
+
<!-- Impact Qualification Vocabulary -->
|
854
|
+
<xs:complexType name="ImpactQualificationVocab-1.0">
|
855
|
+
<xs:annotation>
|
856
|
+
<xs:documentation>The ImpactQualificationVocabType is the default STIX vocabulary for expressing the subjective level of impact of an incident.</xs:documentation>
|
857
|
+
</xs:annotation>
|
858
|
+
<xs:simpleContent>
|
859
|
+
<xs:restriction base="stixCommon:ControlledVocabularyStringType">
|
860
|
+
<xs:simpleType>
|
861
|
+
<xs:union memberTypes="stixVocabs:ImpactQualificationEnum-1.0"/>
|
862
|
+
</xs:simpleType>
|
863
|
+
<xs:attribute name="vocab_name" type="xs:string" use="optional" fixed="STIX Default Impact Qualification Vocabulary"/>
|
864
|
+
<xs:attribute name="vocab_reference" type="xs:anyURI" use="optional" fixed="http://stix.mitre.org/XMLSchema/default_vocabularies/1.0.0/stix_default_vocabularies.xsd#ImpactQualificationVocab-1.0"/>
|
865
|
+
</xs:restriction>
|
866
|
+
</xs:simpleContent>
|
867
|
+
</xs:complexType>
|
868
|
+
<xs:simpleType name="ImpactQualificationEnum-1.0">
|
869
|
+
<xs:annotation>
|
870
|
+
<xs:documentation>
|
871
|
+
The possible values for expressing the impact level of an incident.
|
872
|
+
</xs:documentation>
|
873
|
+
<xs:appinfo>
|
874
|
+
<version>1.0</version>
|
875
|
+
<source>This vocabulary is a part of the VERIS framework and is used with their permission.</source>
|
876
|
+
</xs:appinfo>
|
877
|
+
</xs:annotation>
|
878
|
+
<xs:restriction base="xs:string">
|
879
|
+
<xs:enumeration value="Insignificant">
|
880
|
+
<xs:annotation>
|
881
|
+
<xs:documentation>The impact is absorbed by normal activities.</xs:documentation>
|
882
|
+
</xs:annotation>
|
883
|
+
</xs:enumeration>
|
884
|
+
<xs:enumeration value="Distracting">
|
885
|
+
<xs:annotation>
|
886
|
+
<xs:documentation>There are limited “hard costs”, but the impact is felt through having to deal with the incident rather than conducting normal duties.</xs:documentation>
|
887
|
+
</xs:annotation>
|
888
|
+
</xs:enumeration>
|
889
|
+
<xs:enumeration value="Painful">
|
890
|
+
<xs:annotation>
|
891
|
+
<xs:documentation>Real, somewhat serious effect on the "bottom line".</xs:documentation>
|
892
|
+
</xs:annotation>
|
893
|
+
</xs:enumeration>
|
894
|
+
<xs:enumeration value="Damaging">
|
895
|
+
<xs:annotation>
|
896
|
+
<xs:documentation>Real and serious effect on the “bottom line” and/or long-term ability to generate revenue.</xs:documentation>
|
897
|
+
</xs:annotation>
|
898
|
+
</xs:enumeration>
|
899
|
+
<xs:enumeration value="Catastrophic">
|
900
|
+
<xs:annotation>
|
901
|
+
<xs:documentation>A business-ending event.</xs:documentation>
|
902
|
+
</xs:annotation>
|
903
|
+
</xs:enumeration>
|
904
|
+
<xs:enumeration value="Unknown">
|
905
|
+
<xs:annotation>
|
906
|
+
<xs:documentation>The impact qualification is unknown.</xs:documentation>
|
907
|
+
</xs:annotation>
|
908
|
+
</xs:enumeration>
|
909
|
+
</xs:restriction>
|
910
|
+
</xs:simpleType>
|
911
|
+
<!-- Impact Rating Vocabulary -->
|
912
|
+
<xs:complexType name="ImpactRatingVocab-1.0">
|
913
|
+
<xs:annotation>
|
914
|
+
<xs:documentation>The ImpactRatingVocabType is the default STIX vocabulary for expressing the level of impact due to an incident.</xs:documentation>
|
915
|
+
</xs:annotation>
|
916
|
+
<xs:simpleContent>
|
917
|
+
<xs:restriction base="stixCommon:ControlledVocabularyStringType">
|
918
|
+
<xs:simpleType>
|
919
|
+
<xs:union memberTypes="stixVocabs:ImpactRatingEnum-1.0"/>
|
920
|
+
</xs:simpleType>
|
921
|
+
<xs:attribute name="vocab_name" type="xs:string" use="optional" fixed="STIX Default Impact Rating Vocabulary"/>
|
922
|
+
<xs:attribute name="vocab_reference" type="xs:anyURI" use="optional" fixed="http://stix.mitre.org/XMLSchema/default_vocabularies/1.0.0/stix_default_vocabularies.xsd#ImpactRatingVocab-1.0"/>
|
923
|
+
</xs:restriction>
|
924
|
+
</xs:simpleContent>
|
925
|
+
</xs:complexType>
|
926
|
+
<xs:simpleType name="ImpactRatingEnum-1.0">
|
927
|
+
<xs:annotation>
|
928
|
+
<xs:documentation>
|
929
|
+
The possible values for expressing the level of impact due to a loss.
|
930
|
+
</xs:documentation>
|
931
|
+
<xs:appinfo>
|
932
|
+
<version>1.0</version>
|
933
|
+
<source>This vocabulary is a part of the VERIS framework and is used with their permission.</source>
|
934
|
+
</xs:appinfo>
|
935
|
+
</xs:annotation>
|
936
|
+
<xs:restriction base="xs:string">
|
937
|
+
<xs:enumeration value="None">
|
938
|
+
<xs:annotation>
|
939
|
+
<xs:documentation>There was no impact.</xs:documentation>
|
940
|
+
</xs:annotation>
|
941
|
+
</xs:enumeration>
|
942
|
+
<xs:enumeration value="Minor">
|
943
|
+
<xs:annotation>
|
944
|
+
<xs:documentation>There was a minor impact.</xs:documentation>
|
945
|
+
</xs:annotation>
|
946
|
+
</xs:enumeration>
|
947
|
+
<xs:enumeration value="Moderate">
|
948
|
+
<xs:annotation>
|
949
|
+
<xs:documentation>There was a moderate impact.</xs:documentation>
|
950
|
+
</xs:annotation>
|
951
|
+
</xs:enumeration>
|
952
|
+
<xs:enumeration value="Major">
|
953
|
+
<xs:annotation>
|
954
|
+
<xs:documentation>There was a major impact.</xs:documentation>
|
955
|
+
</xs:annotation>
|
956
|
+
</xs:enumeration>
|
957
|
+
<xs:enumeration value="Unknown">
|
958
|
+
<xs:annotation>
|
959
|
+
<xs:documentation>The impact is not known.</xs:documentation>
|
960
|
+
</xs:annotation>
|
961
|
+
</xs:enumeration>
|
962
|
+
</xs:restriction>
|
963
|
+
</xs:simpleType>
|
964
|
+
<!-- Asset Type Vocabulary -->
|
965
|
+
<xs:complexType name="AssetTypeVocab-1.0">
|
966
|
+
<xs:annotation>
|
967
|
+
<xs:documentation>The AssetTypeVocabType is the default STIX vocabulary for expressing the type of an asset.</xs:documentation>
|
968
|
+
</xs:annotation>
|
969
|
+
<xs:simpleContent>
|
970
|
+
<xs:restriction base="stixCommon:ControlledVocabularyStringType">
|
971
|
+
<xs:simpleType>
|
972
|
+
<xs:union memberTypes="stixVocabs:AssetTypeEnum-1.0"/>
|
973
|
+
</xs:simpleType>
|
974
|
+
<xs:attribute name="vocab_name" type="xs:string" use="optional" fixed="STIX Default Asset Type Vocabulary"/>
|
975
|
+
<xs:attribute name="vocab_reference" type="xs:anyURI" use="optional" fixed="http://stix.mitre.org/XMLSchema/default_vocabularies/1.0.0/stix_default_vocabularies.xsd#AssetTypeVocab-1.0"/>
|
976
|
+
</xs:restriction>
|
977
|
+
</xs:simpleContent>
|
978
|
+
</xs:complexType>
|
979
|
+
<xs:simpleType name="AssetTypeEnum-1.0">
|
980
|
+
<xs:annotation>
|
981
|
+
<xs:documentation>
|
982
|
+
The possible values for types of assets.
|
983
|
+
</xs:documentation>
|
984
|
+
<xs:appinfo>
|
985
|
+
<version>1.0</version>
|
986
|
+
<source>This vocabulary is a part of the VERIS framework and is used with their permission.</source>
|
987
|
+
</xs:appinfo>
|
988
|
+
</xs:annotation>
|
989
|
+
<xs:restriction base="xs:string">
|
990
|
+
<xs:enumeration value="Backup"/>
|
991
|
+
<xs:enumeration value="Database"/>
|
992
|
+
<xs:enumeration value="DHCP"/>
|
993
|
+
<xs:enumeration value="Directory"/>
|
994
|
+
<xs:enumeration value="DCS"/>
|
995
|
+
<xs:enumeration value="DNS"/>
|
996
|
+
<xs:enumeration value="File"/>
|
997
|
+
<xs:enumeration value="Log"/>
|
998
|
+
<xs:enumeration value="Mail"/>
|
999
|
+
<xs:enumeration value="Mainframe"/>
|
1000
|
+
<xs:enumeration value="Payment switch"/>
|
1001
|
+
<xs:enumeration value="POS controller"/>
|
1002
|
+
<xs:enumeration value="Print"/>
|
1003
|
+
<xs:enumeration value="Proxy"/>
|
1004
|
+
<xs:enumeration value="Remote access"/>
|
1005
|
+
<xs:enumeration value="SCADA"/>
|
1006
|
+
<xs:enumeration value="Web application"/>
|
1007
|
+
<xs:enumeration value="Server"/>
|
1008
|
+
<xs:enumeration value="Access reader"/>
|
1009
|
+
<xs:enumeration value="Camera"/>
|
1010
|
+
<xs:enumeration value="Firewall"/>
|
1011
|
+
<xs:enumeration value="HSM"/>
|
1012
|
+
<xs:enumeration value="IDS"/>
|
1013
|
+
<xs:enumeration value="Broadband"/>
|
1014
|
+
<xs:enumeration value="PBX"/>
|
1015
|
+
<xs:enumeration value="Private WAN"/>
|
1016
|
+
<xs:enumeration value="PLC"/>
|
1017
|
+
<xs:enumeration value="Public WAN"/>
|
1018
|
+
<xs:enumeration value="RTU"/>
|
1019
|
+
<xs:enumeration value="Router or switch"/>
|
1020
|
+
<xs:enumeration value="SAN"/>
|
1021
|
+
<xs:enumeration value="Telephone"/>
|
1022
|
+
<xs:enumeration value="VoIP adapter"/>
|
1023
|
+
<xs:enumeration value="LAN"/>
|
1024
|
+
<xs:enumeration value="WLAN"/>
|
1025
|
+
<xs:enumeration value="Network"/>
|
1026
|
+
<xs:enumeration value="Auth token"/>
|
1027
|
+
<xs:enumeration value="ATM"/>
|
1028
|
+
<xs:enumeration value="Desktop"/>
|
1029
|
+
<xs:enumeration value="PED pad"/>
|
1030
|
+
<xs:enumeration value="Gas terminal"/>
|
1031
|
+
<xs:enumeration value="Laptop"/>
|
1032
|
+
<xs:enumeration value="Media"/>
|
1033
|
+
<xs:enumeration value="Mobile phone"/>
|
1034
|
+
<xs:enumeration value="Peripheral"/>
|
1035
|
+
<xs:enumeration value="POS terminal"/>
|
1036
|
+
<xs:enumeration value="Kiosk"/>
|
1037
|
+
<xs:enumeration value="Tablet"/>
|
1038
|
+
<xs:enumeration value="Telephone"/>
|
1039
|
+
<xs:enumeration value="VoIP phone"/>
|
1040
|
+
<xs:enumeration value="User Device"/>
|
1041
|
+
<xs:enumeration value="Tapes"/>
|
1042
|
+
<xs:enumeration value="Disk media"/>
|
1043
|
+
<xs:enumeration value="Documents"/>
|
1044
|
+
<xs:enumeration value="Flash drive"/>
|
1045
|
+
<xs:enumeration value="Disk drive"/>
|
1046
|
+
<xs:enumeration value="Smart card"/>
|
1047
|
+
<xs:enumeration value="Payment card"/>
|
1048
|
+
<xs:enumeration value="Media"/>
|
1049
|
+
<xs:enumeration value="Administrator"/>
|
1050
|
+
<xs:enumeration value="Auditor"/>
|
1051
|
+
<xs:enumeration value="Call center"/>
|
1052
|
+
<xs:enumeration value="Cashier"/>
|
1053
|
+
<xs:enumeration value="Customer"/>
|
1054
|
+
<xs:enumeration value="Developer"/>
|
1055
|
+
<xs:enumeration value="End-user"/>
|
1056
|
+
<xs:enumeration value="Executive"/>
|
1057
|
+
<xs:enumeration value="Finance"/>
|
1058
|
+
<xs:enumeration value="Former employee"/>
|
1059
|
+
<xs:enumeration value="Guard"/>
|
1060
|
+
<xs:enumeration value="Helpdesk"/>
|
1061
|
+
<xs:enumeration value="Human resources"/>
|
1062
|
+
<xs:enumeration value="Maintenance"/>
|
1063
|
+
<xs:enumeration value="Manager"/>
|
1064
|
+
<xs:enumeration value="Partner"/>
|
1065
|
+
<xs:enumeration value="Person"/>
|
1066
|
+
<xs:enumeration value="Unknown"/>
|
1067
|
+
</xs:restriction>
|
1068
|
+
</xs:simpleType>
|
1069
|
+
<!-- Attacker Infrastructure Vocabulary -->
|
1070
|
+
<xs:complexType name="AttackerInfrastructureTypeVocab-1.0">
|
1071
|
+
<xs:annotation>
|
1072
|
+
<xs:documentation>The AttackerInfrastructureTypeVocabType is the default STIX vocabulary for expressing the type of infrastructure an attacker uses.</xs:documentation>
|
1073
|
+
</xs:annotation>
|
1074
|
+
<xs:simpleContent>
|
1075
|
+
<xs:restriction base="stixCommon:ControlledVocabularyStringType">
|
1076
|
+
<xs:simpleType>
|
1077
|
+
<xs:union memberTypes="stixVocabs:AttackerInfrastructureTypeEnum-1.0"/>
|
1078
|
+
</xs:simpleType>
|
1079
|
+
<xs:attribute name="vocab_name" type="xs:string" use="optional" fixed="STIX Default Attacker Infastructure Type Vocabulary"/>
|
1080
|
+
<xs:attribute name="vocab_reference" type="xs:anyURI" use="optional" fixed="http://stix.mitre.org/XMLSchema/default_vocabularies/1.0.0/stix_default_vocabularies.xsd#AttackerInfrastructureTypeVocab-1.0"/>
|
1081
|
+
</xs:restriction>
|
1082
|
+
</xs:simpleContent>
|
1083
|
+
</xs:complexType>
|
1084
|
+
<xs:simpleType name="AttackerInfrastructureTypeEnum-1.0">
|
1085
|
+
<xs:annotation>
|
1086
|
+
<xs:documentation>
|
1087
|
+
The possible values for types of attacker infrastructure.
|
1088
|
+
</xs:documentation>
|
1089
|
+
<xs:appinfo>
|
1090
|
+
<version>1.0</version>
|
1091
|
+
<source>The initial version of this enumeration was contributed by iSight Partners, Inc. and is used with their permission.</source>
|
1092
|
+
</xs:appinfo>
|
1093
|
+
</xs:annotation>
|
1094
|
+
<xs:restriction base="xs:string">
|
1095
|
+
<xs:enumeration value="Anonymization"/>
|
1096
|
+
<xs:enumeration value="Anonymization - Proxy"/>
|
1097
|
+
<xs:enumeration value="Anonymization - TOR Network"/>
|
1098
|
+
<xs:enumeration value="Anonymization - VPN"/>
|
1099
|
+
<xs:enumeration value="Communications"/>
|
1100
|
+
<xs:enumeration value="Communications - Blogs"/>
|
1101
|
+
<xs:enumeration value="Communications - Forums"/>
|
1102
|
+
<xs:enumeration value="Communications - Internet Relay Chat"/>
|
1103
|
+
<xs:enumeration value="Communications - Micro-Blogs"/>
|
1104
|
+
<xs:enumeration value="Communications - Mobile Communications"/>
|
1105
|
+
<xs:enumeration value="Communications - Social Networks"/>
|
1106
|
+
<xs:enumeration value="Communications - User-Generated Content Websites"/>
|
1107
|
+
<xs:enumeration value="Domain Registration"/>
|
1108
|
+
<xs:enumeration value="Domain Registration - Dynamic DNS Services"/>
|
1109
|
+
<xs:enumeration value="Domain Registration - Legitimate Domain Registration Services"/>
|
1110
|
+
<xs:enumeration value="Domain Registration - Malicious Domain Registrars"/>
|
1111
|
+
<xs:enumeration value="Domain Registration - Top-Level Domain Registrars"/>
|
1112
|
+
<xs:enumeration value="Hosting"/>
|
1113
|
+
<xs:enumeration value="Hosting - Bulletproof / Rogue Hosting"/>
|
1114
|
+
<xs:enumeration value="Hosting - Cloud Hosting"/>
|
1115
|
+
<xs:enumeration value="Hosting - Compromised Server"/>
|
1116
|
+
<xs:enumeration value="Hosting - Fast Flux Botnet Hosting"/>
|
1117
|
+
<xs:enumeration value="Hosting - Legitimate Hosting"/>
|
1118
|
+
<xs:enumeration value="Electronic Payment Methods"/>
|
1119
|
+
</xs:restriction>
|
1120
|
+
</xs:simpleType>
|
1121
|
+
<!-- System Type Vocabulary -->
|
1122
|
+
<xs:complexType name="SystemTypeVocab-1.0">
|
1123
|
+
<xs:annotation>
|
1124
|
+
<xs:documentation>The SystemTypeVocabType is the default STIX vocabulary for expressing the type of a system.</xs:documentation>
|
1125
|
+
</xs:annotation>
|
1126
|
+
<xs:simpleContent>
|
1127
|
+
<xs:restriction base="stixCommon:ControlledVocabularyStringType">
|
1128
|
+
<xs:simpleType>
|
1129
|
+
<xs:union memberTypes="stixVocabs:SystemTypeEnum-1.0"/>
|
1130
|
+
</xs:simpleType>
|
1131
|
+
<xs:attribute name="vocab_name" type="xs:string" use="optional" fixed="STIX Default System Type Vocabulary"/>
|
1132
|
+
<xs:attribute name="vocab_reference" type="xs:anyURI" use="optional" fixed="http://stix.mitre.org/XMLSchema/default_vocabularies/1.0.0/stix_default_vocabularies.xsd#SystemTypeVocab-1.0"/>
|
1133
|
+
</xs:restriction>
|
1134
|
+
</xs:simpleContent>
|
1135
|
+
</xs:complexType>
|
1136
|
+
<xs:simpleType name="SystemTypeEnum-1.0">
|
1137
|
+
<xs:annotation>
|
1138
|
+
<xs:documentation>
|
1139
|
+
The possible values for types of systems.
|
1140
|
+
</xs:documentation>
|
1141
|
+
<xs:appinfo>
|
1142
|
+
<version>1.0</version>
|
1143
|
+
<source>The initial version of this enumeration was contributed by iSight Partners, Inc. and is used with their permission.</source>
|
1144
|
+
</xs:appinfo>
|
1145
|
+
</xs:annotation>
|
1146
|
+
<xs:restriction base="xs:string">
|
1147
|
+
<xs:enumeration value="Enterprise Systems"/>
|
1148
|
+
<xs:enumeration value="Enterprise Systems - Application Layer"/>
|
1149
|
+
<xs:enumeration value="Enterprise Systems - Database Layer"/>
|
1150
|
+
<xs:enumeration value="Enterprise Systems - Enterprise Technologies and Support Infrastructure"/>
|
1151
|
+
<xs:enumeration value="Enterprise Systems - Network Systems"/>
|
1152
|
+
<xs:enumeration value="Enterprise Systems - Networking Devices"/>
|
1153
|
+
<xs:enumeration value="Enterprise Systems - Web Layer"/>
|
1154
|
+
<xs:enumeration value="Enterprise Systems - VoIP"/>
|
1155
|
+
<xs:enumeration value="Industrial Control Systems"/>
|
1156
|
+
<xs:enumeration value="Industrial Control Systems - Equipment Under Control"/>
|
1157
|
+
<xs:enumeration value="Industrial Control Systems - Operations Management"/>
|
1158
|
+
<xs:enumeration value="Industrial Control Systems - Safety, Protection and Local Control"/>
|
1159
|
+
<xs:enumeration value="Industrial Control Systems - Supervisory Control"/>
|
1160
|
+
<xs:enumeration value="Mobile Systems"/>
|
1161
|
+
<xs:enumeration value="Mobile Systems - Mobile Operating Systems"/>
|
1162
|
+
<xs:enumeration value="Mobile Systems - Near Field Communications"/>
|
1163
|
+
<xs:enumeration value="Mobile Systems - Mobile Devices"/>
|
1164
|
+
<xs:enumeration value="Third-Party Services"/>
|
1165
|
+
<xs:enumeration value="Third-Party Services - Application Stores"/>
|
1166
|
+
<xs:enumeration value="Third-Party Services - Cloud Services"/>
|
1167
|
+
<xs:enumeration value="Third-Party Services - Security Vendors"/>
|
1168
|
+
<xs:enumeration value="Third-Party Services - Social Media"/>
|
1169
|
+
<xs:enumeration value="Third-Party Services - Software Update"/>
|
1170
|
+
<xs:enumeration value="Users"/>
|
1171
|
+
<xs:enumeration value="Users - Application And Software"/>
|
1172
|
+
<xs:enumeration value="Users - Workstation"/>
|
1173
|
+
<xs:enumeration value="Users - Removable Media"/>
|
1174
|
+
</xs:restriction>
|
1175
|
+
</xs:simpleType>
|
1176
|
+
<!-- Information Type Vocabulary -->
|
1177
|
+
<xs:complexType name="InformationTypeVocab-1.0">
|
1178
|
+
<xs:annotation>
|
1179
|
+
<xs:documentation>The InformationTypeVocabType is the default STIX vocabulary for expressing the type of information.</xs:documentation>
|
1180
|
+
</xs:annotation>
|
1181
|
+
<xs:simpleContent>
|
1182
|
+
<xs:restriction base="stixCommon:ControlledVocabularyStringType">
|
1183
|
+
<xs:simpleType>
|
1184
|
+
<xs:union memberTypes="stixVocabs:InformationTypeEnum-1.0"/>
|
1185
|
+
</xs:simpleType>
|
1186
|
+
<xs:attribute name="vocab_name" type="xs:string" use="optional" fixed="STIX Default Information Type Vocabulary"/>
|
1187
|
+
<xs:attribute name="vocab_reference" type="xs:anyURI" use="optional" fixed="http://stix.mitre.org/XMLSchema/default_vocabularies/1.0.0/stix_default_vocabularies.xsd#InformationTypeVocab-1.0"/>
|
1188
|
+
</xs:restriction>
|
1189
|
+
</xs:simpleContent>
|
1190
|
+
</xs:complexType>
|
1191
|
+
<xs:simpleType name="InformationTypeEnum-1.0">
|
1192
|
+
<xs:annotation>
|
1193
|
+
<xs:documentation>
|
1194
|
+
The possible values for types of information.
|
1195
|
+
</xs:documentation>
|
1196
|
+
<xs:appinfo>
|
1197
|
+
<version>1.0</version>
|
1198
|
+
<source>The initial version of this enumeration was contributed by iSight Partners, Inc. and is used with their permission.</source>
|
1199
|
+
</xs:appinfo>
|
1200
|
+
</xs:annotation>
|
1201
|
+
<xs:restriction base="xs:string">
|
1202
|
+
<xs:enumeration value="Information Assets"/>
|
1203
|
+
<xs:enumeration value="Information Assets - Corporate Employee Information"/>
|
1204
|
+
<xs:enumeration value="Information Assets - Customer PII"/>
|
1205
|
+
<xs:enumeration value="Information Assets - Email Lists / Archives"/>
|
1206
|
+
<xs:enumeration value="Information Assets - Financial Data"/>
|
1207
|
+
<xs:enumeration value="Information Assets - Intellectual Property"/>
|
1208
|
+
<xs:enumeration value="Information Assets - Mobile Phone Contacts"/>
|
1209
|
+
<xs:enumeration value="Information Assets - User Credentials"/>
|
1210
|
+
<xs:enumeration value="Authentication Cookies"/>
|
1211
|
+
</xs:restriction>
|
1212
|
+
</xs:simpleType>
|
1213
|
+
<!-- Threat Actor Type Vocabulary -->
|
1214
|
+
<xs:complexType name="ThreatActorTypeVocab-1.0">
|
1215
|
+
<xs:annotation>
|
1216
|
+
<xs:documentation>The ThreatActorTypeVocabType is the default STIX vocabulary for expressing the type of a threat actor.</xs:documentation>
|
1217
|
+
</xs:annotation>
|
1218
|
+
<xs:simpleContent>
|
1219
|
+
<xs:restriction base="stixCommon:ControlledVocabularyStringType">
|
1220
|
+
<xs:simpleType>
|
1221
|
+
<xs:union memberTypes="stixVocabs:ThreatActorTypeEnum-1.0"/>
|
1222
|
+
</xs:simpleType>
|
1223
|
+
<xs:attribute name="vocab_name" type="xs:string" use="optional" fixed="STIX Default Threat Actor Type Vocabulary"/>
|
1224
|
+
<xs:attribute name="vocab_reference" type="xs:anyURI" use="optional" fixed="http://stix.mitre.org/XMLSchema/default_vocabularies/1.0.0/stix_default_vocabularies.xsd#ThreatActorTypeVocab-1.0"/>
|
1225
|
+
</xs:restriction>
|
1226
|
+
</xs:simpleContent>
|
1227
|
+
</xs:complexType>
|
1228
|
+
<xs:simpleType name="ThreatActorTypeEnum-1.0">
|
1229
|
+
<xs:annotation>
|
1230
|
+
<xs:documentation>
|
1231
|
+
The possible values for types of threat actors.
|
1232
|
+
</xs:documentation>
|
1233
|
+
<xs:appinfo>
|
1234
|
+
<version>1.0</version>
|
1235
|
+
<source>The initial version of this enumeration was contributed by iSight Partners, Inc. and is used with their permission.</source>
|
1236
|
+
</xs:appinfo>
|
1237
|
+
</xs:annotation>
|
1238
|
+
<xs:restriction base="xs:string">
|
1239
|
+
<xs:enumeration value="Cyber Espionage Operations"/>
|
1240
|
+
<xs:enumeration value="Hacker"/>
|
1241
|
+
<xs:enumeration value="Hacker - White hat"/>
|
1242
|
+
<xs:enumeration value="Hacker - Gray hat"/>
|
1243
|
+
<xs:enumeration value="Hacker - Black hat"/>
|
1244
|
+
<xs:enumeration value="Hacktivist"/>
|
1245
|
+
<xs:enumeration value="State Actor / Agency"/>
|
1246
|
+
<xs:enumeration value="eCrime Actor - Credential Theft Botnet Operator"/>
|
1247
|
+
<xs:enumeration value="eCrime Actor - Credential Theft Botnet Service"/>
|
1248
|
+
<xs:enumeration value="eCrime Actor - Malware Developer"/>
|
1249
|
+
<xs:enumeration value="eCrime Actor - Money Laundering Network"/>
|
1250
|
+
<xs:enumeration value="eCrime Actor - Organized Crime Actor"/>
|
1251
|
+
<xs:enumeration value="eCrime Actor - Spam Service"/>
|
1252
|
+
<xs:enumeration value="eCrime Actor - Traffic Service"/>
|
1253
|
+
<xs:enumeration value="eCrime Actor - Underground Call Service"/>
|
1254
|
+
<xs:enumeration value="Insider Threat"/>
|
1255
|
+
<xs:enumeration value="Disgruntled Customer / User"/>
|
1256
|
+
</xs:restriction>
|
1257
|
+
</xs:simpleType>
|
1258
|
+
<!-- Motivation Vocabulary -->
|
1259
|
+
<xs:complexType name="MotivationVocab-1.0">
|
1260
|
+
<xs:annotation>
|
1261
|
+
<xs:documentation>The MotivationVocabType is the default STIX vocabulary for expressing the motivation of a threat actor.</xs:documentation>
|
1262
|
+
</xs:annotation>
|
1263
|
+
<xs:simpleContent>
|
1264
|
+
<xs:restriction base="stixCommon:ControlledVocabularyStringType">
|
1265
|
+
<xs:simpleType>
|
1266
|
+
<xs:union memberTypes="stixVocabs:MotivationEnum-1.0"/>
|
1267
|
+
</xs:simpleType>
|
1268
|
+
<xs:attribute name="vocab_name" type="xs:string" use="optional" fixed="STIX Default Motivation Vocabulary"/>
|
1269
|
+
<xs:attribute name="vocab_reference" type="xs:anyURI" use="optional" fixed="http://stix.mitre.org/XMLSchema/default_vocabularies/1.0.0/stix_default_vocabularies.xsd#MotivationVocab-1.0"/>
|
1270
|
+
</xs:restriction>
|
1271
|
+
</xs:simpleContent>
|
1272
|
+
</xs:complexType>
|
1273
|
+
<xs:simpleType name="MotivationEnum-1.0">
|
1274
|
+
<xs:annotation>
|
1275
|
+
<xs:documentation>
|
1276
|
+
The possible values for motivations of a threat actor.
|
1277
|
+
</xs:documentation>
|
1278
|
+
<xs:appinfo>
|
1279
|
+
<version>1.0</version>
|
1280
|
+
<source>The initial version of this enumeration was contributed by iSight Partners, Inc. and is used with their permission.</source>
|
1281
|
+
</xs:appinfo>
|
1282
|
+
</xs:annotation>
|
1283
|
+
<xs:restriction base="xs:string">
|
1284
|
+
<xs:enumeration value="Ideological"/>
|
1285
|
+
<xs:enumeration value="Ideological - Anti-Corruption"/>
|
1286
|
+
<xs:enumeration value="Ideological - Anti-Establisment"/>
|
1287
|
+
<xs:enumeration value="Ideological - Environmental"/>
|
1288
|
+
<xs:enumeration value="Ideological - Ethnic / Nationalist"/>
|
1289
|
+
<xs:enumeration value="Ideological - Information Freedom"/>
|
1290
|
+
<xs:enumeration value="Ideological - Religious"/>
|
1291
|
+
<xs:enumeration value="Ideological - Security Awareness"/>
|
1292
|
+
<xs:enumeration value="Ideological - Human Rights"/>
|
1293
|
+
<xs:enumeration value="Ego"/>
|
1294
|
+
<xs:enumeration value="Financial or Economic"/>
|
1295
|
+
<xs:enumeration value="Military"/>
|
1296
|
+
<xs:enumeration value="Opportunistic"/>
|
1297
|
+
<xs:enumeration value="Policital"/>
|
1298
|
+
</xs:restriction>
|
1299
|
+
</xs:simpleType>
|
1300
|
+
<!-- Intended Effect Vocabulary -->
|
1301
|
+
<xs:complexType name="IntendedEffectVocab-1.0">
|
1302
|
+
<xs:annotation>
|
1303
|
+
<xs:documentation>The IntendedEffectVocabType is the default STIX vocabulary for expressing the intended effect of a threat actor.</xs:documentation>
|
1304
|
+
</xs:annotation>
|
1305
|
+
<xs:simpleContent>
|
1306
|
+
<xs:restriction base="stixCommon:ControlledVocabularyStringType">
|
1307
|
+
<xs:simpleType>
|
1308
|
+
<xs:union memberTypes="stixVocabs:IntendedEffectEnum-1.0"/>
|
1309
|
+
</xs:simpleType>
|
1310
|
+
<xs:attribute name="vocab_name" type="xs:string" use="optional" fixed="STIX Default Intended Effect Vocabulary"/>
|
1311
|
+
<xs:attribute name="vocab_reference" type="xs:anyURI" use="optional" fixed="http://stix.mitre.org/XMLSchema/default_vocabularies/1.0.0/stix_default_vocabularies.xsd#IntendedEffectVocab-1.0"/>
|
1312
|
+
</xs:restriction>
|
1313
|
+
</xs:simpleContent>
|
1314
|
+
</xs:complexType>
|
1315
|
+
<xs:simpleType name="IntendedEffectEnum-1.0">
|
1316
|
+
<xs:annotation>
|
1317
|
+
<xs:documentation>
|
1318
|
+
The possible values for effects intended by a threat actor.
|
1319
|
+
</xs:documentation>
|
1320
|
+
<xs:appinfo>
|
1321
|
+
<version>1.0</version>
|
1322
|
+
<source>The initial version of this enumeration was contributed by iSight Partners, Inc. and is used with their permission.</source>
|
1323
|
+
</xs:appinfo>
|
1324
|
+
</xs:annotation>
|
1325
|
+
<xs:restriction base="xs:string">
|
1326
|
+
<xs:enumeration value="Advantage"/>
|
1327
|
+
<xs:enumeration value="Advantage - Economic"/>
|
1328
|
+
<xs:enumeration value="Advantage - Military"/>
|
1329
|
+
<xs:enumeration value="Advantage - Political"/>
|
1330
|
+
<xs:enumeration value="Theft"/>
|
1331
|
+
<xs:enumeration value="Theft - Intellectual Property"/>
|
1332
|
+
<xs:enumeration value="Theft - Credential Theft"/>
|
1333
|
+
<xs:enumeration value="Theft - Identity Theft"/>
|
1334
|
+
<xs:enumeration value="Theft - Theft of Proprietary Information"/>
|
1335
|
+
<xs:enumeration value="Account Takeover"/>
|
1336
|
+
<xs:enumeration value="Brand Damage"/>
|
1337
|
+
<xs:enumeration value="Competitive Advantage"/>
|
1338
|
+
<xs:enumeration value="Degradation of Service"/>
|
1339
|
+
<xs:enumeration value="Denial and Deception"/>
|
1340
|
+
<xs:enumeration value="Destruction"/>
|
1341
|
+
<xs:enumeration value="Disruption"/>
|
1342
|
+
<xs:enumeration value="Embarrassment"/>
|
1343
|
+
<xs:enumeration value="Exposure"/>
|
1344
|
+
<xs:enumeration value="Extortion"/>
|
1345
|
+
<xs:enumeration value="Fraud"/>
|
1346
|
+
<xs:enumeration value="Harassment"/>
|
1347
|
+
<xs:enumeration value="ICS Control"/>
|
1348
|
+
<xs:enumeration value="Traffic Diversion"/>
|
1349
|
+
<xs:enumeration value="Unauthorized Access"/>
|
1350
|
+
</xs:restriction>
|
1351
|
+
</xs:simpleType>
|
1352
|
+
<!-- Intended Effect Vocabulary -->
|
1353
|
+
<xs:complexType name="PlanningAndOperationalSupportVocab-1.0">
|
1354
|
+
<xs:annotation>
|
1355
|
+
<xs:documentation>The PlanningAndOperationalSupportVocabType is the default STIX vocabulary for expressing the planning and operational support functions of a threat actor.</xs:documentation>
|
1356
|
+
</xs:annotation>
|
1357
|
+
<xs:simpleContent>
|
1358
|
+
<xs:restriction base="stixCommon:ControlledVocabularyStringType">
|
1359
|
+
<xs:simpleType>
|
1360
|
+
<xs:union memberTypes="stixVocabs:PlanningAndOperationalSupportEnum-1.0"/>
|
1361
|
+
</xs:simpleType>
|
1362
|
+
<xs:attribute name="vocab_name" type="xs:string" use="optional" fixed="STIX Default Planning and Operational Support Vocabulary"/>
|
1363
|
+
<xs:attribute name="vocab_reference" type="xs:anyURI" use="optional" fixed="http://stix.mitre.org/XMLSchema/default_vocabularies/1.0.0/stix_default_vocabularies.xsd#PlanningAndOperationalSupportVocab-1.0"/>
|
1364
|
+
</xs:restriction>
|
1365
|
+
</xs:simpleContent>
|
1366
|
+
</xs:complexType>
|
1367
|
+
<xs:simpleType name="PlanningAndOperationalSupportEnum-1.0">
|
1368
|
+
<xs:annotation>
|
1369
|
+
<xs:documentation>
|
1370
|
+
The possible values for types of planning and operational support functions of a threat actor.
|
1371
|
+
</xs:documentation>
|
1372
|
+
<xs:appinfo>
|
1373
|
+
<version>1.0</version>
|
1374
|
+
<source>The initial version of this enumeration was contributed by iSight Partners, Inc. and is used with their permission.</source>
|
1375
|
+
</xs:appinfo>
|
1376
|
+
</xs:annotation>
|
1377
|
+
<xs:restriction base="xs:string">
|
1378
|
+
<xs:enumeration value="Data Exploitation"/>
|
1379
|
+
<xs:enumeration value="Data Exploitation - Analytic Support"/>
|
1380
|
+
<xs:enumeration value="Data Exploitation - Translation Support"/>
|
1381
|
+
<xs:enumeration value="Financial Resources"/>
|
1382
|
+
<xs:enumeration value="Financial Resources - Academic"/>
|
1383
|
+
<xs:enumeration value="Financial Resources - Commercial"/>
|
1384
|
+
<xs:enumeration value="Financial Resources - Government"/>
|
1385
|
+
<xs:enumeration value="Financial Resources - Hacktivist or Grassroot"/>
|
1386
|
+
<xs:enumeration value="Financial Resources - Non-Attributable Finance"/>
|
1387
|
+
<xs:enumeration value="Skill Development / Recruitment"/>
|
1388
|
+
<xs:enumeration value="Skill Development / Recruitment - Contracting and Hiring"/>
|
1389
|
+
<xs:enumeration value="Skill Development / Recruitment - Document Exploitation (DOCEX) Training"/>
|
1390
|
+
<xs:enumeration value="Skill Development / Recruitment - Internal Training"/>
|
1391
|
+
<xs:enumeration value="Skill Development / Recruitment - Military Programs"/>
|
1392
|
+
<xs:enumeration value="Skill Development / Recruitment - Security / Hacker Conferences"/>
|
1393
|
+
<xs:enumeration value="Skill Development / Recruitment - Underground Forums"/>
|
1394
|
+
<xs:enumeration value="Skill Development / Recruitment - University Programs"/>
|
1395
|
+
<xs:enumeration value="Planning "/>
|
1396
|
+
<xs:enumeration value="Planning - Operational Cover Plan"/>
|
1397
|
+
<xs:enumeration value="Planning - Open-Source Intelligence (OSINT) Gethering"/>
|
1398
|
+
<xs:enumeration value="Planning - Pre-Operational Surveillance and Reconnaissance"/>
|
1399
|
+
<xs:enumeration value="Planning - Target Selection"/>
|
1400
|
+
</xs:restriction>
|
1401
|
+
</xs:simpleType>
|
1402
|
+
<!-- Incident Effect Vocabulary -->
|
1403
|
+
<xs:complexType name="IncidentEffectVocab-1.0">
|
1404
|
+
<xs:annotation>
|
1405
|
+
<xs:documentation>The IncidentEffectVocabType is the default STIX vocabulary for expressing the possible effects of an incident.</xs:documentation>
|
1406
|
+
</xs:annotation>
|
1407
|
+
<xs:simpleContent>
|
1408
|
+
<xs:restriction base="stixCommon:ControlledVocabularyStringType">
|
1409
|
+
<xs:simpleType>
|
1410
|
+
<xs:union memberTypes="stixVocabs:IncidentEffectEnum-1.0"/>
|
1411
|
+
</xs:simpleType>
|
1412
|
+
<xs:attribute name="vocab_name" type="xs:string" use="optional" fixed="STIX Default Incident Effect Vocabulary"/>
|
1413
|
+
<xs:attribute name="vocab_reference" type="xs:anyURI" use="optional" fixed="http://stix.mitre.org/XMLSchema/default_vocabularies/1.0.0/stix_default_vocabularies.xsd#IncidentEffectVocab-1.0"/>
|
1414
|
+
</xs:restriction>
|
1415
|
+
</xs:simpleContent>
|
1416
|
+
</xs:complexType>
|
1417
|
+
<xs:simpleType name="IncidentEffectEnum-1.0">
|
1418
|
+
<xs:annotation>
|
1419
|
+
<xs:documentation>
|
1420
|
+
The possible values for types of possible effects of an incident.
|
1421
|
+
</xs:documentation>
|
1422
|
+
<xs:appinfo>
|
1423
|
+
<version>1.0</version>
|
1424
|
+
<source>The initial version of this enumeration was contributed by iSight Partners, Inc. and is used with their permission.</source>
|
1425
|
+
</xs:appinfo>
|
1426
|
+
</xs:annotation>
|
1427
|
+
<xs:restriction base="xs:string">
|
1428
|
+
<xs:enumeration value="Brand or Image Degradation"/>
|
1429
|
+
<xs:enumeration value="Loss of Competitive Advantage"/>
|
1430
|
+
<xs:enumeration value="Loss of Competitive Advantage - Economic"/>
|
1431
|
+
<xs:enumeration value="Loss of Competitive Advantage - Military"/>
|
1432
|
+
<xs:enumeration value="Loss of Competitive Advantage - Political"/>
|
1433
|
+
<xs:enumeration value="Data Breach or Compromise"/>
|
1434
|
+
<xs:enumeration value="Degradation of Service"/>
|
1435
|
+
<xs:enumeration value="Destruction"/>
|
1436
|
+
<xs:enumeration value="Disruption of Service / Operations"/>
|
1437
|
+
<xs:enumeration value="Financial Loss"/>
|
1438
|
+
<xs:enumeration value="Loss of Confidential / Proprietary Information or Intellectual Property"/>
|
1439
|
+
<xs:enumeration value="Regulatory, Compliance or Legal Impact"/>
|
1440
|
+
<xs:enumeration value="Unintended Access"/>
|
1441
|
+
<xs:enumeration value="User Data Loss"/>
|
1442
|
+
</xs:restriction>
|
1443
|
+
</xs:simpleType>
|
1444
|
+
<!-- Attacker Tool Type Vocabulary -->
|
1445
|
+
<xs:complexType name="AttackerToolTypeVocab-1.0">
|
1446
|
+
<xs:annotation>
|
1447
|
+
<xs:documentation>
|
1448
|
+
The AttackerToolTypeVocab-1.0 is the default STIX vocabulary for expressing types of attacker tools.
|
1449
|
+
|
1450
|
+
Note that this vocabulary is under development. Feedback is appreciated and should be sent to the STIX discussion list.
|
1451
|
+
</xs:documentation>
|
1452
|
+
</xs:annotation>
|
1453
|
+
<xs:simpleContent>
|
1454
|
+
<xs:restriction base="stixCommon:ControlledVocabularyStringType">
|
1455
|
+
<xs:simpleType>
|
1456
|
+
<xs:union memberTypes="stixVocabs:AttackerToolTypeEnum-1.0"/>
|
1457
|
+
</xs:simpleType>
|
1458
|
+
<xs:attribute name="vocab_name" type="xs:string" use="optional" fixed="STIX Default Attacker Tool Type Vocabulary"/>
|
1459
|
+
<xs:attribute name="vocab_reference" type="xs:anyURI" use="optional" fixed="http://stix.mitre.org/XMLSchema/default_vocabularies/1.0.0/stix_default_vocabularies.xsd#AttackerToolTypeVocab-1.0"/>
|
1460
|
+
</xs:restriction>
|
1461
|
+
</xs:simpleContent>
|
1462
|
+
</xs:complexType>
|
1463
|
+
<xs:simpleType name="AttackerToolTypeEnum-1.0">
|
1464
|
+
<xs:annotation>
|
1465
|
+
<xs:documentation>
|
1466
|
+
The possible values for types of attacker tools.
|
1467
|
+
</xs:documentation>
|
1468
|
+
<xs:appinfo>
|
1469
|
+
<version>1.0</version>
|
1470
|
+
<source>The initial version of this enumeration was contributed by iSight Partners, Inc. and is used with their permission.</source>
|
1471
|
+
</xs:appinfo>
|
1472
|
+
</xs:annotation>
|
1473
|
+
<xs:restriction base="xs:string">
|
1474
|
+
<xs:enumeration value="Malware"/>
|
1475
|
+
<xs:enumeration value="Penetration Testing"/>
|
1476
|
+
<xs:enumeration value="Port Scanner"/>
|
1477
|
+
<xs:enumeration value="Traffic Scanner"/>
|
1478
|
+
<xs:enumeration value="Vulnerability Scanner"/>
|
1479
|
+
<xs:enumeration value="Application Scanner"/>
|
1480
|
+
<xs:enumeration value="Password Cracking"/>
|
1481
|
+
</xs:restriction>
|
1482
|
+
</xs:simpleType>
|
1483
|
+
<!-- Incident Category Vocabulary -->
|
1484
|
+
<xs:complexType name="IncidentCategoryVocab-1.0">
|
1485
|
+
<xs:annotation>
|
1486
|
+
<xs:documentation>The IncidentCategoryVocabType is the default STIX vocabulary for expressing the possible categories of an incident.</xs:documentation>
|
1487
|
+
</xs:annotation>
|
1488
|
+
<xs:simpleContent>
|
1489
|
+
<xs:restriction base="stixCommon:ControlledVocabularyStringType">
|
1490
|
+
<xs:simpleType>
|
1491
|
+
<xs:union memberTypes="stixVocabs:IncidentCategoryEnum-1.0"/>
|
1492
|
+
</xs:simpleType>
|
1493
|
+
<xs:attribute name="vocab_name" type="xs:string" use="optional" fixed="STIX Default Incident Category Vocabulary"/>
|
1494
|
+
<xs:attribute name="vocab_reference" type="xs:anyURI" use="optional" fixed="http://stix.mitre.org/XMLSchema/default_vocabularies/1.0.0/stix_default_vocabularies.xsd#IncidentCategoryVocab-1.0"/>
|
1495
|
+
</xs:restriction>
|
1496
|
+
</xs:simpleContent>
|
1497
|
+
</xs:complexType>
|
1498
|
+
<xs:simpleType name="IncidentCategoryEnum-1.0">
|
1499
|
+
<xs:annotation>
|
1500
|
+
<xs:documentation>
|
1501
|
+
The possible values for types of possible categories of an incident.
|
1502
|
+
</xs:documentation>
|
1503
|
+
<xs:appinfo>
|
1504
|
+
<version>1.0</version>
|
1505
|
+
<source>This vocabulary is taken from the US-CERT Federal Incident Reporting Guidelines Incident Categories.</source>
|
1506
|
+
</xs:appinfo>
|
1507
|
+
</xs:annotation>
|
1508
|
+
<xs:restriction base="xs:string">
|
1509
|
+
<xs:enumeration value="Exercise/Network Defense Testing">
|
1510
|
+
<xs:annotation>
|
1511
|
+
<xs:documentation>This category is used during state, federal, national, international exercises and approved activity testing of internal/external network defenses or responses.</xs:documentation>
|
1512
|
+
</xs:annotation>
|
1513
|
+
</xs:enumeration>
|
1514
|
+
<xs:enumeration value="Unauthorized Access">
|
1515
|
+
<xs:annotation>
|
1516
|
+
<xs:documentation>In this category an individual gains logical or physical access without permission to a federal agency network, system, application, data, or other resource.</xs:documentation>
|
1517
|
+
</xs:annotation>
|
1518
|
+
</xs:enumeration>
|
1519
|
+
<xs:enumeration value="Denial of Service">
|
1520
|
+
<xs:annotation>
|
1521
|
+
<xs:documentation>An attack that successfully prevents or impairs the normal authorized functionality of networks, systems or applications by exhausting resources. This activity includes being the victim or participating in the DoS.</xs:documentation>
|
1522
|
+
</xs:annotation>
|
1523
|
+
</xs:enumeration>
|
1524
|
+
<xs:enumeration value="Malicious Code">
|
1525
|
+
<xs:annotation>
|
1526
|
+
<xs:documentation>Installation of malicious software (e.g., virus, worm, Trojan horse, or other code-based malicious entity) that infects an operating system or application. Agencies are NOT required to report malicious logic that has been successfully quarantined by antivirus (AV) software.</xs:documentation>
|
1527
|
+
</xs:annotation>
|
1528
|
+
</xs:enumeration>
|
1529
|
+
<xs:enumeration value="Improper Usage">
|
1530
|
+
<xs:annotation>
|
1531
|
+
<xs:documentation>A person violates acceptable computing use policies.</xs:documentation>
|
1532
|
+
</xs:annotation>
|
1533
|
+
</xs:enumeration>
|
1534
|
+
<xs:enumeration value="Scans/Probes/Attempted Access">
|
1535
|
+
<xs:annotation>
|
1536
|
+
<xs:documentation>This category includes any activity that seeks to access or identify a federal agency computer, open ports, protocols, service, or any combination for later exploit. This activity does not directly result in a compromise or denial of service.</xs:documentation>
|
1537
|
+
</xs:annotation>
|
1538
|
+
</xs:enumeration>
|
1539
|
+
<xs:enumeration value="Investigation">
|
1540
|
+
<xs:annotation>
|
1541
|
+
<xs:documentation>Unconfirmed incidents that are potentially malicious or anomalous activity deemed by the reporting entity to warrant further review.</xs:documentation>
|
1542
|
+
</xs:annotation>
|
1543
|
+
</xs:enumeration>
|
1544
|
+
</xs:restriction>
|
1545
|
+
</xs:simpleType>
|
1546
|
+
<!-- Loss Property Vocabulary -->
|
1547
|
+
<xs:complexType name="LossPropertyVocab-1.0">
|
1548
|
+
<xs:annotation>
|
1549
|
+
<xs:documentation>The LossPropertyVocabType is the default STIX vocabulary for expressing the possible properties of a loss.</xs:documentation>
|
1550
|
+
</xs:annotation>
|
1551
|
+
<xs:simpleContent>
|
1552
|
+
<xs:restriction base="stixCommon:ControlledVocabularyStringType">
|
1553
|
+
<xs:simpleType>
|
1554
|
+
<xs:union memberTypes="stixVocabs:LossPropertyEnum-1.0"/>
|
1555
|
+
</xs:simpleType>
|
1556
|
+
<xs:attribute name="vocab_name" type="xs:string" use="optional" fixed="STIX Default Loss Property Vocabulary"/>
|
1557
|
+
<xs:attribute name="vocab_reference" type="xs:anyURI" use="optional" fixed="http://stix.mitre.org/XMLSchema/default_vocabularies/1.0.0/stix_default_vocabularies.xsd#LossPropertyVocab-1.0"/>
|
1558
|
+
</xs:restriction>
|
1559
|
+
</xs:simpleContent>
|
1560
|
+
</xs:complexType>
|
1561
|
+
<xs:simpleType name="LossPropertyEnum-1.0">
|
1562
|
+
<xs:annotation>
|
1563
|
+
<xs:documentation>
|
1564
|
+
The possible values for properties of a loss.
|
1565
|
+
</xs:documentation>
|
1566
|
+
<xs:appinfo>
|
1567
|
+
<version>1.0</version>
|
1568
|
+
</xs:appinfo>
|
1569
|
+
</xs:annotation>
|
1570
|
+
<xs:restriction base="xs:string">
|
1571
|
+
<xs:enumeration value="Confidentiality"/>
|
1572
|
+
<xs:enumeration value="Integrity"/>
|
1573
|
+
<xs:enumeration value="Availability"/>
|
1574
|
+
<xs:enumeration value="Accountability"/>
|
1575
|
+
<xs:enumeration value="Non-Repudiation"/>
|
1576
|
+
</xs:restriction>
|
1577
|
+
</xs:simpleType>
|
1578
|
+
</xs:schema>
|