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,84 @@
|
|
1
|
+
<?xml version="1.0" encoding="utf-8"?>
|
2
|
+
<xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:oval="http://oval.mitre.org/XMLSchema/oval-common-5" xmlns:oval-var="http://oval.mitre.org/XMLSchema/oval-variables-5" xmlns:ds="http://www.w3.org/2000/09/xmldsig#" xmlns:sch="http://purl.oclc.org/dsdl/schematron" targetNamespace="http://oval.mitre.org/XMLSchema/oval-variables-5" elementFormDefault="qualified" version="5.10.1">
|
3
|
+
<xsd:import namespace="http://oval.mitre.org/XMLSchema/oval-common-5" schemaLocation="oval-common-schema.xsd"/>
|
4
|
+
<xsd:import namespace="http://www.w3.org/2000/09/xmldsig#" schemaLocation="xmldsig-core-schema.xsd"/>
|
5
|
+
<xsd:annotation>
|
6
|
+
<xsd:documentation/>
|
7
|
+
<xsd:documentation>The following is a description of the elements, types, and attributes that compose the core schema for encoding Open Vulnerability and Assessment Language (OVAL) Variables. This schema is provided to give structure to any external variables and their values that an OVAL Definition is expecting.</xsd:documentation>
|
8
|
+
<xsd:documentation>The OVAL Schema is maintained by The MITRE Corporation and developed by the public OVAL Community. For more information, including how to get involved in the project and how to submit change requests, please visit the OVAL website at http://oval.mitre.org.</xsd:documentation>
|
9
|
+
<xsd:appinfo>
|
10
|
+
<schema>Core Variable</schema>
|
11
|
+
<version>5.10.1</version>
|
12
|
+
<date>1/27/2012 1:22:32 PM</date>
|
13
|
+
<terms_of_use>Copyright (c) 2002-2012, The MITRE Corporation. All rights reserved. The contents of this file are subject to the terms of the OVAL License located at http://oval.mitre.org/oval/about/termsofuse.html. See the OVAL License for the specific language governing permissions and limitations for use of this schema. When distributing copies of the OVAL Schema, this license header must be included.</terms_of_use>
|
14
|
+
<sch:ns prefix="oval-var" uri="http://oval.mitre.org/XMLSchema/oval-variables-5"/>
|
15
|
+
</xsd:appinfo>
|
16
|
+
</xsd:annotation>
|
17
|
+
<!-- =============================================================================== -->
|
18
|
+
<!-- =============================================================================== -->
|
19
|
+
<!-- =============================================================================== -->
|
20
|
+
<xsd:element name="oval_variables">
|
21
|
+
<xsd:annotation>
|
22
|
+
<xsd:documentation>The oval_variables element is the root of an OVAL Variable Document. Its purpose is to bind together the different variables contained in the document. The generator section must be present and provides information about when the variable file was compiled and under what version. The optional Signature element allows an XML Signature as defined by the W3C to be attached to the document. This allows authentication and data integrity to be provided to the user. Enveloped signatures are supported. More information about the official W3C Recommendation regarding XML digital signatures can be found at http://www.w3.org/TR/xmldsig-core/.</xsd:documentation>
|
23
|
+
</xsd:annotation>
|
24
|
+
<xsd:complexType>
|
25
|
+
<xsd:sequence>
|
26
|
+
<xsd:element name="generator" type="oval:GeneratorType" />
|
27
|
+
<xsd:element name="variables" type="oval-var:VariablesType" minOccurs="0" maxOccurs="1"/>
|
28
|
+
<xsd:element ref="ds:Signature" minOccurs="0" maxOccurs="1"/>
|
29
|
+
</xsd:sequence>
|
30
|
+
</xsd:complexType>
|
31
|
+
<xsd:key name="varKey">
|
32
|
+
<xsd:annotation>
|
33
|
+
<xsd:documentation>Enforce uniqueness amongst the variable ids found in the variable document.</xsd:documentation>
|
34
|
+
</xsd:annotation>
|
35
|
+
<xsd:selector xpath=".//oval-var:variable"/>
|
36
|
+
<xsd:field xpath="@id"/>
|
37
|
+
</xsd:key>
|
38
|
+
</xsd:element>
|
39
|
+
<!-- =============================================================================== -->
|
40
|
+
<!-- ================================= GENERATOR ================================= -->
|
41
|
+
<!-- =============================================================================== -->
|
42
|
+
<!--
|
43
|
+
The GeneratorType is defined by the oval common schema. Please refer to
|
44
|
+
that documentation for a description of the complex type.
|
45
|
+
-->
|
46
|
+
<!-- =============================================================================== -->
|
47
|
+
<!-- ================================ DEFINITIONS ================================ -->
|
48
|
+
<!-- =============================================================================== -->
|
49
|
+
<xsd:complexType name="VariablesType">
|
50
|
+
<xsd:annotation>
|
51
|
+
<xsd:documentation>The VariablesType complex type is a container for one or more variable elements. Each variable element holds the value of an external variable used in an OVAL Definition. Please refer to the description of the VariableType for more information about an individual variable.</xsd:documentation>
|
52
|
+
</xsd:annotation>
|
53
|
+
<xsd:sequence>
|
54
|
+
<xsd:element name="variable" type="oval-var:VariableType" minOccurs="1" maxOccurs="unbounded"/>
|
55
|
+
</xsd:sequence>
|
56
|
+
</xsd:complexType>
|
57
|
+
<xsd:complexType name="VariableType">
|
58
|
+
<xsd:annotation>
|
59
|
+
<xsd:documentation>Each variable element contains the associated datatype and value which will be substituted into the OVAL Definition that is referencing this specific variable.</xsd:documentation>
|
60
|
+
</xsd:annotation>
|
61
|
+
<xsd:sequence>
|
62
|
+
<xsd:element name="value" type="xsd:anySimpleType" minOccurs="1" maxOccurs="unbounded"/>
|
63
|
+
</xsd:sequence>
|
64
|
+
<xsd:attribute name="id" type="oval:VariableIDPattern" use="required"/>
|
65
|
+
<xsd:attribute name="datatype" use="required" type="oval:SimpleDatatypeEnumeration">
|
66
|
+
<xsd:annotation>
|
67
|
+
<xsd:documentation>Note that the 'record' datatype is not permitted on variables.</xsd:documentation>
|
68
|
+
</xsd:annotation>
|
69
|
+
</xsd:attribute>
|
70
|
+
<xsd:attribute name="comment" type="xsd:string" use="required"/>
|
71
|
+
</xsd:complexType>
|
72
|
+
<!-- =============================================================================== -->
|
73
|
+
<!-- ================================= SIGNATURE ================================= -->
|
74
|
+
<!-- =============================================================================== -->
|
75
|
+
<!--
|
76
|
+
The signature element is defined by the xmldsig schema. Please refer to that
|
77
|
+
documentation for a description of the valid elements and types. More
|
78
|
+
information about the official W3C Recommendation regarding XML digital
|
79
|
+
signatures can be found at http://www.w3.org/TR/xmldsig-core/.
|
80
|
+
-->
|
81
|
+
<!-- =============================================================================== -->
|
82
|
+
<!-- =============================================================================== -->
|
83
|
+
<!-- =============================================================================== -->
|
84
|
+
</xsd:schema>
|
@@ -0,0 +1,309 @@
|
|
1
|
+
<?xml version="1.0" encoding="utf-8"?>
|
2
|
+
|
3
|
+
<!-- Schema for XML Signatures
|
4
|
+
http://www.w3.org/2000/09/xmldsig#
|
5
|
+
$Revision: 1777 $ on $Date: 2005-11-03 12:33:41 -0400 (Thu, 03 Nov 2005) $ by $Author: abuttner $
|
6
|
+
|
7
|
+
Copyright 2001 The Internet Society and W3C (Massachusetts Institute
|
8
|
+
of Technology, Institut National de Recherche en Informatique et en
|
9
|
+
Automatique, Keio University). All Rights Reserved.
|
10
|
+
http://www.w3.org/Consortium/Legal/
|
11
|
+
|
12
|
+
This document is governed by the W3C Software License [1] as described
|
13
|
+
in the FAQ [2].
|
14
|
+
|
15
|
+
[1] http://www.w3.org/Consortium/Legal/copyright-software-19980720
|
16
|
+
[2] http://www.w3.org/Consortium/Legal/IPR-FAQ-20000620.html#DTD
|
17
|
+
-->
|
18
|
+
|
19
|
+
|
20
|
+
<schema xmlns="http://www.w3.org/2001/XMLSchema"
|
21
|
+
xmlns:ds="http://www.w3.org/2000/09/xmldsig#"
|
22
|
+
targetNamespace="http://www.w3.org/2000/09/xmldsig#"
|
23
|
+
version="0.1" elementFormDefault="qualified">
|
24
|
+
|
25
|
+
<!-- Basic Types Defined for Signatures -->
|
26
|
+
|
27
|
+
<simpleType name="CryptoBinary">
|
28
|
+
<restriction base="base64Binary">
|
29
|
+
</restriction>
|
30
|
+
</simpleType>
|
31
|
+
|
32
|
+
<!-- Start Signature -->
|
33
|
+
|
34
|
+
<element name="Signature" type="ds:SignatureType"/>
|
35
|
+
<complexType name="SignatureType">
|
36
|
+
<sequence>
|
37
|
+
<element ref="ds:SignedInfo"/>
|
38
|
+
<element ref="ds:SignatureValue"/>
|
39
|
+
<element ref="ds:KeyInfo" minOccurs="0"/>
|
40
|
+
<element ref="ds:Object" minOccurs="0" maxOccurs="unbounded"/>
|
41
|
+
</sequence>
|
42
|
+
<attribute name="Id" type="ID" use="optional"/>
|
43
|
+
</complexType>
|
44
|
+
|
45
|
+
<element name="SignatureValue" type="ds:SignatureValueType"/>
|
46
|
+
<complexType name="SignatureValueType">
|
47
|
+
<simpleContent>
|
48
|
+
<extension base="base64Binary">
|
49
|
+
<attribute name="Id" type="ID" use="optional"/>
|
50
|
+
</extension>
|
51
|
+
</simpleContent>
|
52
|
+
</complexType>
|
53
|
+
|
54
|
+
<!-- Start SignedInfo -->
|
55
|
+
|
56
|
+
<element name="SignedInfo" type="ds:SignedInfoType"/>
|
57
|
+
<complexType name="SignedInfoType">
|
58
|
+
<sequence>
|
59
|
+
<element ref="ds:CanonicalizationMethod"/>
|
60
|
+
<element ref="ds:SignatureMethod"/>
|
61
|
+
<element ref="ds:Reference" maxOccurs="unbounded"/>
|
62
|
+
</sequence>
|
63
|
+
<attribute name="Id" type="ID" use="optional"/>
|
64
|
+
</complexType>
|
65
|
+
|
66
|
+
<element name="CanonicalizationMethod" type="ds:CanonicalizationMethodType"/>
|
67
|
+
<complexType name="CanonicalizationMethodType" mixed="true">
|
68
|
+
<sequence>
|
69
|
+
<any namespace="##any" minOccurs="0" maxOccurs="unbounded"/>
|
70
|
+
<!-- (0,unbounded) elements from (1,1) namespace -->
|
71
|
+
</sequence>
|
72
|
+
<attribute name="Algorithm" type="anyURI" use="required"/>
|
73
|
+
</complexType>
|
74
|
+
|
75
|
+
<element name="SignatureMethod" type="ds:SignatureMethodType"/>
|
76
|
+
<complexType name="SignatureMethodType" mixed="true">
|
77
|
+
<sequence>
|
78
|
+
<element name="HMACOutputLength" minOccurs="0" type="ds:HMACOutputLengthType"/>
|
79
|
+
<any namespace="##other" minOccurs="0" maxOccurs="unbounded"/>
|
80
|
+
<!-- (0,unbounded) elements from (1,1) external namespace -->
|
81
|
+
</sequence>
|
82
|
+
<attribute name="Algorithm" type="anyURI" use="required"/>
|
83
|
+
</complexType>
|
84
|
+
|
85
|
+
<!-- Start Reference -->
|
86
|
+
|
87
|
+
<element name="Reference" type="ds:ReferenceType"/>
|
88
|
+
<complexType name="ReferenceType">
|
89
|
+
<sequence>
|
90
|
+
<element ref="ds:Transforms" minOccurs="0"/>
|
91
|
+
<element ref="ds:DigestMethod"/>
|
92
|
+
<element ref="ds:DigestValue"/>
|
93
|
+
</sequence>
|
94
|
+
<attribute name="Id" type="ID" use="optional"/>
|
95
|
+
<attribute name="URI" type="anyURI" use="optional"/>
|
96
|
+
<attribute name="Type" type="anyURI" use="optional"/>
|
97
|
+
</complexType>
|
98
|
+
|
99
|
+
<element name="Transforms" type="ds:TransformsType"/>
|
100
|
+
<complexType name="TransformsType">
|
101
|
+
<sequence>
|
102
|
+
<element ref="ds:Transform" maxOccurs="unbounded"/>
|
103
|
+
</sequence>
|
104
|
+
</complexType>
|
105
|
+
|
106
|
+
<element name="Transform" type="ds:TransformType"/>
|
107
|
+
<complexType name="TransformType" mixed="true">
|
108
|
+
<choice minOccurs="0" maxOccurs="unbounded">
|
109
|
+
<any namespace="##other" processContents="lax"/>
|
110
|
+
<!-- (1,1) elements from (0,unbounded) namespaces -->
|
111
|
+
<element name="XPath" type="string"/>
|
112
|
+
</choice>
|
113
|
+
<attribute name="Algorithm" type="anyURI" use="required"/>
|
114
|
+
</complexType>
|
115
|
+
|
116
|
+
<!-- End Reference -->
|
117
|
+
|
118
|
+
<element name="DigestMethod" type="ds:DigestMethodType"/>
|
119
|
+
<complexType name="DigestMethodType" mixed="true">
|
120
|
+
<sequence>
|
121
|
+
<any namespace="##other" processContents="lax" minOccurs="0" maxOccurs="unbounded"/>
|
122
|
+
</sequence>
|
123
|
+
<attribute name="Algorithm" type="anyURI" use="required"/>
|
124
|
+
</complexType>
|
125
|
+
|
126
|
+
<element name="DigestValue" type="ds:DigestValueType"/>
|
127
|
+
<simpleType name="DigestValueType">
|
128
|
+
<restriction base="base64Binary"/>
|
129
|
+
</simpleType>
|
130
|
+
|
131
|
+
<!-- End SignedInfo -->
|
132
|
+
|
133
|
+
<!-- Start KeyInfo -->
|
134
|
+
|
135
|
+
<element name="KeyInfo" type="ds:KeyInfoType"/>
|
136
|
+
<complexType name="KeyInfoType" mixed="true">
|
137
|
+
<choice maxOccurs="unbounded">
|
138
|
+
<element ref="ds:KeyName"/>
|
139
|
+
<element ref="ds:KeyValue"/>
|
140
|
+
<element ref="ds:RetrievalMethod"/>
|
141
|
+
<element ref="ds:X509Data"/>
|
142
|
+
<element ref="ds:PGPData"/>
|
143
|
+
<element ref="ds:SPKIData"/>
|
144
|
+
<element ref="ds:MgmtData"/>
|
145
|
+
<any processContents="lax" namespace="##other"/>
|
146
|
+
<!-- (1,1) elements from (0,unbounded) namespaces -->
|
147
|
+
</choice>
|
148
|
+
<attribute name="Id" type="ID" use="optional"/>
|
149
|
+
</complexType>
|
150
|
+
|
151
|
+
<element name="KeyName" type="string"/>
|
152
|
+
<element name="MgmtData" type="string"/>
|
153
|
+
|
154
|
+
<element name="KeyValue" type="ds:KeyValueType"/>
|
155
|
+
<complexType name="KeyValueType" mixed="true">
|
156
|
+
<choice>
|
157
|
+
<element ref="ds:DSAKeyValue"/>
|
158
|
+
<element ref="ds:RSAKeyValue"/>
|
159
|
+
<any namespace="##other" processContents="lax"/>
|
160
|
+
</choice>
|
161
|
+
</complexType>
|
162
|
+
|
163
|
+
<element name="RetrievalMethod" type="ds:RetrievalMethodType"/>
|
164
|
+
<complexType name="RetrievalMethodType">
|
165
|
+
<sequence>
|
166
|
+
<element ref="ds:Transforms" minOccurs="0"/>
|
167
|
+
</sequence>
|
168
|
+
<attribute name="URI" type="anyURI"/>
|
169
|
+
<attribute name="Type" type="anyURI" use="optional"/>
|
170
|
+
</complexType>
|
171
|
+
|
172
|
+
<!-- Start X509Data -->
|
173
|
+
|
174
|
+
<element name="X509Data" type="ds:X509DataType"/>
|
175
|
+
<complexType name="X509DataType">
|
176
|
+
<sequence maxOccurs="unbounded">
|
177
|
+
<choice>
|
178
|
+
<element name="X509IssuerSerial" type="ds:X509IssuerSerialType"/>
|
179
|
+
<element name="X509SKI" type="base64Binary"/>
|
180
|
+
<element name="X509SubjectName" type="string"/>
|
181
|
+
<element name="X509Certificate" type="base64Binary"/>
|
182
|
+
<element name="X509CRL" type="base64Binary"/>
|
183
|
+
<any namespace="##other" processContents="lax"/>
|
184
|
+
</choice>
|
185
|
+
</sequence>
|
186
|
+
</complexType>
|
187
|
+
|
188
|
+
<complexType name="X509IssuerSerialType">
|
189
|
+
<sequence>
|
190
|
+
<element name="X509IssuerName" type="string"/>
|
191
|
+
<element name="X509SerialNumber" type="integer"/>
|
192
|
+
</sequence>
|
193
|
+
</complexType>
|
194
|
+
|
195
|
+
<!-- End X509Data -->
|
196
|
+
|
197
|
+
<!-- Begin PGPData -->
|
198
|
+
|
199
|
+
<element name="PGPData" type="ds:PGPDataType"/>
|
200
|
+
<complexType name="PGPDataType">
|
201
|
+
<choice>
|
202
|
+
<sequence>
|
203
|
+
<element name="PGPKeyID" type="base64Binary"/>
|
204
|
+
<element name="PGPKeyPacket" type="base64Binary" minOccurs="0"/>
|
205
|
+
<any namespace="##other" processContents="lax" minOccurs="0"
|
206
|
+
maxOccurs="unbounded"/>
|
207
|
+
</sequence>
|
208
|
+
<sequence>
|
209
|
+
<element name="PGPKeyPacket" type="base64Binary"/>
|
210
|
+
<any namespace="##other" processContents="lax" minOccurs="0"
|
211
|
+
maxOccurs="unbounded"/>
|
212
|
+
</sequence>
|
213
|
+
</choice>
|
214
|
+
</complexType>
|
215
|
+
|
216
|
+
<!-- End PGPData -->
|
217
|
+
|
218
|
+
<!-- Begin SPKIData -->
|
219
|
+
|
220
|
+
<element name="SPKIData" type="ds:SPKIDataType"/>
|
221
|
+
<complexType name="SPKIDataType">
|
222
|
+
<sequence maxOccurs="unbounded">
|
223
|
+
<element name="SPKISexp" type="base64Binary"/>
|
224
|
+
<any namespace="##other" processContents="lax" minOccurs="0"/>
|
225
|
+
</sequence>
|
226
|
+
</complexType>
|
227
|
+
|
228
|
+
<!-- End SPKIData -->
|
229
|
+
|
230
|
+
<!-- End KeyInfo -->
|
231
|
+
|
232
|
+
<!-- Start Object (Manifest, SignatureProperty) -->
|
233
|
+
|
234
|
+
<element name="Object" type="ds:ObjectType"/>
|
235
|
+
<complexType name="ObjectType" mixed="true">
|
236
|
+
<sequence minOccurs="0" maxOccurs="unbounded">
|
237
|
+
<any namespace="##any" processContents="lax"/>
|
238
|
+
</sequence>
|
239
|
+
<attribute name="Id" type="ID" use="optional"/>
|
240
|
+
<attribute name="MimeType" type="string" use="optional"/> <!-- add a grep facet -->
|
241
|
+
<attribute name="Encoding" type="anyURI" use="optional"/>
|
242
|
+
</complexType>
|
243
|
+
|
244
|
+
<element name="Manifest" type="ds:ManifestType"/>
|
245
|
+
<complexType name="ManifestType">
|
246
|
+
<sequence>
|
247
|
+
<element ref="ds:Reference" maxOccurs="unbounded"/>
|
248
|
+
</sequence>
|
249
|
+
<attribute name="Id" type="ID" use="optional"/>
|
250
|
+
</complexType>
|
251
|
+
|
252
|
+
<element name="SignatureProperties" type="ds:SignaturePropertiesType"/>
|
253
|
+
<complexType name="SignaturePropertiesType">
|
254
|
+
<sequence>
|
255
|
+
<element ref="ds:SignatureProperty" maxOccurs="unbounded"/>
|
256
|
+
</sequence>
|
257
|
+
<attribute name="Id" type="ID" use="optional"/>
|
258
|
+
</complexType>
|
259
|
+
|
260
|
+
<element name="SignatureProperty" type="ds:SignaturePropertyType"/>
|
261
|
+
<complexType name="SignaturePropertyType" mixed="true">
|
262
|
+
<choice maxOccurs="unbounded">
|
263
|
+
<any namespace="##other" processContents="lax"/>
|
264
|
+
<!-- (1,1) elements from (1,unbounded) namespaces -->
|
265
|
+
</choice>
|
266
|
+
<attribute name="Target" type="anyURI" use="required"/>
|
267
|
+
<attribute name="Id" type="ID" use="optional"/>
|
268
|
+
</complexType>
|
269
|
+
|
270
|
+
<!-- End Object (Manifest, SignatureProperty) -->
|
271
|
+
|
272
|
+
<!-- Start Algorithm Parameters -->
|
273
|
+
|
274
|
+
<simpleType name="HMACOutputLengthType">
|
275
|
+
<restriction base="integer"/>
|
276
|
+
</simpleType>
|
277
|
+
|
278
|
+
<!-- Start KeyValue Element-types -->
|
279
|
+
|
280
|
+
<element name="DSAKeyValue" type="ds:DSAKeyValueType"/>
|
281
|
+
<complexType name="DSAKeyValueType">
|
282
|
+
<sequence>
|
283
|
+
<sequence minOccurs="0">
|
284
|
+
<element name="P" type="ds:CryptoBinary"/>
|
285
|
+
<element name="Q" type="ds:CryptoBinary"/>
|
286
|
+
</sequence>
|
287
|
+
<element name="G" type="ds:CryptoBinary" minOccurs="0"/>
|
288
|
+
<element name="Y" type="ds:CryptoBinary"/>
|
289
|
+
<element name="J" type="ds:CryptoBinary" minOccurs="0"/>
|
290
|
+
<sequence minOccurs="0">
|
291
|
+
<element name="Seed" type="ds:CryptoBinary"/>
|
292
|
+
<element name="PgenCounter" type="ds:CryptoBinary"/>
|
293
|
+
</sequence>
|
294
|
+
</sequence>
|
295
|
+
</complexType>
|
296
|
+
|
297
|
+
<element name="RSAKeyValue" type="ds:RSAKeyValueType"/>
|
298
|
+
<complexType name="RSAKeyValueType">
|
299
|
+
<sequence>
|
300
|
+
<element name="Modulus" type="ds:CryptoBinary"/>
|
301
|
+
<element name="Exponent" type="ds:CryptoBinary"/>
|
302
|
+
</sequence>
|
303
|
+
</complexType>
|
304
|
+
|
305
|
+
<!-- End KeyValue Element-types -->
|
306
|
+
|
307
|
+
<!-- End Signature -->
|
308
|
+
|
309
|
+
</schema>
|
@@ -0,0 +1,759 @@
|
|
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:cyboxCommon="http://cybox.mitre.org/common-2" xmlns:stixCommon="http://stix.mitre.org/common-1" xmlns:marking="http://data-marking.mitre.org/Marking-1" xmlns:incident="http://stix.mitre.org/Incident-1" xmlns:stix="http://stix.mitre.org/stix-1" xmlns:campaign="http://stix.mitre.org/Campaign-1" xmlns:coa="http://stix.mitre.org/CourseOfAction-1" xmlns:et="http://stix.mitre.org/ExploitTarget-1" xmlns:indicator="http://stix.mitre.org/Indicator-2" xmlns:ta="http://stix.mitre.org/ThreatActor-1" xmlns:ttp="http://stix.mitre.org/TTP-1" targetNamespace="http://stix.mitre.org/Incident-1" elementFormDefault="qualified" attributeFormDefault="unqualified" version="1.1" 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 Incident</schema>
|
7
|
+
<version>1.1</version>
|
8
|
+
<date>02/20/2014 9:00:00 AM</date>
|
9
|
+
<short_description>Structured Threat Information eXpression (STIX) - Incident - Schematic implementation for the Incident construct within the STIX structured cyber threat expression language architecture.</short_description>
|
10
|
+
<terms_of_use>Copyright (c) 2012-2014, The MITRE Corporation. All rights reserved. The contents of this file are subject to the terms of the 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://cybox.mitre.org/cybox-2" schemaLocation="cybox/cybox_core.xsd"/>
|
14
|
+
<xs:import namespace="http://cybox.mitre.org/common-2" schemaLocation="cybox/cybox_common.xsd"/>
|
15
|
+
<xs:import namespace="http://stix.mitre.org/common-1" schemaLocation="stix_common.xsd"/>
|
16
|
+
<xs:import namespace="http://data-marking.mitre.org/Marking-1" schemaLocation="data_marking.xsd"/>
|
17
|
+
<xs:element name="Incident" type="incident:IncidentType">
|
18
|
+
<xs:annotation>
|
19
|
+
<xs:documentation>This field characterizes a single cyber threat Incident.</xs:documentation>
|
20
|
+
</xs:annotation>
|
21
|
+
<xs:unique name="unique-incident-id">
|
22
|
+
<xs:selector xpath=".//stixCommon:*|.//stix:*|.//cybox:*|.//cyboxCommon:*|.//campaign:*|.//coa:*|.//et:*|.//incident:*|.//indicator:*|.//ta:*|.//ttp:*|.//marking:*"/>
|
23
|
+
<xs:field xpath="@id"/>
|
24
|
+
</xs:unique>
|
25
|
+
</xs:element>
|
26
|
+
<xs:complexType name="IncidentType">
|
27
|
+
<xs:annotation>
|
28
|
+
<xs:documentation>The IncidentType characterizes a single cyber threat Incident.</xs:documentation>
|
29
|
+
</xs:annotation>
|
30
|
+
<xs:complexContent>
|
31
|
+
<xs:extension base="stixCommon:IncidentBaseType">
|
32
|
+
<xs:sequence>
|
33
|
+
<xs:element name="Title" type="xs:string" minOccurs="0">
|
34
|
+
<xs:annotation>
|
35
|
+
<xs:documentation>The Title field provides a simple title for this Incident.</xs:documentation>
|
36
|
+
</xs:annotation>
|
37
|
+
</xs:element>
|
38
|
+
<xs:element name="External_ID" type="incident:ExternalIDType" minOccurs="0" maxOccurs="unbounded">
|
39
|
+
<xs:annotation>
|
40
|
+
<xs:documentation>The External_ID field provides a reference to an ID of an incident in a remote system.</xs:documentation>
|
41
|
+
</xs:annotation>
|
42
|
+
</xs:element>
|
43
|
+
<xs:element name="Time" type="incident:TimeType" minOccurs="0">
|
44
|
+
<xs:annotation>
|
45
|
+
<xs:documentation>The Time field specifies relevant time values associated with this Incident.</xs:documentation>
|
46
|
+
</xs:annotation>
|
47
|
+
</xs:element>
|
48
|
+
<xs:element name="Description" type="stixCommon:StructuredTextType" minOccurs="0">
|
49
|
+
<xs:annotation>
|
50
|
+
<xs:documentation>The Description field is optional and provides an unstructured, text description of this Incident.</xs:documentation>
|
51
|
+
</xs:annotation>
|
52
|
+
</xs:element>
|
53
|
+
<xs:element name="Short_Description" type="stixCommon:StructuredTextType" minOccurs="0">
|
54
|
+
<xs:annotation>
|
55
|
+
<xs:documentation>The Short_Description field is optional and provides a short, unstructured, text description of this Incident.</xs:documentation>
|
56
|
+
</xs:annotation>
|
57
|
+
</xs:element>
|
58
|
+
<xs:element name="Categories" type="incident:CategoriesType" minOccurs="0">
|
59
|
+
<xs:annotation>
|
60
|
+
<xs:documentation>The Categories field provides a set of categories for this incident.</xs:documentation>
|
61
|
+
</xs:annotation>
|
62
|
+
</xs:element>
|
63
|
+
<xs:element name="Reporter" type="stixCommon:InformationSourceType" minOccurs="0">
|
64
|
+
<xs:annotation>
|
65
|
+
<xs:documentation>The Reporter field details information about the reporting source of this Incident.</xs:documentation>
|
66
|
+
</xs:annotation>
|
67
|
+
</xs:element>
|
68
|
+
<xs:element name="Responder" type="stixCommon:InformationSourceType" minOccurs="0" maxOccurs="unbounded">
|
69
|
+
<xs:annotation>
|
70
|
+
<xs:documentation>The Responder field is optional and details information about the assigned responder for this Incident.</xs:documentation>
|
71
|
+
</xs:annotation>
|
72
|
+
</xs:element>
|
73
|
+
<xs:element name="Coordinator" type="stixCommon:InformationSourceType" minOccurs="0" maxOccurs="unbounded">
|
74
|
+
<xs:annotation>
|
75
|
+
<xs:documentation>The Coordinator field is optional and details information about the assigned coordinator for this Incident.</xs:documentation>
|
76
|
+
</xs:annotation>
|
77
|
+
</xs:element>
|
78
|
+
<xs:element name="Victim" type="stixCommon:IdentityType" minOccurs="0" maxOccurs="unbounded">
|
79
|
+
<xs:annotation>
|
80
|
+
<xs:documentation>The Victim field is optional and details information about a victim of this Incident.</xs:documentation>
|
81
|
+
<xs:documentation>This field is implemented through the xsi:type extension mechanism. The default type is CIQIdentity3.0InstanceType in the http://stix.mitre.org/extensions/Identity#CIQIdentity3.0-1 namespace. This type is defined in the extensions/identity/ciq_identity.xsd file or at the URL http://stix.mitre.org/XMLSchema/extensions/identity/ciq_identity/1.1/ciq_identity.xsd.</xs:documentation>
|
82
|
+
<xs:documentation>Those who wish to express a simple name may also do so by not specifying an xsi:type and using the Name field.</xs:documentation>
|
83
|
+
</xs:annotation>
|
84
|
+
</xs:element>
|
85
|
+
<xs:element name="Affected_Assets" type="incident:AffectedAssetsType" minOccurs="0">
|
86
|
+
<xs:annotation>
|
87
|
+
<xs:documentation>The Affected_Assets field is optional and characterizes the particular assets affected during the Incident.</xs:documentation>
|
88
|
+
</xs:annotation>
|
89
|
+
</xs:element>
|
90
|
+
<xs:element name="Impact_Assessment" type="incident:ImpactAssessmentType" minOccurs="0">
|
91
|
+
<xs:annotation>
|
92
|
+
<xs:documentation>The Impact_Assessment field specifies a summary assessment of impact for this cyber threat Incident. </xs:documentation>
|
93
|
+
</xs:annotation>
|
94
|
+
</xs:element>
|
95
|
+
<xs:element name="Status" type="stixCommon:ControlledVocabularyStringType" minOccurs="0">
|
96
|
+
<xs:annotation>
|
97
|
+
<xs:documentation>Status describes the current status (sometimes called "state" or "disposition") of the incident.</xs:documentation>
|
98
|
+
<xs:documentation>This field is implemented through the xsi:type controlled vocabulary extension mechanism. The default vocabulary type is IncidentStatusVocab-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.1.0/stix_default_vocabularies.xsd.</xs:documentation>
|
99
|
+
<xs:documentation>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.</xs:documentation>
|
100
|
+
</xs:annotation>
|
101
|
+
</xs:element>
|
102
|
+
<xs:element name="Related_Indicators" type="incident:RelatedIndicatorsType" minOccurs="0">
|
103
|
+
<xs:annotation>
|
104
|
+
<xs:documentation>The Related_Indicators field identifies or characterizes one or more cyber threat Indicators related to this cyber threat Incident.</xs:documentation>
|
105
|
+
</xs:annotation>
|
106
|
+
</xs:element>
|
107
|
+
<xs:element name="Related_Observables" type="incident:RelatedObservablesType" minOccurs="0">
|
108
|
+
<xs:annotation>
|
109
|
+
<xs:documentation>The Related_Observables field identifies or characterizes one or more cyber observables related to this cyber threat incident.</xs:documentation>
|
110
|
+
</xs:annotation>
|
111
|
+
</xs:element>
|
112
|
+
<xs:element name="Leveraged_TTPs" type="incident:LeveragedTTPsType" minOccurs="0">
|
113
|
+
<xs:annotation>
|
114
|
+
<xs:documentation>The Leveraged_TTPs field specifies TTPs asserted to be related to this cyber threat Incident.</xs:documentation>
|
115
|
+
</xs:annotation>
|
116
|
+
</xs:element>
|
117
|
+
<xs:element name="Attributed_Threat_Actors" type="incident:AttributedThreatActorsType" minOccurs="0">
|
118
|
+
<xs:annotation>
|
119
|
+
<xs:documentation>The Attributed_Threat_Actors field identifies ThreatActors asserted to be attributed for this Incident.</xs:documentation>
|
120
|
+
</xs:annotation>
|
121
|
+
</xs:element>
|
122
|
+
<xs:element name="Intended_Effect" type="stixCommon:StatementType" minOccurs="0" maxOccurs="unbounded">
|
123
|
+
<xs:annotation>
|
124
|
+
<xs:documentation>The Intended_Effect field specifies the suspected intended effect of this incident.</xs:documentation>
|
125
|
+
<xs:documentation>It is implemented through the StatementType, which allows for the expression of a statement in a vocabulary (Value), a description of the statement (Description), a confidence in the statement (Confidence), and the source of the statement (Source). The default vocabulary type for the Value is IntendedEffectVocab-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.1.0/stix_default_vocabularies.xsd.</xs:documentation>
|
126
|
+
<xs:documentation>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.</xs:documentation>
|
127
|
+
</xs:annotation>
|
128
|
+
</xs:element>
|
129
|
+
<xs:element name="Security_Compromise" type="stixCommon:ControlledVocabularyStringType" minOccurs="0">
|
130
|
+
<xs:annotation>
|
131
|
+
<xs:documentation>Specifies knowledge of whether the Incident involved a compromise of security properties.</xs:documentation>
|
132
|
+
<xs:documentation>This field is implemented through the xsi:type controlled vocabulary extension mechanism. The default vocabulary type is SecurityCompromiseVocab-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.1.0/stix_default_vocabularies.xsd.</xs:documentation>
|
133
|
+
<xs:documentation>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.</xs:documentation>
|
134
|
+
</xs:annotation>
|
135
|
+
</xs:element>
|
136
|
+
<xs:element name="Discovery_Method" type="stixCommon:ControlledVocabularyStringType" minOccurs="0" maxOccurs="unbounded">
|
137
|
+
<xs:annotation>
|
138
|
+
<xs:documentation>The Discovery_Method field identifies how the incident was discovered.</xs:documentation>
|
139
|
+
<xs:documentation>This field is implemented through the xsi:type controlled vocabulary extension mechanism. The default vocabulary type is DiscoveryMethodVocab-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.1.0/stix_default_vocabularies.xsd.</xs:documentation>
|
140
|
+
<xs:documentation>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.</xs:documentation>
|
141
|
+
</xs:annotation>
|
142
|
+
</xs:element>
|
143
|
+
<xs:element name="Related_Incidents" type="incident:RelatedIncidentsType" minOccurs="0">
|
144
|
+
<xs:annotation>
|
145
|
+
<xs:documentation>The Related_Incidents field identifies or characterizes one or more other Incidents related to this cyber threat Incident. </xs:documentation>
|
146
|
+
</xs:annotation>
|
147
|
+
</xs:element>
|
148
|
+
<xs:element name="COA_Requested" type="incident:COARequestedType" minOccurs="0" maxOccurs="unbounded">
|
149
|
+
<xs:annotation>
|
150
|
+
<xs:documentation>The COA_Requested field specifies and characterizes a requested CourseOfAction for this Incident as specified by the Producer for the Consumer of the Incident Report</xs:documentation>
|
151
|
+
</xs:annotation>
|
152
|
+
</xs:element>
|
153
|
+
<xs:element name="COA_Taken" type="incident:COATakenType" minOccurs="0" maxOccurs="unbounded">
|
154
|
+
<xs:annotation>
|
155
|
+
<xs:documentation>The COA_Taken field specifies and characterizes a CourseOfAction taken for this Incident.</xs:documentation>
|
156
|
+
</xs:annotation>
|
157
|
+
</xs:element>
|
158
|
+
<xs:element name="Confidence" type="stixCommon:ConfidenceType" minOccurs="0">
|
159
|
+
<xs:annotation>
|
160
|
+
<xs:documentation>The Confidence field characterizes the level of confidence held in the characterization of this Incident.</xs:documentation>
|
161
|
+
</xs:annotation>
|
162
|
+
</xs:element>
|
163
|
+
<xs:element name="Contact" type="stixCommon:InformationSourceType" minOccurs="0" maxOccurs="unbounded">
|
164
|
+
<xs:annotation>
|
165
|
+
<xs:documentation>The Contact field identifies and characterizes organizations or personnel involved in this Incident.</xs:documentation>
|
166
|
+
</xs:annotation>
|
167
|
+
</xs:element>
|
168
|
+
<xs:element name="History" type="incident:HistoryType" minOccurs="0">
|
169
|
+
<xs:annotation>
|
170
|
+
<xs:documentation>The History field provides a log of events or actions taken during the handling of the Incident. </xs:documentation>
|
171
|
+
</xs:annotation>
|
172
|
+
</xs:element>
|
173
|
+
<xs:element name="Information_Source" type="stixCommon:InformationSourceType" minOccurs="0">
|
174
|
+
<xs:annotation>
|
175
|
+
<xs:documentation>The Information_Source field details the source of this entry.</xs:documentation>
|
176
|
+
</xs:annotation>
|
177
|
+
</xs:element>
|
178
|
+
<xs:element name="Handling" type="marking:MarkingType" minOccurs="0">
|
179
|
+
<xs:annotation>
|
180
|
+
<xs:documentation>The Handling field specifies the appropriate data handling markings for the elements of this Incident. The valid marking scope is the nearest IncidentBaseType ancestor of this Handling element and all its descendants.</xs:documentation>
|
181
|
+
</xs:annotation>
|
182
|
+
</xs:element>
|
183
|
+
<xs:element name="Related_Packages" type="stixCommon:RelatedPackageRefsType" minOccurs="0">
|
184
|
+
<xs:annotation>
|
185
|
+
<xs:documentation>The Related_Packages field identifies or characterizes relationships to set of related Packages.</xs:documentation>
|
186
|
+
</xs:annotation>
|
187
|
+
</xs:element>
|
188
|
+
</xs:sequence>
|
189
|
+
<xs:attribute name="version" type="incident:IncidentVersionType">
|
190
|
+
<xs:annotation>
|
191
|
+
<xs:documentation>Specifies the relevant STIX-Incident schema version for this content.</xs:documentation>
|
192
|
+
</xs:annotation>
|
193
|
+
</xs:attribute>
|
194
|
+
<xs:attribute name="URL">
|
195
|
+
<xs:annotation>
|
196
|
+
<xs:documentation>Specifies a URL referencing the location for the Incident specification.</xs:documentation>
|
197
|
+
</xs:annotation>
|
198
|
+
</xs:attribute>
|
199
|
+
</xs:extension>
|
200
|
+
</xs:complexContent>
|
201
|
+
</xs:complexType>
|
202
|
+
<!---->
|
203
|
+
<xs:simpleType name="IncidentVersionType">
|
204
|
+
<xs:annotation>
|
205
|
+
<xs:documentation>An enumeration of all versions of the Incident type valid in the current release of STIX.</xs:documentation>
|
206
|
+
</xs:annotation>
|
207
|
+
<xs:restriction base="xs:string">
|
208
|
+
<xs:enumeration value="1.0"/>
|
209
|
+
<xs:enumeration value="1.0.1"/>
|
210
|
+
<xs:enumeration value="1.1"/>
|
211
|
+
</xs:restriction>
|
212
|
+
</xs:simpleType>
|
213
|
+
<xs:complexType name="PropertyAffectedType">
|
214
|
+
<xs:sequence>
|
215
|
+
<xs:element name="Property" type="stixCommon:ControlledVocabularyStringType" minOccurs="0">
|
216
|
+
<xs:annotation>
|
217
|
+
<xs:documentation>The security property that was affected by the incident.</xs:documentation>
|
218
|
+
<xs:documentation>This field is implemented through the xsi:type controlled vocabulary extension mechanism. The default vocabulary type is LossPropertyVocab-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.1.0/stix_default_vocabularies.xsd.</xs:documentation>
|
219
|
+
<xs:documentation>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.</xs:documentation>
|
220
|
+
</xs:annotation>
|
221
|
+
</xs:element>
|
222
|
+
<xs:element name="Description_Of_Effect" type="stixCommon:StructuredTextType" minOccurs="0">
|
223
|
+
<xs:annotation>
|
224
|
+
<xs:documentation>The Description_Of_Effect field is optional and provides a brief prose description of how the security property was affected.</xs:documentation>
|
225
|
+
</xs:annotation>
|
226
|
+
</xs:element>
|
227
|
+
<xs:element name="Type_Of_Availability_Loss" type="stixCommon:ControlledVocabularyStringType" minOccurs="0">
|
228
|
+
<xs:annotation>
|
229
|
+
<xs:documentation>The Type_Of_Availability_Loss field is optional and characterizes in what manner the availability of this asset was affected (e.g. Destruction, Deletion, Interruption).</xs:documentation>
|
230
|
+
<xs:documentation>This field is implemented through the xsi:type controlled vocabulary extension mechanism. The default vocabulary type is AvailabilityLossTypeVocab-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.1.0/stix_default_vocabularies.xsd.</xs:documentation>
|
231
|
+
<xs:documentation>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.</xs:documentation>
|
232
|
+
</xs:annotation>
|
233
|
+
</xs:element>
|
234
|
+
<xs:element name="Duration_Of_Availability_Loss" type="stixCommon:ControlledVocabularyStringType" minOccurs="0">
|
235
|
+
<xs:annotation>
|
236
|
+
<xs:documentation>The Duration_Of_Availability_Loss field is optional and specifies the approximate length of time availability was affected (e.g. Permanent, Seconds, Minutes, Hours, Days).</xs:documentation>
|
237
|
+
<xs:documentation>This field is implemented through the xsi:type controlled vocabulary extension mechanism. The default vocabulary type is LossDurationVocab-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.1.0/stix_default_vocabularies.xsd.</xs:documentation>
|
238
|
+
<xs:documentation>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.</xs:documentation>
|
239
|
+
</xs:annotation>
|
240
|
+
</xs:element>
|
241
|
+
<xs:element name="Non_Public_Data_Compromised" type="incident:NonPublicDataCompromisedType" minOccurs="0">
|
242
|
+
<xs:annotation>
|
243
|
+
<xs:documentation>This field specifies whether non-public data was compromised or exposed and whether that data was encrypted or not.</xs:documentation>
|
244
|
+
<xs:documentation>This field is implemented through the xsi:type controlled vocabulary extension mechanism. The default vocabulary type is SecurityCompromiseVocab-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.1.0/stix_default_vocabularies.xsd.</xs:documentation>
|
245
|
+
<xs:documentation>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.</xs:documentation>
|
246
|
+
</xs:annotation>
|
247
|
+
</xs:element>
|
248
|
+
</xs:sequence>
|
249
|
+
</xs:complexType>
|
250
|
+
<xs:complexType name="AffectedAssetType">
|
251
|
+
<xs:sequence>
|
252
|
+
<xs:element name="Type" type="incident:AssetTypeType" minOccurs="0">
|
253
|
+
<xs:annotation>
|
254
|
+
<xs:documentation>The Type field is optional and specifies the type of the asset impacted by the incident (a security attribute was negatively affected).</xs:documentation>
|
255
|
+
</xs:annotation>
|
256
|
+
</xs:element>
|
257
|
+
<xs:element name="Description" type="stixCommon:StructuredTextType" minOccurs="0">
|
258
|
+
<xs:annotation>
|
259
|
+
<xs:documentation>The Description field is optional and provides an unstructured, text description of the asset.</xs:documentation>
|
260
|
+
</xs:annotation>
|
261
|
+
</xs:element>
|
262
|
+
<xs:element name="Business_Function_Or_Role" type="stixCommon:StructuredTextType" minOccurs="0">
|
263
|
+
<xs:annotation>
|
264
|
+
<xs:documentation>The Business_Function_Or_Role field is optional and provides a brief description of the asset's role, mission, and importance within the organization.</xs:documentation>
|
265
|
+
</xs:annotation>
|
266
|
+
</xs:element>
|
267
|
+
<xs:element name="Ownership_Class" type="stixCommon:ControlledVocabularyStringType" minOccurs="0">
|
268
|
+
<xs:annotation>
|
269
|
+
<xs:documentation>The Ownership_Class field is optional and gives a high-level characterization of who owns (or controls) this asset (e.g. Internally-owned, Employee-owned, Partner-owned, Customer-owned).</xs:documentation>
|
270
|
+
<xs:documentation>This field is implemented through the xsi:type controlled vocabulary extension mechanism. The default vocabulary type is OwnershipClassVocab-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.1.0/stix_default_vocabularies.xsd.</xs:documentation>
|
271
|
+
<xs:documentation>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.</xs:documentation>
|
272
|
+
</xs:annotation>
|
273
|
+
</xs:element>
|
274
|
+
<xs:element name="Management_Class" type="stixCommon:ControlledVocabularyStringType" minOccurs="0">
|
275
|
+
<xs:annotation>
|
276
|
+
<xs:documentation>The Management_Class field is optional and gives a high-level characterization of who is responsible for the day-to-day management and administration of this asset (e.g. Managed Internally, Managed by External Party, Co-managed).</xs:documentation>
|
277
|
+
<xs:documentation>This field is implemented through the xsi:type controlled vocabulary extension mechanism. The default vocabulary type is ManagementClassVocab-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.1.0/stix_default_vocabularies.xsd.</xs:documentation>
|
278
|
+
<xs:documentation>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.</xs:documentation>
|
279
|
+
</xs:annotation>
|
280
|
+
</xs:element>
|
281
|
+
<xs:element name="Location_Class" type="stixCommon:ControlledVocabularyStringType" minOccurs="0">
|
282
|
+
<xs:annotation>
|
283
|
+
<xs:documentation>The Location_Class field is optional and gives a high-level characterization of where this asset is physically located (e.g. Internal location, External location, Co-located, Mobile).</xs:documentation>
|
284
|
+
<xs:documentation>This field is implemented through the xsi:type controlled vocabulary extension mechanism. The default vocabulary type is LocationClassVocab-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.1.0/stix_default_vocabularies.xsd.</xs:documentation>
|
285
|
+
<xs:documentation>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.</xs:documentation>
|
286
|
+
</xs:annotation>
|
287
|
+
</xs:element>
|
288
|
+
<xs:element name="Location" type="stixCommon:AddressAbstractType" minOccurs="0">
|
289
|
+
<xs:annotation>
|
290
|
+
<xs:documentation>The Location field specifies the physical location of the affected asset.</xs:documentation>
|
291
|
+
<xs:documentation>This field is implemented through the xsi:type extension mechanism. The default type is CIQAddressInstanceType in the http://stix.mitre.org/extensions/Identity#CIQAddress-1 namespace. This type is defined in the extensions/address/ciq_3.0_address.xsd file or at the URL http://stix.mitre.org/XMLSchema/extensions/address/ciq/1.1/ciq_3.0_address.xsd.</xs:documentation>
|
292
|
+
<xs:documentation>Those who wish to express a simple name may also do so by not specifying an xsi:type and using the Name field.</xs:documentation>
|
293
|
+
</xs:annotation>
|
294
|
+
</xs:element>
|
295
|
+
<xs:element name="Nature_Of_Security_Effect" type="incident:NatureOfSecurityEffectType" minOccurs="0">
|
296
|
+
<xs:annotation>
|
297
|
+
<xs:documentation>The Nature_Of_Security_Effect field is optional and characterizes how the security properties of the Asset were affected.</xs:documentation>
|
298
|
+
</xs:annotation>
|
299
|
+
</xs:element>
|
300
|
+
<xs:element name="Structured_Description" type="cybox:ObservablesType" minOccurs="0">
|
301
|
+
<xs:annotation>
|
302
|
+
<xs:documentation>The Structured_Description field is optional and provides a structured description of the asset.</xs:documentation>
|
303
|
+
</xs:annotation>
|
304
|
+
</xs:element>
|
305
|
+
</xs:sequence>
|
306
|
+
</xs:complexType>
|
307
|
+
<!---->
|
308
|
+
<xs:complexType name="ImpactAssessmentType">
|
309
|
+
<xs:annotation>
|
310
|
+
<xs:documentation>The ImpactAssessmentType specifies a summary assessment of impact for this cyber threat Incident. </xs:documentation>
|
311
|
+
</xs:annotation>
|
312
|
+
<xs:sequence>
|
313
|
+
<xs:element name="Direct_Impact_Summary" type="incident:DirectImpactSummaryType" minOccurs="0">
|
314
|
+
<xs:annotation>
|
315
|
+
<xs:documentation>The Direct_Impact_Summary field is optional and characterizes (at a high level) losses directly resulting from the ThreatActor's actions against organizational assets within the Incident.</xs:documentation>
|
316
|
+
</xs:annotation>
|
317
|
+
</xs:element>
|
318
|
+
<xs:element name="Indirect_Impact_Summary" type="incident:IndirectImpactSummaryType" minOccurs="0">
|
319
|
+
<xs:annotation>
|
320
|
+
<xs:documentation>The Indirect_Impact_Summary field is optional and characterizes (at a high level) losses from other stakeholder reactions to the Incident.</xs:documentation>
|
321
|
+
</xs:annotation>
|
322
|
+
</xs:element>
|
323
|
+
<xs:element name="Total_Loss_Estimation" type="incident:TotalLossEstimationType" minOccurs="0">
|
324
|
+
<xs:annotation>
|
325
|
+
<xs:documentation>The Total_Loss_Estimation field is optional and specifies the total estimated financial loss for the Incident.</xs:documentation>
|
326
|
+
</xs:annotation>
|
327
|
+
</xs:element>
|
328
|
+
<xs:element name="Impact_Qualification" type="stixCommon:ControlledVocabularyStringType" minOccurs="0">
|
329
|
+
<xs:annotation>
|
330
|
+
<xs:documentation>The Impact_Qualification field is optional and summarizes the subjective level of impact of the Incident.</xs:documentation>
|
331
|
+
<xs:documentation>This field is implemented through the xsi:type controlled vocabulary extension mechanism. The default vocabulary type is ImpactQualificationVocab-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.1.0/stix_default_vocabularies.xsd.</xs:documentation>
|
332
|
+
<xs:documentation>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.</xs:documentation>
|
333
|
+
</xs:annotation>
|
334
|
+
</xs:element>
|
335
|
+
<xs:element name="Effects" type="incident:EffectsType" minOccurs="0">
|
336
|
+
<xs:annotation>
|
337
|
+
<xs:documentation>The Effects field captures a list of effects of this incident from a controlled vocabulary.</xs:documentation>
|
338
|
+
</xs:annotation>
|
339
|
+
</xs:element>
|
340
|
+
<xs:element name="External_Impact_Assessment_Model" type="incident:ExternalImpactAssessmentModelType" minOccurs="0">
|
341
|
+
<xs:annotation>
|
342
|
+
<xs:documentation>The External_Impact_Assessment_Model field is optional and characterizes impact assessment details utilizing impact assessment characterization models defined external to STIX. It is defined utilizing an abstract type enabling the definition through extension of incident impact assessment models external to STIX.</xs:documentation>
|
343
|
+
</xs:annotation>
|
344
|
+
</xs:element>
|
345
|
+
</xs:sequence>
|
346
|
+
</xs:complexType>
|
347
|
+
<xs:complexType name="ExternalImpactAssessmentModelType" abstract="true">
|
348
|
+
<xs:annotation>
|
349
|
+
<xs:documentation>The ExternalImpactAssessmentModelType is an abstract type enabling the definition through extension of incident impact assessment models external to STIX.</xs:documentation>
|
350
|
+
</xs:annotation>
|
351
|
+
<xs:attribute name="model_name" type="xs:string">
|
352
|
+
<xs:annotation>
|
353
|
+
<xs:documentation>Specifies the name of the externally defined impact assessment model.</xs:documentation>
|
354
|
+
</xs:annotation>
|
355
|
+
</xs:attribute>
|
356
|
+
<xs:attribute name="model_reference" type="xs:anyURI">
|
357
|
+
<xs:annotation>
|
358
|
+
<xs:documentation>Specifies a URL reference for the externally defined impact assessment model.</xs:documentation>
|
359
|
+
</xs:annotation>
|
360
|
+
</xs:attribute>
|
361
|
+
</xs:complexType>
|
362
|
+
<!---->
|
363
|
+
<xs:complexType name="COATakenType">
|
364
|
+
<xs:sequence>
|
365
|
+
<xs:element name="Time" type="incident:COATimeType" minOccurs="0">
|
366
|
+
<xs:annotation>
|
367
|
+
<xs:documentation>The Time field specifies the relative time criteria for this taken CourseOfAction.</xs:documentation>
|
368
|
+
</xs:annotation>
|
369
|
+
</xs:element>
|
370
|
+
<xs:element name="Contributors" type="incident:ContributorsType" minOccurs="0">
|
371
|
+
<xs:annotation>
|
372
|
+
<xs:documentation>The Contributors field specifies contributing actors for the CourseOfAction taken.</xs:documentation>
|
373
|
+
</xs:annotation>
|
374
|
+
</xs:element>
|
375
|
+
<xs:element name="Course_Of_Action" type="stixCommon:CourseOfActionBaseType" minOccurs="0">
|
376
|
+
<xs:annotation>
|
377
|
+
<xs:documentation>The Course_Of_Action field specifies the actual CourseOfAction taken.</xs:documentation>
|
378
|
+
<xs:documentation>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.1/course_of_action.xsd.</xs:documentation>
|
379
|
+
</xs:annotation>
|
380
|
+
</xs:element>
|
381
|
+
</xs:sequence>
|
382
|
+
</xs:complexType>
|
383
|
+
<xs:complexType name="JournalEntryType">
|
384
|
+
<xs:annotation>
|
385
|
+
<xs:documentation>The JournalEntryType is optional and provides journal notes for information discovered during the handling of the Incident.</xs:documentation>
|
386
|
+
</xs:annotation>
|
387
|
+
<xs:simpleContent>
|
388
|
+
<xs:extension base="xs:string">
|
389
|
+
<xs:attribute name="author" type="xs:string">
|
390
|
+
<xs:annotation>
|
391
|
+
<xs:documentation>Specifies the author of the JournalEntry note.</xs:documentation>
|
392
|
+
</xs:annotation>
|
393
|
+
</xs:attribute>
|
394
|
+
<xs:attribute name="time" type="xs:dateTime">
|
395
|
+
<xs:annotation>
|
396
|
+
<xs:documentation>Specifies the date and time that the JournalEntry note was written.</xs:documentation>
|
397
|
+
<xs:documentation>In order to avoid ambiguity, it is strongly suggest that all timestamps include a specification of the timezone if it is known.</xs:documentation>
|
398
|
+
</xs:annotation>
|
399
|
+
</xs:attribute>
|
400
|
+
<xs:attribute name="time_precision" type="stixCommon:DateTimePrecisionEnum" default="second">
|
401
|
+
<xs:annotation>
|
402
|
+
<xs:documentation>Represents the precision of the associated time value. If omitted, the default is "second", meaning the timestamp is precise to the full field value. Digits in the timestamp that are required by the xs:dateTime datatype but are beyond the specified precision should be zeroed out.</xs:documentation>
|
403
|
+
</xs:annotation>
|
404
|
+
</xs:attribute>
|
405
|
+
</xs:extension>
|
406
|
+
</xs:simpleContent>
|
407
|
+
</xs:complexType>
|
408
|
+
<xs:complexType name="ExternalIDType">
|
409
|
+
<xs:annotation>
|
410
|
+
<xs:documentation>The ExternalIDType provides a reference to an ID of an incident in a remote system.</xs:documentation>
|
411
|
+
</xs:annotation>
|
412
|
+
<xs:simpleContent>
|
413
|
+
<xs:extension base="xs:string">
|
414
|
+
<xs:attribute name="source" type="xs:string">
|
415
|
+
<xs:annotation>
|
416
|
+
<xs:documentation>Specifies the source of the External ID.</xs:documentation>
|
417
|
+
</xs:annotation>
|
418
|
+
</xs:attribute>
|
419
|
+
</xs:extension>
|
420
|
+
</xs:simpleContent>
|
421
|
+
</xs:complexType>
|
422
|
+
<xs:complexType name="COARequestedType">
|
423
|
+
<xs:complexContent>
|
424
|
+
<xs:extension base="incident:COATakenType">
|
425
|
+
<xs:attribute name="priority">
|
426
|
+
<xs:annotation>
|
427
|
+
<xs:documentation>Specifies a suggested level of priority to be applied to this requested COA.</xs:documentation>
|
428
|
+
</xs:annotation>
|
429
|
+
</xs:attribute>
|
430
|
+
</xs:extension>
|
431
|
+
</xs:complexContent>
|
432
|
+
</xs:complexType>
|
433
|
+
<xs:complexType name="ContributorsType">
|
434
|
+
<xs:sequence>
|
435
|
+
<xs:element name="Contributor" type="cyboxCommon:ContributorType"/>
|
436
|
+
</xs:sequence>
|
437
|
+
</xs:complexType>
|
438
|
+
<xs:complexType name="COATimeType">
|
439
|
+
<xs:sequence>
|
440
|
+
<xs:element name="Start" type="stixCommon:DateTimeWithPrecisionType" minOccurs="0">
|
441
|
+
<xs:annotation>
|
442
|
+
<xs:documentation>The Start field specifies the time at which the CourseOfAction was begun.</xs:documentation>
|
443
|
+
<xs:documentation>In order to avoid ambiguity, it is strongly suggest that all timestamps include a specification of the timezone if it is known.</xs:documentation>
|
444
|
+
</xs:annotation>
|
445
|
+
</xs:element>
|
446
|
+
<xs:element name="End" type="stixCommon:DateTimeWithPrecisionType" minOccurs="0">
|
447
|
+
<xs:annotation>
|
448
|
+
<xs:documentation>The End field specifies the time at which the CourseOfAction was completed.</xs:documentation>
|
449
|
+
<xs:documentation>In order to avoid ambiguity, it is strongly suggest that all timestamps include a specification of the timezone if it is known.</xs:documentation>
|
450
|
+
</xs:annotation>
|
451
|
+
</xs:element>
|
452
|
+
</xs:sequence>
|
453
|
+
</xs:complexType>
|
454
|
+
<xs:complexType name="LossEstimationType">
|
455
|
+
<xs:attribute name="amount">
|
456
|
+
<xs:annotation>
|
457
|
+
<xs:documentation>Specifies the estimated financial loss for the Incident.</xs:documentation>
|
458
|
+
</xs:annotation>
|
459
|
+
</xs:attribute>
|
460
|
+
<xs:attribute name="iso_currency_code">
|
461
|
+
<xs:annotation>
|
462
|
+
<xs:documentation>Specifies the ISO 4217 currency code if other than USD </xs:documentation>
|
463
|
+
</xs:annotation>
|
464
|
+
</xs:attribute>
|
465
|
+
</xs:complexType>
|
466
|
+
<xs:complexType name="TotalLossEstimationType">
|
467
|
+
<xs:sequence>
|
468
|
+
<xs:element name="Initial_Reported_Total_Loss_Estimation" type="incident:LossEstimationType" minOccurs="0">
|
469
|
+
<xs:annotation>
|
470
|
+
<xs:documentation>The Initial_Reported_Total_Loss_Estimation field is optional and specifies the initially reported level of total estimated financial loss for the Incident.</xs:documentation>
|
471
|
+
</xs:annotation>
|
472
|
+
</xs:element>
|
473
|
+
<xs:element name="Actual_Total_Loss_Estimation" type="incident:LossEstimationType" minOccurs="0">
|
474
|
+
<xs:annotation>
|
475
|
+
<xs:documentation>The Actual_Total_Loss_Estimation field is optional and specifies the actual level of total estimated financial loss for the Incident.</xs:documentation>
|
476
|
+
</xs:annotation>
|
477
|
+
</xs:element>
|
478
|
+
</xs:sequence>
|
479
|
+
</xs:complexType>
|
480
|
+
<xs:complexType name="IndirectImpactSummaryType">
|
481
|
+
<xs:sequence>
|
482
|
+
<xs:element name="Loss_Of_Competitive_Advantage" type="stixCommon:ControlledVocabularyStringType" minOccurs="0">
|
483
|
+
<xs:annotation>
|
484
|
+
<xs:documentation>The Loss_Of_Competitive_Advantage field is optional and characterizes (at a high level) the level of impact based on loss of competitive advantage that occured in the Incident including loss/damage/exposure of IP, corporate wisdom, ability to compete, key personnel, etc.</xs:documentation>
|
485
|
+
<xs:documentation>This field is implemented through the xsi:type controlled vocabulary extension mechanism. The default vocabulary type is SecurityCompromiseVocab-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.1.0/stix_default_vocabularies.xsd.</xs:documentation>
|
486
|
+
<xs:documentation>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.</xs:documentation>
|
487
|
+
</xs:annotation>
|
488
|
+
</xs:element>
|
489
|
+
<xs:element name="Brand_And_Market_Damage" type="stixCommon:ControlledVocabularyStringType" minOccurs="0">
|
490
|
+
<xs:annotation>
|
491
|
+
<xs:documentation>The Brand_And_Market_Damage field is optional and characterizes (at a high level) the level of impact based on brand or market damage that occured in the Incident including lost customers or partners, decrease in market value or share, advertising, rebranding, etc.</xs:documentation>
|
492
|
+
<xs:documentation>This field is implemented through the xsi:type controlled vocabulary extension mechanism. The default vocabulary type is SecurityCompromiseVocab-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.1.0/stix_default_vocabularies.xsd.</xs:documentation>
|
493
|
+
<xs:documentation>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.</xs:documentation>
|
494
|
+
</xs:annotation>
|
495
|
+
</xs:element>
|
496
|
+
<xs:element name="Increased_Operating_Costs" type="stixCommon:ControlledVocabularyStringType" minOccurs="0">
|
497
|
+
<xs:annotation>
|
498
|
+
<xs:documentation>The Increased_Operating_Costs field is optional and characterizes (at a high level) the level of impact based on increased operating costs that occured in the Incident including cost of additional audits, new hires or training, mandatory action, higher insurance, etc.</xs:documentation>
|
499
|
+
<xs:documentation>This field is implemented through the xsi:type controlled vocabulary extension mechanism. The default vocabulary type is SecurityCompromiseVocab-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.1.0/stix_default_vocabularies.xsd.</xs:documentation>
|
500
|
+
<xs:documentation>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.</xs:documentation>
|
501
|
+
</xs:annotation>
|
502
|
+
</xs:element>
|
503
|
+
<xs:element name="Legal_And_Regulatory_Costs" type="stixCommon:ControlledVocabularyStringType" minOccurs="0">
|
504
|
+
<xs:annotation>
|
505
|
+
<xs:documentation>The Legal_And_Regulatory_Costs field is optional and characterizes (at a high level) the level of impact based on legal and regulatory costs that occured in the Incident including legal fees, lawsuits, customer damages, contract violations, etc.</xs:documentation>
|
506
|
+
<xs:documentation>This field is implemented through the xsi:type controlled vocabulary extension mechanism. The default vocabulary type is SecurityCompromiseVocab-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.1.0/stix_default_vocabularies.xsd.</xs:documentation>
|
507
|
+
<xs:documentation>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.</xs:documentation>
|
508
|
+
</xs:annotation>
|
509
|
+
</xs:element>
|
510
|
+
</xs:sequence>
|
511
|
+
</xs:complexType>
|
512
|
+
<xs:complexType name="DirectImpactSummaryType">
|
513
|
+
<xs:sequence>
|
514
|
+
<xs:element name="Asset_Losses" type="stixCommon:ControlledVocabularyStringType" minOccurs="0">
|
515
|
+
<xs:annotation>
|
516
|
+
<xs:documentation>The Asset_Losses field is optional and characterizes (at a high level) the level of asset-related losses that occured in the Incident, including lost or damaged assets, stolen funds, cash outlays, etc.</xs:documentation>
|
517
|
+
<xs:documentation>This field is implemented through the xsi:type controlled vocabulary extension mechanism. The default vocabulary type is ImpactRatingVocab-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.1.0/stix_default_vocabularies.xsd.</xs:documentation>
|
518
|
+
<xs:documentation>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.</xs:documentation>
|
519
|
+
</xs:annotation>
|
520
|
+
</xs:element>
|
521
|
+
<xs:element name="Business-Mission_Disruption" type="stixCommon:ControlledVocabularyStringType" minOccurs="0">
|
522
|
+
<xs:annotation>
|
523
|
+
<xs:documentation>The Business-Mission_Disruption field is optional and characterizes (at a high level) the level of business or mission disruption impact that occured in the Incident including unproductive man-hours, lost revenue from system downtime, etc.</xs:documentation>
|
524
|
+
<xs:documentation>This field is implemented through the xsi:type controlled vocabulary extension mechanism. The default vocabulary type is ImpactRatingVocab-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.1.0/stix_default_vocabularies.xsd.</xs:documentation>
|
525
|
+
<xs:documentation>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.</xs:documentation>
|
526
|
+
</xs:annotation>
|
527
|
+
</xs:element>
|
528
|
+
<xs:element name="Response_And_Recovery_Costs" type="stixCommon:ControlledVocabularyStringType" minOccurs="0">
|
529
|
+
<xs:annotation>
|
530
|
+
<xs:documentation>The Response_And_Recovery_Costs field is optional and characterizes (at a high level) the level of response and recovery related costs that occured in the Incident including cost of response, investigation, remediation, restoration, etc.</xs:documentation>
|
531
|
+
<xs:documentation>This field is implemented through the xsi:type controlled vocabulary extension mechanism. The default vocabulary type is ImpactRatingVocab-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.1.0/stix_default_vocabularies.xsd.</xs:documentation>
|
532
|
+
<xs:documentation>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.</xs:documentation>
|
533
|
+
</xs:annotation>
|
534
|
+
</xs:element>
|
535
|
+
</xs:sequence>
|
536
|
+
</xs:complexType>
|
537
|
+
<xs:complexType name="NatureOfSecurityEffectType">
|
538
|
+
<xs:sequence>
|
539
|
+
<xs:element name="Property_Affected" type="incident:PropertyAffectedType" minOccurs="0" maxOccurs="unbounded">
|
540
|
+
<xs:annotation>
|
541
|
+
<xs:documentation>The Property_Affected field is optional and characterizes how a particular security property of the Asset was affected.</xs:documentation>
|
542
|
+
</xs:annotation>
|
543
|
+
</xs:element>
|
544
|
+
</xs:sequence>
|
545
|
+
</xs:complexType>
|
546
|
+
<xs:complexType name="AssetTypeType">
|
547
|
+
<xs:simpleContent>
|
548
|
+
<xs:extension base="stixCommon:ControlledVocabularyStringType">
|
549
|
+
<xs:attribute name="count_affected">
|
550
|
+
<xs:annotation>
|
551
|
+
<xs:documentation>This field specifies the number of assets of this type affected.</xs:documentation>
|
552
|
+
<xs:documentation>This field is implemented through the xsi:type controlled vocabulary extension mechanism. The default vocabulary type is AssetTypeVocab-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.1.0/stix_default_vocabularies.xsd.</xs:documentation>
|
553
|
+
<xs:documentation>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.</xs:documentation>
|
554
|
+
</xs:annotation>
|
555
|
+
</xs:attribute>
|
556
|
+
</xs:extension>
|
557
|
+
</xs:simpleContent>
|
558
|
+
</xs:complexType>
|
559
|
+
<xs:complexType name="HistoryItemType">
|
560
|
+
<xs:choice>
|
561
|
+
<xs:element name="Action_Entry" type="incident:COATakenType" minOccurs="0">
|
562
|
+
<xs:annotation>
|
563
|
+
<xs:documentation>The Action_Entry field is optional and provides a record of actions taken during the handling of the Incident.</xs:documentation>
|
564
|
+
</xs:annotation>
|
565
|
+
</xs:element>
|
566
|
+
<xs:element name="Journal_Entry" type="incident:JournalEntryType" minOccurs="0">
|
567
|
+
<xs:annotation>
|
568
|
+
<xs:documentation>The Journal_Entry field is optional and provides journal notes for information discovered during the handling of the Incident.</xs:documentation>
|
569
|
+
</xs:annotation>
|
570
|
+
</xs:element>
|
571
|
+
</xs:choice>
|
572
|
+
</xs:complexType>
|
573
|
+
<xs:complexType name="HistoryType">
|
574
|
+
<xs:sequence>
|
575
|
+
<xs:element name="History_Item" type="incident:HistoryItemType" minOccurs="0" maxOccurs="unbounded">
|
576
|
+
<xs:annotation>
|
577
|
+
<xs:documentation>The History_Item field provides a log entry of an event or action taken during the handling of the Incident. </xs:documentation>
|
578
|
+
</xs:annotation>
|
579
|
+
</xs:element>
|
580
|
+
</xs:sequence>
|
581
|
+
</xs:complexType>
|
582
|
+
<xs:complexType name="RelatedIncidentsType">
|
583
|
+
<xs:complexContent>
|
584
|
+
<xs:extension base="stixCommon:GenericRelationshipListType">
|
585
|
+
<xs:sequence>
|
586
|
+
<xs:element name="Related_Incident" type="stixCommon:RelatedIncidentType" maxOccurs="unbounded">
|
587
|
+
<xs:annotation>
|
588
|
+
<xs:documentation>The Related_Incident field identifies or characterizes another Incident related to this Incident. </xs:documentation>
|
589
|
+
</xs:annotation>
|
590
|
+
</xs:element>
|
591
|
+
</xs:sequence>
|
592
|
+
</xs:extension>
|
593
|
+
</xs:complexContent>
|
594
|
+
</xs:complexType>
|
595
|
+
<xs:complexType name="LeveragedTTPsType">
|
596
|
+
<xs:complexContent>
|
597
|
+
<xs:extension base="stixCommon:GenericRelationshipListType">
|
598
|
+
<xs:sequence>
|
599
|
+
<xs:element name="Leveraged_TTP" type="stixCommon:RelatedTTPType" maxOccurs="unbounded">
|
600
|
+
<xs:annotation>
|
601
|
+
<xs:documentation>The Leveraged_TTP field specifies a single TTP asserted to be related to this cyber threat Incident.</xs:documentation>
|
602
|
+
</xs:annotation>
|
603
|
+
</xs:element>
|
604
|
+
</xs:sequence>
|
605
|
+
</xs:extension>
|
606
|
+
</xs:complexContent>
|
607
|
+
</xs:complexType>
|
608
|
+
<xs:complexType name="RelatedObservablesType">
|
609
|
+
<xs:complexContent>
|
610
|
+
<xs:extension base="stixCommon:GenericRelationshipListType">
|
611
|
+
<xs:sequence>
|
612
|
+
<xs:element name="Related_Observable" type="stixCommon:RelatedObservableType" maxOccurs="unbounded">
|
613
|
+
<xs:annotation>
|
614
|
+
<xs:documentation>The Related_Observable field identifies or characterizes a cyber threat observable related to this Incident. </xs:documentation>
|
615
|
+
</xs:annotation>
|
616
|
+
</xs:element>
|
617
|
+
</xs:sequence>
|
618
|
+
</xs:extension>
|
619
|
+
</xs:complexContent>
|
620
|
+
</xs:complexType>
|
621
|
+
<xs:complexType name="RelatedIndicatorsType">
|
622
|
+
<xs:complexContent>
|
623
|
+
<xs:extension base="stixCommon:GenericRelationshipListType">
|
624
|
+
<xs:sequence>
|
625
|
+
<xs:element name="Related_Indicator" type="stixCommon:RelatedIndicatorType" maxOccurs="unbounded">
|
626
|
+
<xs:annotation>
|
627
|
+
<xs:documentation>The Related_Indicator field identifies or characterizes a cyber threat Indicator related to this Incident. </xs:documentation>
|
628
|
+
</xs:annotation>
|
629
|
+
</xs:element>
|
630
|
+
</xs:sequence>
|
631
|
+
</xs:extension>
|
632
|
+
</xs:complexContent>
|
633
|
+
</xs:complexType>
|
634
|
+
<xs:complexType name="AttributedThreatActorsType">
|
635
|
+
<xs:annotation>
|
636
|
+
<xs:documentation>The AttributedThreatActorsType specifies a Threat Actor asserted to be attributed for this Incident.</xs:documentation>
|
637
|
+
</xs:annotation>
|
638
|
+
<xs:complexContent>
|
639
|
+
<xs:extension base="stixCommon:GenericRelationshipListType">
|
640
|
+
<xs:sequence>
|
641
|
+
<xs:element name="Threat_Actor" type="stixCommon:RelatedThreatActorType" maxOccurs="unbounded">
|
642
|
+
<xs:annotation>
|
643
|
+
<xs:documentation>The Threat_Actor field specifies details of a Threat Actor asserted to be attributed for this Incident.</xs:documentation>
|
644
|
+
</xs:annotation>
|
645
|
+
</xs:element>
|
646
|
+
</xs:sequence>
|
647
|
+
</xs:extension>
|
648
|
+
</xs:complexContent>
|
649
|
+
</xs:complexType>
|
650
|
+
<xs:complexType name="AffectedAssetsType">
|
651
|
+
<xs:sequence>
|
652
|
+
<xs:element name="Affected_Asset" type="incident:AffectedAssetType" minOccurs="0" maxOccurs="unbounded">
|
653
|
+
<xs:annotation>
|
654
|
+
<xs:documentation>The Affected_Asset field is optional and characterizes a particular asset affected during the Incident.</xs:documentation>
|
655
|
+
</xs:annotation>
|
656
|
+
</xs:element>
|
657
|
+
</xs:sequence>
|
658
|
+
</xs:complexType>
|
659
|
+
<xs:complexType name="TimeType">
|
660
|
+
<xs:sequence>
|
661
|
+
<xs:element name="First_Malicious_Action" type="stixCommon:DateTimeWithPrecisionType" minOccurs="0">
|
662
|
+
<xs:annotation>
|
663
|
+
<xs:documentation>The First_Malicious_Action field specifies the time that the first malicious action related to this Incident occured.</xs:documentation>
|
664
|
+
<xs:documentation>In order to avoid ambiguity, it is strongly suggest that all timestamps include a specification of the timezone if it is known.</xs:documentation>
|
665
|
+
</xs:annotation>
|
666
|
+
</xs:element>
|
667
|
+
<xs:element name="Initial_Compromise" type="stixCommon:DateTimeWithPrecisionType" minOccurs="0">
|
668
|
+
<xs:annotation>
|
669
|
+
<xs:documentation>The Initial_Compromise field specifies the time that the initial compromise occured for this Incident.</xs:documentation>
|
670
|
+
<xs:documentation>In order to avoid ambiguity, it is strongly suggest that all timestamps include a specification of the timezone if it is known.</xs:documentation>
|
671
|
+
</xs:annotation>
|
672
|
+
</xs:element>
|
673
|
+
<xs:element name="First_Data_Exfiltration" type="stixCommon:DateTimeWithPrecisionType" minOccurs="0">
|
674
|
+
<xs:annotation>
|
675
|
+
<xs:documentation>The First_Data_Exfiltration field specifies the first time at which non-public data was taken from the victim environment</xs:documentation>
|
676
|
+
<xs:documentation>In order to avoid ambiguity, it is strongly suggest that all timestamps include a specification of the timezone if it is known.</xs:documentation>
|
677
|
+
</xs:annotation>
|
678
|
+
</xs:element>
|
679
|
+
<xs:element name="Incident_Discovery" type="stixCommon:DateTimeWithPrecisionType" minOccurs="0">
|
680
|
+
<xs:annotation>
|
681
|
+
<xs:documentation>The Incident_Discovery field specifies the first time at which the organization learned the incident had occurred.</xs:documentation>
|
682
|
+
<xs:documentation>In order to avoid ambiguity, it is strongly suggest that all timestamps include a specification of the timezone if it is known.</xs:documentation>
|
683
|
+
</xs:annotation>
|
684
|
+
</xs:element>
|
685
|
+
<xs:element name="Incident_Opened" type="stixCommon:DateTimeWithPrecisionType" minOccurs="0">
|
686
|
+
<xs:annotation>
|
687
|
+
<xs:documentation>The Incident_Opened field specifies the time at which the Incident was officially opened.</xs:documentation>
|
688
|
+
<xs:documentation>In order to avoid ambiguity, it is strongly suggest that all timestamps include a specification of the timezone if it is known.</xs:documentation>
|
689
|
+
</xs:annotation>
|
690
|
+
</xs:element>
|
691
|
+
<xs:element name="Containment_Achieved" type="stixCommon:DateTimeWithPrecisionType" minOccurs="0">
|
692
|
+
<xs:annotation>
|
693
|
+
<xs:documentation>The Containment_Achieved field specifies the first time at which the incident is contained (e.g., the “bleeding is stopped”).</xs:documentation>
|
694
|
+
<xs:documentation>In order to avoid ambiguity, it is strongly suggest that all timestamps include a specification of the timezone if it is known.</xs:documentation>
|
695
|
+
</xs:annotation>
|
696
|
+
</xs:element>
|
697
|
+
<xs:element name="Restoration_Achieved" type="stixCommon:DateTimeWithPrecisionType" minOccurs="0">
|
698
|
+
<xs:annotation>
|
699
|
+
<xs:documentation>The Restoration_Achieved field specifies the first time at which the incident's assets are restored (e.g., fully functional)”.</xs:documentation>
|
700
|
+
<xs:documentation>In order to avoid ambiguity, it is strongly suggest that all timestamps include a specification of the timezone if it is known.</xs:documentation>
|
701
|
+
</xs:annotation>
|
702
|
+
</xs:element>
|
703
|
+
<xs:element name="Incident_Reported" type="stixCommon:DateTimeWithPrecisionType" minOccurs="0">
|
704
|
+
<xs:annotation>
|
705
|
+
<xs:documentation>The Incident_Reported field specifies the time at which the Incident was reported.</xs:documentation>
|
706
|
+
<xs:documentation>In order to avoid ambiguity, it is strongly suggest that all timestamps include a specification of the timezone if it is known.</xs:documentation>
|
707
|
+
</xs:annotation>
|
708
|
+
</xs:element>
|
709
|
+
<xs:element name="Incident_Closed" type="stixCommon:DateTimeWithPrecisionType" minOccurs="0">
|
710
|
+
<xs:annotation>
|
711
|
+
<xs:documentation>The Incident_Closed field specifies the time at which the Incident was officially closed.</xs:documentation>
|
712
|
+
<xs:documentation>In order to avoid ambiguity, it is strongly suggest that all timestamps include a specification of the timezone if it is known.</xs:documentation>
|
713
|
+
</xs:annotation>
|
714
|
+
</xs:element>
|
715
|
+
</xs:sequence>
|
716
|
+
</xs:complexType>
|
717
|
+
<xs:complexType name="CategoriesType">
|
718
|
+
<xs:annotation>
|
719
|
+
<xs:documentation>Represents a list of incident categories that an incident is tagged with.</xs:documentation>
|
720
|
+
</xs:annotation>
|
721
|
+
<xs:sequence>
|
722
|
+
<xs:element name="Category" type="stixCommon:ControlledVocabularyStringType" minOccurs="1" maxOccurs="unbounded">
|
723
|
+
<xs:annotation>
|
724
|
+
<xs:documentation>Represents a single category that this incident is tagged with.</xs:documentation>
|
725
|
+
<xs:documentation>This field is implemented through the xsi:type controlled vocabulary extension mechanism. The default vocabulary type is IncidentCategoryVocab-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.1.0/stix_default_vocabularies.xsd.</xs:documentation>
|
726
|
+
<xs:documentation>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.</xs:documentation>
|
727
|
+
</xs:annotation>
|
728
|
+
</xs:element>
|
729
|
+
</xs:sequence>
|
730
|
+
</xs:complexType>
|
731
|
+
<xs:complexType name="EffectsType">
|
732
|
+
<xs:annotation>
|
733
|
+
<xs:documentation>Represents a list of incident effects that an incident is tagged with.</xs:documentation>
|
734
|
+
</xs:annotation>
|
735
|
+
<xs:sequence>
|
736
|
+
<xs:element name="Effect" type="stixCommon:ControlledVocabularyStringType" minOccurs="1" maxOccurs="unbounded">
|
737
|
+
<xs:annotation>
|
738
|
+
<xs:documentation>Represents a single effect that this incident is tagged with.</xs:documentation>
|
739
|
+
<xs:documentation>This field is implemented through the xsi:type controlled vocabulary extension mechanism. The default vocabulary type is IncidentEffectVocab-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.1.0/stix_default_vocabularies.xsd.</xs:documentation>
|
740
|
+
<xs:documentation>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.</xs:documentation>
|
741
|
+
</xs:annotation>
|
742
|
+
</xs:element>
|
743
|
+
</xs:sequence>
|
744
|
+
</xs:complexType>
|
745
|
+
<xs:complexType name="NonPublicDataCompromisedType">
|
746
|
+
<xs:annotation>
|
747
|
+
<xs:documentation>This type represents whether non-public data was compromised or exposed and whether that data was encrypted or not.</xs:documentation>
|
748
|
+
</xs:annotation>
|
749
|
+
<xs:complexContent>
|
750
|
+
<xs:extension base="stixCommon:ControlledVocabularyStringType">
|
751
|
+
<xs:attribute name="data_encrypted" type="xs:boolean">
|
752
|
+
<xs:annotation>
|
753
|
+
<xs:documentation>Indicates whether the data that was compromised was encrypted or not.</xs:documentation>
|
754
|
+
</xs:annotation>
|
755
|
+
</xs:attribute>
|
756
|
+
</xs:extension>
|
757
|
+
</xs:complexContent>
|
758
|
+
</xs:complexType>
|
759
|
+
</xs:schema>
|