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,287 @@
|
|
1
|
+
<?xml version='1.0'?>
|
2
|
+
<?xml-stylesheet href="../2008/09/xsd.xsl" type="text/xsl"?>
|
3
|
+
<xs:schema targetNamespace="http://www.w3.org/XML/1998/namespace"
|
4
|
+
xmlns:xs="http://www.w3.org/2001/XMLSchema"
|
5
|
+
xmlns ="http://www.w3.org/1999/xhtml"
|
6
|
+
xml:lang="en">
|
7
|
+
|
8
|
+
<xs:annotation>
|
9
|
+
<xs:documentation>
|
10
|
+
<div>
|
11
|
+
<h1>About the XML namespace</h1>
|
12
|
+
|
13
|
+
<div class="bodytext">
|
14
|
+
<p>
|
15
|
+
This schema document describes the XML namespace, in a form
|
16
|
+
suitable for import by other schema documents.
|
17
|
+
</p>
|
18
|
+
<p>
|
19
|
+
See <a href="http://www.w3.org/XML/1998/namespace.html">
|
20
|
+
http://www.w3.org/XML/1998/namespace.html</a> and
|
21
|
+
<a href="http://www.w3.org/TR/REC-xml">
|
22
|
+
http://www.w3.org/TR/REC-xml</a> for information
|
23
|
+
about this namespace.
|
24
|
+
</p>
|
25
|
+
<p>
|
26
|
+
Note that local names in this namespace are intended to be
|
27
|
+
defined only by the World Wide Web Consortium or its subgroups.
|
28
|
+
The names currently defined in this namespace are listed below.
|
29
|
+
They should not be used with conflicting semantics by any Working
|
30
|
+
Group, specification, or document instance.
|
31
|
+
</p>
|
32
|
+
<p>
|
33
|
+
See further below in this document for more information about <a
|
34
|
+
href="#usage">how to refer to this schema document from your own
|
35
|
+
XSD schema documents</a> and about <a href="#nsversioning">the
|
36
|
+
namespace-versioning policy governing this schema document</a>.
|
37
|
+
</p>
|
38
|
+
</div>
|
39
|
+
</div>
|
40
|
+
</xs:documentation>
|
41
|
+
</xs:annotation>
|
42
|
+
|
43
|
+
<xs:attribute name="lang">
|
44
|
+
<xs:annotation>
|
45
|
+
<xs:documentation>
|
46
|
+
<div>
|
47
|
+
|
48
|
+
<h3>lang (as an attribute name)</h3>
|
49
|
+
<p>
|
50
|
+
denotes an attribute whose value
|
51
|
+
is a language code for the natural language of the content of
|
52
|
+
any element; its value is inherited. This name is reserved
|
53
|
+
by virtue of its definition in the XML specification.</p>
|
54
|
+
|
55
|
+
</div>
|
56
|
+
<div>
|
57
|
+
<h4>Notes</h4>
|
58
|
+
<p>
|
59
|
+
Attempting to install the relevant ISO 2- and 3-letter
|
60
|
+
codes as the enumerated possible values is probably never
|
61
|
+
going to be a realistic possibility.
|
62
|
+
</p>
|
63
|
+
<p>
|
64
|
+
See BCP 47 at <a href="http://www.rfc-editor.org/rfc/bcp/bcp47.txt">
|
65
|
+
http://www.rfc-editor.org/rfc/bcp/bcp47.txt</a>
|
66
|
+
and the IANA language subtag registry at
|
67
|
+
<a href="http://www.iana.org/assignments/language-subtag-registry">
|
68
|
+
http://www.iana.org/assignments/language-subtag-registry</a>
|
69
|
+
for further information.
|
70
|
+
</p>
|
71
|
+
<p>
|
72
|
+
The union allows for the 'un-declaration' of xml:lang with
|
73
|
+
the empty string.
|
74
|
+
</p>
|
75
|
+
</div>
|
76
|
+
</xs:documentation>
|
77
|
+
</xs:annotation>
|
78
|
+
<xs:simpleType>
|
79
|
+
<xs:union memberTypes="xs:language">
|
80
|
+
<xs:simpleType>
|
81
|
+
<xs:restriction base="xs:string">
|
82
|
+
<xs:enumeration value=""/>
|
83
|
+
</xs:restriction>
|
84
|
+
</xs:simpleType>
|
85
|
+
</xs:union>
|
86
|
+
</xs:simpleType>
|
87
|
+
</xs:attribute>
|
88
|
+
|
89
|
+
<xs:attribute name="space">
|
90
|
+
<xs:annotation>
|
91
|
+
<xs:documentation>
|
92
|
+
<div>
|
93
|
+
|
94
|
+
<h3>space (as an attribute name)</h3>
|
95
|
+
<p>
|
96
|
+
denotes an attribute whose
|
97
|
+
value is a keyword indicating what whitespace processing
|
98
|
+
discipline is intended for the content of the element; its
|
99
|
+
value is inherited. This name is reserved by virtue of its
|
100
|
+
definition in the XML specification.</p>
|
101
|
+
|
102
|
+
</div>
|
103
|
+
</xs:documentation>
|
104
|
+
</xs:annotation>
|
105
|
+
<xs:simpleType>
|
106
|
+
<xs:restriction base="xs:NCName">
|
107
|
+
<xs:enumeration value="default"/>
|
108
|
+
<xs:enumeration value="preserve"/>
|
109
|
+
</xs:restriction>
|
110
|
+
</xs:simpleType>
|
111
|
+
</xs:attribute>
|
112
|
+
|
113
|
+
<xs:attribute name="base" type="xs:anyURI"> <xs:annotation>
|
114
|
+
<xs:documentation>
|
115
|
+
<div>
|
116
|
+
|
117
|
+
<h3>base (as an attribute name)</h3>
|
118
|
+
<p>
|
119
|
+
denotes an attribute whose value
|
120
|
+
provides a URI to be used as the base for interpreting any
|
121
|
+
relative URIs in the scope of the element on which it
|
122
|
+
appears; its value is inherited. This name is reserved
|
123
|
+
by virtue of its definition in the XML Base specification.</p>
|
124
|
+
|
125
|
+
<p>
|
126
|
+
See <a
|
127
|
+
href="http://www.w3.org/TR/xmlbase/">http://www.w3.org/TR/xmlbase/</a>
|
128
|
+
for information about this attribute.
|
129
|
+
</p>
|
130
|
+
</div>
|
131
|
+
</xs:documentation>
|
132
|
+
</xs:annotation>
|
133
|
+
</xs:attribute>
|
134
|
+
|
135
|
+
<xs:attribute name="id" type="xs:ID">
|
136
|
+
<xs:annotation>
|
137
|
+
<xs:documentation>
|
138
|
+
<div>
|
139
|
+
|
140
|
+
<h3>id (as an attribute name)</h3>
|
141
|
+
<p>
|
142
|
+
denotes an attribute whose value
|
143
|
+
should be interpreted as if declared to be of type ID.
|
144
|
+
This name is reserved by virtue of its definition in the
|
145
|
+
xml:id specification.</p>
|
146
|
+
|
147
|
+
<p>
|
148
|
+
See <a
|
149
|
+
href="http://www.w3.org/TR/xml-id/">http://www.w3.org/TR/xml-id/</a>
|
150
|
+
for information about this attribute.
|
151
|
+
</p>
|
152
|
+
</div>
|
153
|
+
</xs:documentation>
|
154
|
+
</xs:annotation>
|
155
|
+
</xs:attribute>
|
156
|
+
|
157
|
+
<xs:attributeGroup name="specialAttrs">
|
158
|
+
<xs:attribute ref="xml:base"/>
|
159
|
+
<xs:attribute ref="xml:lang"/>
|
160
|
+
<xs:attribute ref="xml:space"/>
|
161
|
+
<xs:attribute ref="xml:id"/>
|
162
|
+
</xs:attributeGroup>
|
163
|
+
|
164
|
+
<xs:annotation>
|
165
|
+
<xs:documentation>
|
166
|
+
<div>
|
167
|
+
|
168
|
+
<h3>Father (in any context at all)</h3>
|
169
|
+
|
170
|
+
<div class="bodytext">
|
171
|
+
<p>
|
172
|
+
denotes Jon Bosak, the chair of
|
173
|
+
the original XML Working Group. This name is reserved by
|
174
|
+
the following decision of the W3C XML Plenary and
|
175
|
+
XML Coordination groups:
|
176
|
+
</p>
|
177
|
+
<blockquote>
|
178
|
+
<p>
|
179
|
+
In appreciation for his vision, leadership and
|
180
|
+
dedication the W3C XML Plenary on this 10th day of
|
181
|
+
February, 2000, reserves for Jon Bosak in perpetuity
|
182
|
+
the XML name "xml:Father".
|
183
|
+
</p>
|
184
|
+
</blockquote>
|
185
|
+
</div>
|
186
|
+
</div>
|
187
|
+
</xs:documentation>
|
188
|
+
</xs:annotation>
|
189
|
+
|
190
|
+
<xs:annotation>
|
191
|
+
<xs:documentation>
|
192
|
+
<div xml:id="usage" id="usage">
|
193
|
+
<h2><a name="usage">About this schema document</a></h2>
|
194
|
+
|
195
|
+
<div class="bodytext">
|
196
|
+
<p>
|
197
|
+
This schema defines attributes and an attribute group suitable
|
198
|
+
for use by schemas wishing to allow <code>xml:base</code>,
|
199
|
+
<code>xml:lang</code>, <code>xml:space</code> or
|
200
|
+
<code>xml:id</code> attributes on elements they define.
|
201
|
+
</p>
|
202
|
+
<p>
|
203
|
+
To enable this, such a schema must import this schema for
|
204
|
+
the XML namespace, e.g. as follows:
|
205
|
+
</p>
|
206
|
+
<pre>
|
207
|
+
<schema . . .>
|
208
|
+
. . .
|
209
|
+
<import namespace="http://www.w3.org/XML/1998/namespace"
|
210
|
+
schemaLocation="http://www.w3.org/2001/xml.xsd"/>
|
211
|
+
</pre>
|
212
|
+
<p>
|
213
|
+
or
|
214
|
+
</p>
|
215
|
+
<pre>
|
216
|
+
<import namespace="http://www.w3.org/XML/1998/namespace"
|
217
|
+
schemaLocation="http://www.w3.org/2009/01/xml.xsd"/>
|
218
|
+
</pre>
|
219
|
+
<p>
|
220
|
+
Subsequently, qualified reference to any of the attributes or the
|
221
|
+
group defined below will have the desired effect, e.g.
|
222
|
+
</p>
|
223
|
+
<pre>
|
224
|
+
<type . . .>
|
225
|
+
. . .
|
226
|
+
<attributeGroup ref="xml:specialAttrs"/>
|
227
|
+
</pre>
|
228
|
+
<p>
|
229
|
+
will define a type which will schema-validate an instance element
|
230
|
+
with any of those attributes.
|
231
|
+
</p>
|
232
|
+
</div>
|
233
|
+
</div>
|
234
|
+
</xs:documentation>
|
235
|
+
</xs:annotation>
|
236
|
+
|
237
|
+
<xs:annotation>
|
238
|
+
<xs:documentation>
|
239
|
+
<div id="nsversioning" xml:id="nsversioning">
|
240
|
+
<h2><a name="nsversioning">Versioning policy for this schema document</a></h2>
|
241
|
+
<div class="bodytext">
|
242
|
+
<p>
|
243
|
+
In keeping with the XML Schema WG's standard versioning
|
244
|
+
policy, this schema document will persist at
|
245
|
+
<a href="http://www.w3.org/2009/01/xml.xsd">
|
246
|
+
http://www.w3.org/2009/01/xml.xsd</a>.
|
247
|
+
</p>
|
248
|
+
<p>
|
249
|
+
At the date of issue it can also be found at
|
250
|
+
<a href="http://www.w3.org/2001/xml.xsd">
|
251
|
+
http://www.w3.org/2001/xml.xsd</a>.
|
252
|
+
</p>
|
253
|
+
<p>
|
254
|
+
The schema document at that URI may however change in the future,
|
255
|
+
in order to remain compatible with the latest version of XML
|
256
|
+
Schema itself, or with the XML namespace itself. In other words,
|
257
|
+
if the XML Schema or XML namespaces change, the version of this
|
258
|
+
document at <a href="http://www.w3.org/2001/xml.xsd">
|
259
|
+
http://www.w3.org/2001/xml.xsd
|
260
|
+
</a>
|
261
|
+
will change accordingly; the version at
|
262
|
+
<a href="http://www.w3.org/2009/01/xml.xsd">
|
263
|
+
http://www.w3.org/2009/01/xml.xsd
|
264
|
+
</a>
|
265
|
+
will not change.
|
266
|
+
</p>
|
267
|
+
<p>
|
268
|
+
Previous dated (and unchanging) versions of this schema
|
269
|
+
document are at:
|
270
|
+
</p>
|
271
|
+
<ul>
|
272
|
+
<li><a href="http://www.w3.org/2009/01/xml.xsd">
|
273
|
+
http://www.w3.org/2009/01/xml.xsd</a></li>
|
274
|
+
<li><a href="http://www.w3.org/2007/08/xml.xsd">
|
275
|
+
http://www.w3.org/2007/08/xml.xsd</a></li>
|
276
|
+
<li><a href="http://www.w3.org/2004/10/xml.xsd">
|
277
|
+
http://www.w3.org/2004/10/xml.xsd</a></li>
|
278
|
+
<li><a href="http://www.w3.org/2001/03/xml.xsd">
|
279
|
+
http://www.w3.org/2001/03/xml.xsd</a></li>
|
280
|
+
</ul>
|
281
|
+
</div>
|
282
|
+
</div>
|
283
|
+
</xs:documentation>
|
284
|
+
</xs:annotation>
|
285
|
+
|
286
|
+
</xs:schema>
|
287
|
+
|
@@ -0,0 +1,1139 @@
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
2
|
+
<xs:schema elementFormDefault="qualified" attributeFormDefault="unqualified" targetNamespace="http://maec.mitre.org/XMLSchema/maec-bundle-4" xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:maecBundle="http://maec.mitre.org/XMLSchema/maec-bundle-4" xmlns:cyboxVocabs="http://cybox.mitre.org/default_vocabularies-2" xmlns:cybox="http://cybox.mitre.org/cybox-2" xmlns:cyboxCommon="http://cybox.mitre.org/common-2" xmlns:URIObj="http://cybox.mitre.org/objects#URIObject-2" xmlns:SystemObj="http://cybox.mitre.org/objects#SystemObject-2" xmlns:ProcessObj="http://cybox.mitre.org/objects#ProcessObject-2" xmlns:CodeObj="http://cybox.mitre.org/objects#CodeObject-2" xmlns:ArtifactObj="http://cybox.mitre.org/objects#ArtifactObject" xmlns:sch="http://purl.oclc.org/dsdl/schematron" version="4.0.1">
|
3
|
+
<xs:import namespace="http://cybox.mitre.org/cybox-2" schemaLocation="../../cybox/cybox_core.xsd"/>
|
4
|
+
<xs:import namespace="http://cybox.mitre.org/common-2" schemaLocation="../../cybox_common.xsd"/>
|
5
|
+
<xs:import namespace="http://cybox.mitre.org/objects#CodeObject-2" schemaLocation="../../cybox/objects/Code_Object.xsd"/>
|
6
|
+
<xs:annotation>
|
7
|
+
<xs:documentation>The following is a description of the elements, types, and attributes that compose Malware Attribute Enumeration and Characterization (MAEC) Bundle schema.</xs:documentation>
|
8
|
+
<xs:documentation>The MAEC Bundle Schema is maintained by The Mitre Corporation. For more information, including how to get involved in the project, please visit the MAEC website at http://maec.mitre.org.</xs:documentation>
|
9
|
+
<xs:documentation>This schema imports the CyBOX schema and object schemas. More info on CybOX can be found at http://cybox.mitre.org.</xs:documentation>
|
10
|
+
<xs:appinfo>
|
11
|
+
<schema>MAEC Bundle Schema</schema>
|
12
|
+
<version>4.0.1</version>
|
13
|
+
<date>9/13/2013</date>
|
14
|
+
<terms_of_use>Copyright (c) 2012-2013, The MITRE Corporation. All rights reserved. The contents of this file are subject to the terms of the MAEC License located at http://maec.mitre.org/about/termsofuse.html. See the MAEC License for the specific language governing permissions and limitations for use of this schema. When distributing copies of the MAEC Schema, this license header must be included.</terms_of_use>
|
15
|
+
</xs:appinfo>
|
16
|
+
</xs:annotation>
|
17
|
+
<xs:import namespace="http://cybox.mitre.org/objects#ProcessObject-2" schemaLocation="../../cybox/objects/Process_Object.xsd"/>
|
18
|
+
<xs:import namespace="http://cybox.mitre.org/default_vocabularies-2" schemaLocation="../../cybox/cybox_default_vocabularies.xsd"/>
|
19
|
+
<xs:element name="MAEC_Bundle" type="maecBundle:BundleType">
|
20
|
+
<xs:annotation>
|
21
|
+
<xs:documentation>The MAEC_Bundle element is the root element of this schema, and is of type BundleType. As such, it represents the characterization of a single malware instance, characterized in the top-level Subject_Details element, via its MAEC entities.</xs:documentation>
|
22
|
+
</xs:annotation>
|
23
|
+
</xs:element>
|
24
|
+
<xs:element name="Action" type="maecBundle:MalwareActionType">
|
25
|
+
<xs:annotation>
|
26
|
+
<xs:documentation>The Action element enables description/specification of a single malware action. </xs:documentation>
|
27
|
+
</xs:annotation>
|
28
|
+
</xs:element>
|
29
|
+
<xs:element name="Behavior" type="maecBundle:BehaviorType">
|
30
|
+
<xs:annotation>
|
31
|
+
<xs:documentation>The Behavior element enables description/specification of a single malware behavior. </xs:documentation>
|
32
|
+
</xs:annotation>
|
33
|
+
</xs:element>
|
34
|
+
<xs:complexType name="MalwareActionType">
|
35
|
+
<xs:annotation>
|
36
|
+
<xs:documentation>The MalwareActionType is one of the foundational MAEC types, and serves as a method for the characterization of actions found or observed in malware. Actions can be thought of as system state changes and similar operations that represent the fundamental low-level operation of malware. Some examples include the creation of a file, deletion of a registry key, and the sending of some data on a socket. It imports and extends the CybOX ActionType. For MAEC, the id attribute is required and must follow the proper syntax: A dash-delimited format is used with the id or idref starting with the word maec followed by a unique string, followed by the three letter code 'act', and ending with an integer.</xs:documentation>
|
37
|
+
</xs:annotation>
|
38
|
+
<xs:complexContent>
|
39
|
+
<xs:extension base="cybox:ActionType">
|
40
|
+
<xs:sequence>
|
41
|
+
<xs:element minOccurs="0" name="Implementation" type="maecBundle:ActionImplementationType">
|
42
|
+
<xs:annotation>
|
43
|
+
<xs:documentation>The Implementation field is optional and serves to capture attributes that are relevant to how the Action is implemented in the malware, such as the specific API call that was used.</xs:documentation>
|
44
|
+
</xs:annotation>
|
45
|
+
</xs:element>
|
46
|
+
</xs:sequence>
|
47
|
+
</xs:extension>
|
48
|
+
</xs:complexContent>
|
49
|
+
</xs:complexType>
|
50
|
+
<xs:complexType name="BehaviorType">
|
51
|
+
<xs:annotation>
|
52
|
+
<xs:documentation>The BehaviorType is one of the foundational MAEC types, and serves as a method for the characterization of malicious behaviors found or observed in malware. Behaviors can be thought of as representing the purpose behind groups of MAEC Actions, and are therefore representative of distinct portions of higher-level malware functionality. Thus, while a malware instance may perform some multitude of Actions, it is likely that these Actions represent only a few distinct behaviors. Some examples include vulnerability exploitation, email address harvesting, the disabling of a security service, etc.</xs:documentation>
|
53
|
+
</xs:annotation>
|
54
|
+
<xs:sequence>
|
55
|
+
<xs:element minOccurs="0" name="Purpose" type="maecBundle:BehaviorPurposeType">
|
56
|
+
<xs:annotation>
|
57
|
+
<xs:documentation>The Purpose field specifies the intended purpose of the Behavior. Since a Behavior is not always successful, and may not be fully observed, this is meant as way to state the nature of the Behavior apart from its constituent actions.</xs:documentation>
|
58
|
+
</xs:annotation>
|
59
|
+
</xs:element>
|
60
|
+
<xs:element minOccurs="0" name="Description" type="xs:string">
|
61
|
+
<xs:annotation>
|
62
|
+
<xs:documentation>The Description field specifies a prose textual description of the Behavior.</xs:documentation>
|
63
|
+
</xs:annotation>
|
64
|
+
</xs:element>
|
65
|
+
<xs:element minOccurs="0" name="Discovery_Method" type="cyboxCommon:MeasureSourceType">
|
66
|
+
<xs:annotation>
|
67
|
+
<xs:documentation>The Discovery_Method field specifies the method used to discover the Behavior.</xs:documentation>
|
68
|
+
</xs:annotation>
|
69
|
+
</xs:element>
|
70
|
+
<xs:element minOccurs="0" name="Action_Composition" type="maecBundle:BehavioralActionsType">
|
71
|
+
<xs:annotation>
|
72
|
+
<xs:documentation>The Action_Composition field captures the Actions that compose the Behavior.</xs:documentation>
|
73
|
+
</xs:annotation>
|
74
|
+
</xs:element>
|
75
|
+
<xs:element minOccurs="0" name="Associated_Code" type="maecBundle:AssociatedCodeType">
|
76
|
+
<xs:annotation>
|
77
|
+
<xs:documentation>The Associated_Code field specifies any code snippets that may be associated with the Behavior.</xs:documentation>
|
78
|
+
</xs:annotation>
|
79
|
+
</xs:element>
|
80
|
+
<xs:element minOccurs="0" name="Relationships" type="maecBundle:BehaviorRelationshipListType">
|
81
|
+
<xs:annotation>
|
82
|
+
<xs:documentation>The Relationships field specifies any relationships between this Behavior and any other Behaviors.</xs:documentation>
|
83
|
+
</xs:annotation>
|
84
|
+
</xs:element>
|
85
|
+
</xs:sequence>
|
86
|
+
<xs:attribute name="id" use="required" type="maecBundle:BehaviorIDPattern">
|
87
|
+
<xs:annotation>
|
88
|
+
<xs:documentation>The required id field specifies a unique ID for this Behavior. The ID must follow the pattern defined in the BehaviorIDPattern simple type.</xs:documentation>
|
89
|
+
</xs:annotation>
|
90
|
+
</xs:attribute>
|
91
|
+
<xs:attribute name="ordinal_position" type="xs:positiveInteger">
|
92
|
+
<xs:annotation>
|
93
|
+
<xs:documentation>The ordinal_position field specifies the ordinal position of the Behavior with respect to the execution of the malware.</xs:documentation>
|
94
|
+
</xs:annotation>
|
95
|
+
</xs:attribute>
|
96
|
+
<xs:attribute name="status" type="cybox:ActionStatusTypeEnum">
|
97
|
+
<xs:annotation>
|
98
|
+
<xs:documentation>The status field specifies the execution status of the Behavior being characterized.</xs:documentation>
|
99
|
+
</xs:annotation>
|
100
|
+
</xs:attribute>
|
101
|
+
<xs:attribute name="duration" type="xs:duration">
|
102
|
+
<xs:annotation>
|
103
|
+
<xs:documentation>The duration field specifies the duration of the Behavior. One way to derive such a value may be to calculate the difference between the timestamps of the first and last actions that compose the behavior.</xs:documentation>
|
104
|
+
</xs:annotation>
|
105
|
+
</xs:attribute>
|
106
|
+
</xs:complexType>
|
107
|
+
<xs:complexType name="BundleType">
|
108
|
+
<xs:annotation>
|
109
|
+
<xs:documentation>The BundleType serves as the high-level construct which encapsulates all Bundle elements, and represents some characterized analysis data (from any arbitrary set of analyses) for a single malware instance in terms of its MAEC Components (e.g., Behaviors, Actions, Objects, etc.).</xs:documentation>
|
110
|
+
</xs:annotation>
|
111
|
+
<xs:sequence>
|
112
|
+
<xs:element minOccurs="0" name="Malware_Instance_Object_Attributes" type="cybox:ObjectType">
|
113
|
+
<xs:annotation>
|
114
|
+
<xs:documentation>The Malware_Instance_Object_Attributes field characterizes the attributes of the object (most typically a file) that represents the malware instance whose Behaviors, Actions, Objects, Process Tree, and Candidate Indicators are characterized in this Bundle. This is equivalent to the Malware_Instance_Object_Attributes inside of a Malware_Subject in the MAEC Package, and is therefore only required if this Bundle is to be used in a stand-alone fashion, i.e. without an accompanying MAEC Package and with the defined_subject attribute set to 'True'.</xs:documentation>
|
115
|
+
</xs:annotation>
|
116
|
+
</xs:element>
|
117
|
+
<xs:element minOccurs="0" name="AV_Classifications" type="maecBundle:AVClassificationsType">
|
118
|
+
<xs:annotation>
|
119
|
+
<xs:documentation>The AV_Classifications field contains 1-n AVClassificationType objects, which capture any Anti-Virus scanner tool classifications of the malware instance object.</xs:documentation>
|
120
|
+
</xs:annotation>
|
121
|
+
</xs:element>
|
122
|
+
<xs:element minOccurs="0" name="Process_Tree" type="maecBundle:ProcessTreeType">
|
123
|
+
<xs:annotation>
|
124
|
+
<xs:documentation>The Process_Tree field specifies the observed process tree of execution for the malware instance, along with references to any corresponding actions that were initiated, if applicable.</xs:documentation>
|
125
|
+
</xs:annotation>
|
126
|
+
</xs:element>
|
127
|
+
<xs:element minOccurs="0" name="Behaviors" type="maecBundle:BehaviorListType">
|
128
|
+
<xs:annotation>
|
129
|
+
<xs:documentation>The Behaviors field contains 1-n BehaviorType objects, which function as the MAEC representation for any behaviors that were observed for the malware instance. </xs:documentation>
|
130
|
+
</xs:annotation>
|
131
|
+
</xs:element>
|
132
|
+
<xs:element minOccurs="0" name="Actions" type="maecBundle:ActionListType">
|
133
|
+
<xs:annotation>
|
134
|
+
<xs:documentation>The Actions field contains 1-n ActionType objects, which function as the MAEC representation for any lower-level actions that were observed for the malware instance. </xs:documentation>
|
135
|
+
</xs:annotation>
|
136
|
+
</xs:element>
|
137
|
+
<xs:element minOccurs="0" name="Objects" type="maecBundle:ObjectListType">
|
138
|
+
<xs:annotation>
|
139
|
+
<xs:documentation>The Objects field contains 1-n ObjectType objects, which function as the MAEC representation for any objects associated with the malware instance.</xs:documentation>
|
140
|
+
</xs:annotation>
|
141
|
+
</xs:element>
|
142
|
+
<xs:element minOccurs="0" name="Candidate_Indicators" type="maecBundle:CandidateIndicatorListType">
|
143
|
+
<xs:annotation>
|
144
|
+
<xs:documentation>The Candidate_Indicators field contains 1-n CandidateIndicatorType objects, which function as the MAEC representation of any candidate indicators associated with the malware instance.</xs:documentation>
|
145
|
+
</xs:annotation>
|
146
|
+
</xs:element>
|
147
|
+
<xs:element minOccurs="0" name="Collections" type="maecBundle:CollectionsType">
|
148
|
+
<xs:annotation>
|
149
|
+
<xs:documentation>The Collections field contains the collection element types for Behaviors, Actions, Objects, and Candidate Indicators.</xs:documentation>
|
150
|
+
</xs:annotation>
|
151
|
+
</xs:element>
|
152
|
+
</xs:sequence>
|
153
|
+
<xs:attribute name="id" use="required" type="maecBundle:BundleIDPattern">
|
154
|
+
<xs:annotation>
|
155
|
+
<xs:documentation>The required id field specifies a unique ID for this MAEC Bundle. The ID must follow the pattern defined in the BundleIDPattern simple type.</xs:documentation>
|
156
|
+
</xs:annotation>
|
157
|
+
</xs:attribute>
|
158
|
+
<xs:attribute name="schema_version" type="xs:string" use="required" fixed="4.0.1">
|
159
|
+
<xs:annotation>
|
160
|
+
<xs:documentation>The required schema_version field specifies the version of the MAEC Bundle Schema that the document has been written in and that should be used for validation.</xs:documentation>
|
161
|
+
</xs:annotation>
|
162
|
+
</xs:attribute>
|
163
|
+
<xs:attribute name="defined_subject" type="xs:boolean" use="required">
|
164
|
+
<xs:annotation>
|
165
|
+
<xs:documentation>The required defined_subject field specifies whether the subject attributes of the malware instance characterized here are included inside this Bundle (via the top-level Malware_Instance_Object_Attributes element) or elsewhere (such as a MAEC Subject in a MAEC Package).</xs:documentation>
|
166
|
+
</xs:annotation>
|
167
|
+
</xs:attribute>
|
168
|
+
<xs:attribute name="content_type" type="maecBundle:BundleContentTypeEnum">
|
169
|
+
<xs:annotation>
|
170
|
+
<xs:documentation>The content_type field specifies the general type of content contained in this Bundle, e.g. static analysis tool output, dynamic analysis tool output, etc.</xs:documentation>
|
171
|
+
</xs:annotation>
|
172
|
+
</xs:attribute>
|
173
|
+
<xs:attribute name="timestamp" type="xs:dateTime">
|
174
|
+
<xs:annotation>
|
175
|
+
<xs:documentation>The timestamp field specifies the date/time that the bundle was generated.</xs:documentation>
|
176
|
+
</xs:annotation>
|
177
|
+
</xs:attribute>
|
178
|
+
</xs:complexType>
|
179
|
+
<xs:complexType name="BehaviorCollectionType">
|
180
|
+
<xs:annotation>
|
181
|
+
<xs:documentation>The BehaviorCollectionType provides a mechanism for characterizing collections of behaviors.</xs:documentation>
|
182
|
+
</xs:annotation>
|
183
|
+
<xs:complexContent>
|
184
|
+
<xs:extension base="maecBundle:BaseCollectionType">
|
185
|
+
<xs:sequence>
|
186
|
+
<xs:element name="Purpose" type="xs:string" minOccurs="0">
|
187
|
+
<xs:annotation>
|
188
|
+
<xs:documentation>The Purpose field states the intended purpose of the collection of Behaviors. Since Behaviors are not always successful, and may not be fully observed, this is meant as way of absracting the nature of the collection of Behaviors away from its constituent Actions.</xs:documentation>
|
189
|
+
</xs:annotation>
|
190
|
+
</xs:element>
|
191
|
+
<xs:element name="Behavior_List" type="maecBundle:BehaviorListType">
|
192
|
+
<xs:annotation>
|
193
|
+
<xs:documentation>The Behavior_List field specifies a list of Behaviors that make up the collection.</xs:documentation>
|
194
|
+
</xs:annotation>
|
195
|
+
</xs:element>
|
196
|
+
</xs:sequence>
|
197
|
+
<xs:attribute name="id" use="required" type="maecBundle:BehaviorCollIDPattern">
|
198
|
+
<xs:annotation>
|
199
|
+
<xs:documentation>The id field specifies a unique ID for this Behavior Collection. The ID must follow the pattern defined in the BehaviorCollIDPattern simple type. </xs:documentation>
|
200
|
+
</xs:annotation>
|
201
|
+
</xs:attribute>
|
202
|
+
</xs:extension>
|
203
|
+
</xs:complexContent>
|
204
|
+
</xs:complexType>
|
205
|
+
<xs:complexType name="ActionCollectionType">
|
206
|
+
<xs:annotation>
|
207
|
+
<xs:documentation>The ActionCollectionType provides a method for characterizing collections of actions. This can be useful for organizing actions that may be related and where the exact relationship is unknown, as well as actions whose associated behavior has not yet been established.</xs:documentation>
|
208
|
+
</xs:annotation>
|
209
|
+
<xs:complexContent>
|
210
|
+
<xs:extension base="maecBundle:BaseCollectionType">
|
211
|
+
<xs:sequence>
|
212
|
+
<xs:element name="Action_List" type="maecBundle:ActionListType">
|
213
|
+
<xs:annotation>
|
214
|
+
<xs:documentation>The Action_List field specifies a list of Actions that make up the collection.</xs:documentation>
|
215
|
+
</xs:annotation>
|
216
|
+
</xs:element>
|
217
|
+
</xs:sequence>
|
218
|
+
<xs:attribute name="id" use="required" type="maecBundle:ActionCollIDPattern">
|
219
|
+
<xs:annotation>
|
220
|
+
<xs:documentation>The id field specifies a unique ID for this Action Collection. The ID must follow the pattern defined in the ActionCollIDPattern simple type. </xs:documentation>
|
221
|
+
</xs:annotation>
|
222
|
+
</xs:attribute>
|
223
|
+
</xs:extension>
|
224
|
+
</xs:complexContent>
|
225
|
+
</xs:complexType>
|
226
|
+
|
227
|
+
<xs:complexType name="APICallType">
|
228
|
+
<xs:annotation>
|
229
|
+
<xs:documentation>The APICallType provides a method for the characterization of API calls, including functions and their parameters.</xs:documentation>
|
230
|
+
</xs:annotation>
|
231
|
+
<xs:sequence>
|
232
|
+
<xs:element name="Address" type="xs:hexBinary" minOccurs="0">
|
233
|
+
<xs:annotation>
|
234
|
+
<xs:documentation>The Address field contains the address of the API call in the binary.</xs:documentation>
|
235
|
+
</xs:annotation>
|
236
|
+
</xs:element>
|
237
|
+
<xs:element name="Return_Value" type="xs:string" minOccurs="0">
|
238
|
+
<xs:annotation>
|
239
|
+
<xs:documentation>The Return_Value field contains the return value of the API call.</xs:documentation>
|
240
|
+
</xs:annotation>
|
241
|
+
</xs:element>
|
242
|
+
<xs:element minOccurs="0" name="Parameters" type="maecBundle:ParameterListType">
|
243
|
+
<xs:annotation>
|
244
|
+
<xs:documentation>The Parameter field captures any name/value pairs of the parameters passed into the API call.</xs:documentation>
|
245
|
+
</xs:annotation>
|
246
|
+
</xs:element>
|
247
|
+
</xs:sequence>
|
248
|
+
<xs:attribute name="function_name" type="xs:string">
|
249
|
+
<xs:annotation>
|
250
|
+
<xs:documentation>The function_name field contains the exact name of the API function called, e.g. CreateFileEx.</xs:documentation>
|
251
|
+
</xs:annotation>
|
252
|
+
</xs:attribute>
|
253
|
+
<xs:attribute name="normalized_function_name" type="xs:string">
|
254
|
+
<xs:annotation>
|
255
|
+
<xs:documentation>The normalized_function_name field contains the normalized name of the API function called, e.g. CreateFile.</xs:documentation>
|
256
|
+
</xs:annotation>
|
257
|
+
</xs:attribute>
|
258
|
+
</xs:complexType>
|
259
|
+
<xs:complexType name="ActionImplementationType">
|
260
|
+
<xs:annotation>
|
261
|
+
<xs:documentation>The ActionImplementationType serves as a method for the characterization of Action Implementations. Currently supported are implementations achieved through API function calls and abstractly defined code.
|
262
|
+
</xs:documentation>
|
263
|
+
</xs:annotation>
|
264
|
+
<xs:sequence>
|
265
|
+
<xs:element name="Compatible_Platforms" type="maecBundle:PlatformListType" minOccurs="0">
|
266
|
+
<xs:annotation>
|
267
|
+
<xs:documentation>The Compatible_Platforms field specifies the specific platform(s) that the Action is compatible with, or in other words, capable of being successfully executed on.</xs:documentation>
|
268
|
+
</xs:annotation>
|
269
|
+
</xs:element>
|
270
|
+
<xs:choice>
|
271
|
+
<xs:element name="API_Call" maxOccurs="1" minOccurs="0" type="maecBundle:APICallType">
|
272
|
+
<xs:annotation>
|
273
|
+
<xs:documentation>The API_Call field allows for the characterization of a system-level API call that was used to implement the action. Software must make use of such calls to talk to hardware and perform system-specific functions.</xs:documentation>
|
274
|
+
</xs:annotation>
|
275
|
+
</xs:element>
|
276
|
+
<xs:element name="Code" maxOccurs="unbounded" type="CodeObj:CodeObjectType" minOccurs="0">
|
277
|
+
<xs:annotation>
|
278
|
+
<xs:documentation>The Code field contains any form of code that was used to implement the action.</xs:documentation>
|
279
|
+
</xs:annotation>
|
280
|
+
</xs:element>
|
281
|
+
</xs:choice>
|
282
|
+
</xs:sequence>
|
283
|
+
<xs:attribute name="id" use="optional" type="maecBundle:ActionImplementationIDPattern">
|
284
|
+
<xs:annotation>
|
285
|
+
<xs:documentation>The id field specifies a unique ID for this Action Implementation. The ID must follow the pattern defined in the ActionImpIDPattern simple type. </xs:documentation>
|
286
|
+
</xs:annotation>
|
287
|
+
</xs:attribute>
|
288
|
+
<xs:attribute name="type" use="required" type="maecBundle:ActionImplementationTypeEnum">
|
289
|
+
<xs:annotation>
|
290
|
+
<xs:documentation>The required type field refers to the type of Action Implementation being characterized in this element. </xs:documentation>
|
291
|
+
</xs:annotation>
|
292
|
+
</xs:attribute>
|
293
|
+
</xs:complexType>
|
294
|
+
<xs:complexType name="CVEVulnerabilityType">
|
295
|
+
<xs:annotation>
|
296
|
+
<xs:documentation>The CVEVulnerabilityType provides a way of referencing specific vulnerabilities that malware exploits or attempts to exploit via a Common Vulnerabilities and Exposures (CVE) identifier. For more information on CVE please see http://cve.mitre.org. </xs:documentation>
|
297
|
+
</xs:annotation>
|
298
|
+
<xs:sequence>
|
299
|
+
<xs:element name="Description" type="xs:string" minOccurs="0">
|
300
|
+
<xs:annotation>
|
301
|
+
<xs:documentation>The Description field specifies the textual description of the vulnerability referenced by the cve_id.</xs:documentation>
|
302
|
+
</xs:annotation>
|
303
|
+
</xs:element>
|
304
|
+
</xs:sequence>
|
305
|
+
<xs:attribute name="cve_id" type="xs:string" use="required">
|
306
|
+
<xs:annotation>
|
307
|
+
<xs:documentation>The cve_id attribute contains the ID of the CVE that is being referenced, e.g., CVE-1999-0002.</xs:documentation>
|
308
|
+
</xs:annotation>
|
309
|
+
</xs:attribute>
|
310
|
+
</xs:complexType>
|
311
|
+
<xs:complexType name="ObjectCollectionType">
|
312
|
+
<xs:annotation>
|
313
|
+
<xs:documentation>The ObjectCollectionType provides a mechanism for characterizing collections of Objects. For instance, it can be used to group all of the Objects that are associated with a specific behavior.</xs:documentation>
|
314
|
+
</xs:annotation>
|
315
|
+
<xs:complexContent>
|
316
|
+
<xs:extension base="maecBundle:BaseCollectionType">
|
317
|
+
<xs:sequence>
|
318
|
+
<xs:element name="Object_List" type="maecBundle:ObjectListType">
|
319
|
+
<xs:annotation>
|
320
|
+
<xs:documentation>The Object_List field specifies a list of Objects that make up the collection.</xs:documentation>
|
321
|
+
</xs:annotation>
|
322
|
+
</xs:element>
|
323
|
+
</xs:sequence>
|
324
|
+
<xs:attribute name="id" use="required" type="maecBundle:ObjectCollIDPattern">
|
325
|
+
<xs:annotation>
|
326
|
+
<xs:documentation>The id attribute specifies a unique ID for this Object Collection. The ID must follow the pattern defined in the ObjectCollIDPattern simple type. </xs:documentation>
|
327
|
+
</xs:annotation>
|
328
|
+
</xs:attribute>
|
329
|
+
</xs:extension>
|
330
|
+
</xs:complexContent>
|
331
|
+
</xs:complexType>
|
332
|
+
<xs:complexType name="BaseCollectionType">
|
333
|
+
<xs:annotation>
|
334
|
+
<xs:documentation>The BaseCollectionType is the base type for other MAEC collection types.</xs:documentation>
|
335
|
+
</xs:annotation>
|
336
|
+
<xs:sequence>
|
337
|
+
<xs:element name="Affinity_Type" type="xs:string" minOccurs="0">
|
338
|
+
<xs:annotation>
|
339
|
+
<xs:documentation>The Affinity_Type field provides an abstract way of characterizing how the objects in a collection are related.</xs:documentation>
|
340
|
+
</xs:annotation>
|
341
|
+
</xs:element>
|
342
|
+
<xs:element name="Affinity_Degree" type="xs:string" minOccurs="0">
|
343
|
+
<xs:annotation>
|
344
|
+
<xs:documentation>The Affinity_Degree field is intended to provide an abstract way of characterizing the degree to which the objects in a collection are related.</xs:documentation>
|
345
|
+
</xs:annotation>
|
346
|
+
</xs:element>
|
347
|
+
<xs:element minOccurs="0" name="Description" type="xs:string">
|
348
|
+
<xs:annotation>
|
349
|
+
<xs:documentation>The Description field contains a textual description of the collection.</xs:documentation>
|
350
|
+
</xs:annotation>
|
351
|
+
</xs:element>
|
352
|
+
</xs:sequence>
|
353
|
+
<xs:attribute name="name" type="xs:string">
|
354
|
+
<xs:annotation>
|
355
|
+
<xs:documentation>The name field specifies the name of the collection.</xs:documentation>
|
356
|
+
</xs:annotation>
|
357
|
+
</xs:attribute>
|
358
|
+
</xs:complexType>
|
359
|
+
|
360
|
+
<xs:complexType name="BehaviorRelationshipType">
|
361
|
+
<xs:annotation>
|
362
|
+
<xs:documentation>The BehaviorRelationshipType provides a method for the characterization of relationships between Behaviors. </xs:documentation>
|
363
|
+
</xs:annotation>
|
364
|
+
<xs:sequence>
|
365
|
+
<xs:element maxOccurs="unbounded" name="Behavior_Reference" type="maecBundle:BehaviorReferenceType" minOccurs="1">
|
366
|
+
<xs:annotation>
|
367
|
+
<xs:documentation>The Behavior_Reference field specifies a reference to a single Behavior in the relationship.</xs:documentation>
|
368
|
+
</xs:annotation>
|
369
|
+
</xs:element>
|
370
|
+
</xs:sequence>
|
371
|
+
<xs:attribute name="type" use="optional">
|
372
|
+
<xs:annotation>
|
373
|
+
<xs:documentation>The type field specifies the nature of the relationship between Behaviors that is being captured.</xs:documentation>
|
374
|
+
</xs:annotation>
|
375
|
+
<xs:simpleType>
|
376
|
+
<xs:restriction base="cyboxVocabs:ActionRelationshipTypeEnum-1.0">
|
377
|
+
<xs:enumeration value="Preceded_By"/>
|
378
|
+
<xs:enumeration value="Followed_By"/>
|
379
|
+
<xs:enumeration value="Related_To"/>
|
380
|
+
<xs:enumeration value="Dependent_On"/>
|
381
|
+
</xs:restriction>
|
382
|
+
</xs:simpleType>
|
383
|
+
</xs:attribute>
|
384
|
+
</xs:complexType>
|
385
|
+
<xs:complexType name="AVClassificationsType">
|
386
|
+
<xs:annotation>
|
387
|
+
<xs:documentation>The AVClassificationsType captures any Anti-Virus (AV) tool classifications for an Object.</xs:documentation>
|
388
|
+
</xs:annotation>
|
389
|
+
<xs:sequence>
|
390
|
+
<xs:element maxOccurs="unbounded" name="AV_Classification" type="maecBundle:AVClassificationType">
|
391
|
+
<xs:annotation>
|
392
|
+
<xs:documentation>The AV_Classification field captures a single AV classication of the malware instance object. </xs:documentation>
|
393
|
+
</xs:annotation>
|
394
|
+
</xs:element>
|
395
|
+
</xs:sequence>
|
396
|
+
</xs:complexType>
|
397
|
+
<xs:complexType name="ParameterType">
|
398
|
+
<xs:annotation>
|
399
|
+
<xs:documentation>The ParameterType characterizes function parameters.</xs:documentation>
|
400
|
+
</xs:annotation>
|
401
|
+
<xs:attribute name="ordinal_position" type="xs:positiveInteger">
|
402
|
+
<xs:annotation>
|
403
|
+
<xs:documentation>This field refers to the ordinal position of the parameter with respect to the function where it is used.</xs:documentation>
|
404
|
+
</xs:annotation>
|
405
|
+
</xs:attribute>
|
406
|
+
<xs:attribute name="name" type="xs:string">
|
407
|
+
<xs:annotation>
|
408
|
+
<xs:documentation>The name field specifies the name of the parameter.</xs:documentation>
|
409
|
+
</xs:annotation>
|
410
|
+
</xs:attribute>
|
411
|
+
<xs:attribute name="value" type="xs:string">
|
412
|
+
<xs:annotation>
|
413
|
+
<xs:documentation>The value field specifies the actual value of the parameter.</xs:documentation>
|
414
|
+
</xs:annotation>
|
415
|
+
</xs:attribute>
|
416
|
+
</xs:complexType>
|
417
|
+
<xs:complexType name="ParameterListType">
|
418
|
+
<xs:annotation>
|
419
|
+
<xs:documentation>The ParametersType captures a list of function parameters.</xs:documentation>
|
420
|
+
</xs:annotation>
|
421
|
+
<xs:sequence>
|
422
|
+
<xs:element maxOccurs="unbounded" name="Parameter" type="maecBundle:ParameterType">
|
423
|
+
<xs:annotation>
|
424
|
+
<xs:documentation>The Parameter field specifies a single function parameter.</xs:documentation>
|
425
|
+
</xs:annotation>
|
426
|
+
</xs:element>
|
427
|
+
</xs:sequence>
|
428
|
+
</xs:complexType>
|
429
|
+
<xs:complexType name="AssociatedCodeType">
|
430
|
+
<xs:annotation>
|
431
|
+
<xs:documentation>The AssociatedCodeType serves as generic way of specifying any code snippets associated with a MAEC entity, such as a Behavior.</xs:documentation>
|
432
|
+
</xs:annotation>
|
433
|
+
<xs:sequence>
|
434
|
+
<xs:element maxOccurs="unbounded" name="Code_Snippet" type="CodeObj:CodeObjectType">
|
435
|
+
<xs:annotation>
|
436
|
+
<xs:documentation>The Code_Snippet field captures a single snippet of code, via the CybOX CodeObjectType.</xs:documentation>
|
437
|
+
</xs:annotation>
|
438
|
+
</xs:element>
|
439
|
+
</xs:sequence>
|
440
|
+
</xs:complexType>
|
441
|
+
<xs:complexType name="BehaviorPurposeType">
|
442
|
+
<xs:annotation>
|
443
|
+
<xs:documentation>The BehaviorPurposeType captures the purpose behind a malware Behavior.</xs:documentation>
|
444
|
+
</xs:annotation>
|
445
|
+
<xs:sequence>
|
446
|
+
<xs:element minOccurs="0" name="Description" type="xs:string">
|
447
|
+
<xs:annotation>
|
448
|
+
<xs:documentation>The Description field contains a prose text description of the purpose of the Behavior, whether it was successful or not.</xs:documentation>
|
449
|
+
</xs:annotation>
|
450
|
+
</xs:element>
|
451
|
+
<xs:element minOccurs="0" name="Vulnerability_Exploit" type="maecBundle:VulnerabilityExploitType">
|
452
|
+
<xs:annotation>
|
453
|
+
<xs:documentation>The Vulnerability_Exploit field contains a CVE identifier for specifying a vulnerability that a Behavior may have attempted to exploit, and was either unsuccessful or the success of the exploitation is unknown.</xs:documentation>
|
454
|
+
</xs:annotation>
|
455
|
+
</xs:element>
|
456
|
+
</xs:sequence>
|
457
|
+
</xs:complexType>
|
458
|
+
<xs:complexType name="PlatformListType">
|
459
|
+
<xs:annotation>
|
460
|
+
<xs:documentation>The PlatformListType captures a list of software or hardware platforms.</xs:documentation>
|
461
|
+
</xs:annotation>
|
462
|
+
<xs:sequence>
|
463
|
+
<xs:element maxOccurs="unbounded" name="Platform" type="cyboxCommon:PlatformSpecificationType">
|
464
|
+
<xs:annotation>
|
465
|
+
<xs:documentation>The Platform field specifies a single platform in the list via a Common Platform Enumeration ID. It imports and uses the CPESpecificationType from the CybOX Common Types v1.0 draft.</xs:documentation>
|
466
|
+
</xs:annotation>
|
467
|
+
</xs:element>
|
468
|
+
</xs:sequence>
|
469
|
+
</xs:complexType>
|
470
|
+
<xs:complexType name="VulnerabilityExploitType">
|
471
|
+
<xs:annotation>
|
472
|
+
<xs:documentation>The VulnerabilityExploitType characterizes any vulnerability that may be exploited by malware through a Behavior.</xs:documentation>
|
473
|
+
</xs:annotation>
|
474
|
+
<xs:sequence>
|
475
|
+
<xs:element minOccurs="0" name="CVE" type="maecBundle:CVEVulnerabilityType">
|
476
|
+
<xs:annotation>
|
477
|
+
<xs:documentation>The CVE field specifies the CVE ID and description of the vulnerability targeted by the exploit, if available.</xs:documentation>
|
478
|
+
</xs:annotation>
|
479
|
+
</xs:element>
|
480
|
+
<xs:element minOccurs="0" name="Targeted_Platforms" type="maecBundle:PlatformListType">
|
481
|
+
<xs:annotation>
|
482
|
+
<xs:documentation>The Targeted_Platforms field specifies the platforms(s) targeted by the vulnerability exploit.</xs:documentation>
|
483
|
+
</xs:annotation>
|
484
|
+
</xs:element>
|
485
|
+
</xs:sequence>
|
486
|
+
<xs:attribute name="known_vulnerability" type="xs:boolean">
|
487
|
+
<xs:annotation>
|
488
|
+
<xs:documentation>The known_vulnerability field specifies whether the vulnerability that the malware is exploiting has been previously identified. If so, it should be referenced via a CVE ID in the CVE element. If not, the platform(s) targeted by the vulnerability exploitation behavior may be specified in the Targeted_Platforms element.</xs:documentation>
|
489
|
+
</xs:annotation>
|
490
|
+
</xs:attribute>
|
491
|
+
</xs:complexType>
|
492
|
+
<xs:complexType name="BehaviorRelationshipListType">
|
493
|
+
<xs:annotation>
|
494
|
+
<xs:documentation>The BehaviorRelationshipListType captures any relationships between a Behavior and other Behaviors.</xs:documentation>
|
495
|
+
</xs:annotation>
|
496
|
+
<xs:sequence>
|
497
|
+
<xs:element maxOccurs="unbounded" name="Relationship" type="maecBundle:BehaviorRelationshipType">
|
498
|
+
<xs:annotation>
|
499
|
+
<xs:documentation>The Relationship field specifies a single relationship between a single Behavior and one or more other Behaviors.</xs:documentation>
|
500
|
+
</xs:annotation>
|
501
|
+
</xs:element>
|
502
|
+
</xs:sequence>
|
503
|
+
</xs:complexType>
|
504
|
+
<xs:complexType name="BehavioralActionsType">
|
505
|
+
<xs:annotation>
|
506
|
+
<xs:documentation>The BehavioralActionsType is intended to capture the Actions or Action Collections that make up a Behavior.</xs:documentation>
|
507
|
+
</xs:annotation>
|
508
|
+
<xs:choice maxOccurs="unbounded">
|
509
|
+
<xs:element minOccurs="1" name="Action_Collection" type="maecBundle:ActionCollectionType">
|
510
|
+
<xs:annotation>
|
511
|
+
<xs:documentation>The Action_Collection field specifies an Action Collection that is part of the behavioral composition.</xs:documentation>
|
512
|
+
</xs:annotation>
|
513
|
+
</xs:element>
|
514
|
+
<xs:element minOccurs="1" name="Action" type="maecBundle:BehavioralActionType">
|
515
|
+
<xs:annotation>
|
516
|
+
<xs:documentation>The Action field specifies a single Action that is part of the behavioral composition.</xs:documentation>
|
517
|
+
</xs:annotation>
|
518
|
+
</xs:element>
|
519
|
+
<xs:element name="Action_Reference" type="maecBundle:BehavioralActionReferenceType">
|
520
|
+
<xs:annotation>
|
521
|
+
<xs:documentation>The Action_Reference field specifies a reference to a single Action that is part of the behavioral composition.</xs:documentation>
|
522
|
+
</xs:annotation>
|
523
|
+
</xs:element>
|
524
|
+
<xs:element name="Action_Equivalence_Reference" type="maecBundle:BehavioralActionEquivalenceReferenceType">
|
525
|
+
<xs:annotation>
|
526
|
+
<xs:documentation>The Action_Equivalence_Reference field specifies a reference to a single Action Equivalence that is part of the behavioral composition.</xs:documentation>
|
527
|
+
</xs:annotation>
|
528
|
+
</xs:element>
|
529
|
+
</xs:choice>
|
530
|
+
</xs:complexType>
|
531
|
+
<xs:complexType name="BehaviorListType">
|
532
|
+
<xs:annotation>
|
533
|
+
<xs:documentation>The BehaviorListType captures a list of Behaviors.</xs:documentation>
|
534
|
+
</xs:annotation>
|
535
|
+
<xs:sequence maxOccurs="1">
|
536
|
+
<xs:element name="Behavior" type="maecBundle:BehaviorType" maxOccurs="unbounded" form="qualified" minOccurs="1">
|
537
|
+
<xs:annotation>
|
538
|
+
<xs:documentation>The Behavior field specifies a single Behavior in the list.</xs:documentation>
|
539
|
+
</xs:annotation>
|
540
|
+
</xs:element>
|
541
|
+
</xs:sequence>
|
542
|
+
</xs:complexType>
|
543
|
+
<xs:complexType name="ActionListType">
|
544
|
+
<xs:annotation>
|
545
|
+
<xs:documentation>The ActionListType captures a list of Actions.</xs:documentation>
|
546
|
+
</xs:annotation>
|
547
|
+
<xs:sequence maxOccurs="1">
|
548
|
+
<xs:element name="Action" type="maecBundle:MalwareActionType" maxOccurs="unbounded" minOccurs="1">
|
549
|
+
<xs:annotation>
|
550
|
+
<xs:documentation>The Action field specifies a single Action in the list.</xs:documentation>
|
551
|
+
</xs:annotation>
|
552
|
+
</xs:element>
|
553
|
+
</xs:sequence>
|
554
|
+
</xs:complexType>
|
555
|
+
<xs:complexType name="ObjectListType">
|
556
|
+
<xs:annotation>
|
557
|
+
<xs:documentation>The ObjectListType captures a list of CybOX Objects.</xs:documentation>
|
558
|
+
</xs:annotation>
|
559
|
+
<xs:sequence maxOccurs="1">
|
560
|
+
<xs:element maxOccurs="unbounded" name="Object" type="cybox:ObjectType">
|
561
|
+
<xs:annotation>
|
562
|
+
<xs:documentation>The Object field specifies a single CybOX Object in the list. For use in MAEC, the id attribute at the top level of the Object must be utilized.</xs:documentation>
|
563
|
+
</xs:annotation>
|
564
|
+
</xs:element>
|
565
|
+
</xs:sequence>
|
566
|
+
</xs:complexType>
|
567
|
+
<xs:complexType name="BehaviorReferenceType">
|
568
|
+
<xs:annotation>
|
569
|
+
<xs:documentation>The BehaviorReferenceType serves as a method for referencing existing behaviors contained in the Bundle.</xs:documentation>
|
570
|
+
</xs:annotation>
|
571
|
+
<xs:attribute name="behavior_idref" type="maecBundle:BehaviorIDREFPattern" use="required">
|
572
|
+
<xs:annotation>
|
573
|
+
<xs:documentation>The behavior_idref field specifies the id of the Behavior being referenced; this Behavior must be present in the current Bundle.</xs:documentation>
|
574
|
+
</xs:annotation>
|
575
|
+
</xs:attribute>
|
576
|
+
</xs:complexType>
|
577
|
+
<xs:complexType name="ObjectReferenceType">
|
578
|
+
<xs:annotation>
|
579
|
+
<xs:documentation>The ObjectReferenceType serves as a method for linking to CybOX Objects embedded in the MAEC Bundle.</xs:documentation>
|
580
|
+
</xs:annotation>
|
581
|
+
<xs:attribute name="object_idref" type="xs:QName" use="required">
|
582
|
+
<xs:annotation>
|
583
|
+
<xs:documentation>The object_idref field specifies the id of a CybOX Object being referenced in the current MAEC Bundle.</xs:documentation>
|
584
|
+
</xs:annotation>
|
585
|
+
</xs:attribute>
|
586
|
+
</xs:complexType>
|
587
|
+
<xs:complexType name="BehavioralActionType">
|
588
|
+
<xs:annotation>
|
589
|
+
<xs:documentation>The BehavioralActionType defines an Action that can be used as part of a Behavior.</xs:documentation>
|
590
|
+
</xs:annotation>
|
591
|
+
<xs:complexContent>
|
592
|
+
<xs:extension base="maecBundle:MalwareActionType">
|
593
|
+
<xs:attribute name="behavioral_ordering" type="xs:positiveInteger">
|
594
|
+
<xs:annotation>
|
595
|
+
<xs:documentation>The behavioral_ordering field defines the ordering of the Action with respect to the other Actions that make up the behavior. So an action with a behavioral_ordering of "1" would come before an Action with a behavioral_ordering of "2", etc.</xs:documentation>
|
596
|
+
</xs:annotation>
|
597
|
+
</xs:attribute>
|
598
|
+
</xs:extension>
|
599
|
+
</xs:complexContent>
|
600
|
+
</xs:complexType>
|
601
|
+
<xs:complexType name="BehavioralActionReferenceType">
|
602
|
+
<xs:annotation>
|
603
|
+
<xs:documentation>The BehavioralActionReferenceType defines an action reference that can be used as part of a Behavior.</xs:documentation>
|
604
|
+
</xs:annotation>
|
605
|
+
<xs:complexContent>
|
606
|
+
<xs:extension base="cybox:ActionReferenceType">
|
607
|
+
<xs:attribute name="behavioral_ordering" type="xs:positiveInteger">
|
608
|
+
<xs:annotation>
|
609
|
+
<xs:documentation>The behavioral_ordering field defines the ordering of the Action with respect to the other Actions that make up the Behavior. For example, an Action with a behavioral_ordering of "1" would come before an Action with a behavioral_ordering of "2", etc.</xs:documentation>
|
610
|
+
</xs:annotation>
|
611
|
+
</xs:attribute>
|
612
|
+
</xs:extension>
|
613
|
+
</xs:complexContent>
|
614
|
+
</xs:complexType>
|
615
|
+
<xs:complexType name="BehavioralActionEquivalenceReferenceType">
|
616
|
+
<xs:annotation>
|
617
|
+
<xs:documentation>The BehavioralActionEquivalenceReferenceType defines an Action Equivalence reference that can be used as part of a Behavior. Since the Action Equivalency equates two or more actions to a single one, this can be thought of as specifying one of the aforementioned Actions as part of the composition of the Behavior.</xs:documentation>
|
618
|
+
</xs:annotation>
|
619
|
+
<xs:attribute name="action_equivalence_idref" type="maecBundle:ActionEquivalenceIDREFPattern" use="required">
|
620
|
+
<xs:annotation>
|
621
|
+
<xs:documentation>The action_equivalence_idref field specifies the ID of an Action Equivalence contained in the same MAEC document as the Behavior that utilizes it.</xs:documentation>
|
622
|
+
</xs:annotation>
|
623
|
+
</xs:attribute>
|
624
|
+
<xs:attribute name="behavioral_ordering" type="xs:positiveInteger">
|
625
|
+
<xs:annotation>
|
626
|
+
<xs:documentation>The behavioral_ordering field defines the ordering of the Action Equivalency with respect to the other actions that make up the behavior. So an action with a behavioral_ordering of "1" would come before an action with a behavioral_ordering of "2", etc.</xs:documentation>
|
627
|
+
</xs:annotation>
|
628
|
+
</xs:attribute>
|
629
|
+
</xs:complexType>
|
630
|
+
<xs:complexType name="BehaviorReferenceListType">
|
631
|
+
<xs:annotation>
|
632
|
+
<xs:documentation>The BehaviorReferenceListType captures a list of Behavior References.</xs:documentation>
|
633
|
+
</xs:annotation>
|
634
|
+
<xs:sequence>
|
635
|
+
<xs:element maxOccurs="unbounded" name="Behavior_Reference" type="maecBundle:BehaviorReferenceType">
|
636
|
+
<xs:annotation>
|
637
|
+
<xs:documentation>The Behavior_Reference field specifies a reference to a single Behavior.</xs:documentation>
|
638
|
+
</xs:annotation>
|
639
|
+
</xs:element>
|
640
|
+
</xs:sequence>
|
641
|
+
</xs:complexType>
|
642
|
+
<xs:complexType name="ActionReferenceListType">
|
643
|
+
<xs:annotation>
|
644
|
+
<xs:documentation>The ActionReferenceListType captures a list of Action References.</xs:documentation>
|
645
|
+
</xs:annotation>
|
646
|
+
<xs:sequence>
|
647
|
+
<xs:element maxOccurs="unbounded" name="Action_Reference" type="cybox:ActionReferenceType">
|
648
|
+
<xs:annotation>
|
649
|
+
<xs:documentation>The Action_Reference field specifies a reference to a single Action.</xs:documentation>
|
650
|
+
</xs:annotation>
|
651
|
+
</xs:element>
|
652
|
+
</xs:sequence>
|
653
|
+
</xs:complexType>
|
654
|
+
<xs:complexType name="ObjectReferenceListType">
|
655
|
+
<xs:annotation>
|
656
|
+
<xs:documentation>The ObjectReferenceListType captures a list of references to CybOX Objects. </xs:documentation>
|
657
|
+
</xs:annotation>
|
658
|
+
<xs:sequence>
|
659
|
+
<xs:element maxOccurs="unbounded" name="Object_Reference" type="maecBundle:ObjectReferenceType">
|
660
|
+
<xs:annotation>
|
661
|
+
<xs:documentation>The Object_Reference field specifies a reference to a single CybOX Object.</xs:documentation>
|
662
|
+
</xs:annotation>
|
663
|
+
</xs:element>
|
664
|
+
</xs:sequence>
|
665
|
+
</xs:complexType>
|
666
|
+
<xs:complexType name="CandidateIndicatorType">
|
667
|
+
<xs:annotation>
|
668
|
+
<xs:documentation>The CandidateIndicatorType provides a way of defining a MAEC entity-based Candidate Indicator, which specifies the particular components that may signify the presence of the malware instance on a host system or network.</xs:documentation>
|
669
|
+
</xs:annotation>
|
670
|
+
<xs:sequence>
|
671
|
+
<xs:element minOccurs="0" name="Importance" type="cyboxCommon:ControlledVocabularyStringType">
|
672
|
+
<xs:annotation>
|
673
|
+
<xs:documentation>The Importance field specifies the relative importance of the Candidate Indicator.</xs:documentation>
|
674
|
+
<xs:documentation>This field is implemented through the xsi:type controlled vocabulary extension mechanism. The default vocabulary type is ImportanceTypeVocab-1.0 in the http://maec.mitre.org/default_vocabularies-1 namespace. This type is defined in the maec_default_vocabularies.xsd file or at the URL http://maec.mitre.org/XMLSchema/default_vocabularies/1.0.0/maec_default_vocabularies.xsd.</xs:documentation>
|
675
|
+
</xs:annotation>
|
676
|
+
</xs:element>
|
677
|
+
<xs:element minOccurs="0" name="Numeric_Importance" type="xs:positiveInteger">
|
678
|
+
<xs:annotation>
|
679
|
+
<xs:documentation>The Numeric_Importance field specifies the specific numeric importance of the Candidate Indicator.</xs:documentation>
|
680
|
+
</xs:annotation>
|
681
|
+
</xs:element>
|
682
|
+
<xs:element minOccurs="0" name="Author" type="xs:string">
|
683
|
+
<xs:annotation>
|
684
|
+
<xs:documentation>The Author field specifies the author of the Candidate Indicator.</xs:documentation>
|
685
|
+
</xs:annotation>
|
686
|
+
</xs:element>
|
687
|
+
<xs:element minOccurs="0" name="Description" type="xs:string">
|
688
|
+
<xs:annotation>
|
689
|
+
<xs:documentation>The Description field provides a brief description of the Candidate Indicator.</xs:documentation>
|
690
|
+
</xs:annotation>
|
691
|
+
</xs:element>
|
692
|
+
<xs:element minOccurs="0" name="Malware_Entity" type="maecBundle:MalwareEntityType">
|
693
|
+
<xs:annotation>
|
694
|
+
<xs:documentation>The Malware_Entity field specifies the particular malware entity that the Candidate Indicator is written against, whether it be a malware instance, family, etc.</xs:documentation>
|
695
|
+
</xs:annotation>
|
696
|
+
</xs:element>
|
697
|
+
<xs:element minOccurs="0" name="Composition" type="maecBundle:CandidateIndicatorCompositionType">
|
698
|
+
<xs:annotation>
|
699
|
+
<xs:documentation>The Composition field specifies the actual observables that the Candidate Indicator is composed of, via a reference to a one or more MAEC entities contained in the Bundle.</xs:documentation>
|
700
|
+
</xs:annotation>
|
701
|
+
</xs:element>
|
702
|
+
</xs:sequence>
|
703
|
+
<xs:attribute name="id" type="maecBundle:CandidateIndicatorIDPattern" use="required">
|
704
|
+
<xs:annotation>
|
705
|
+
<xs:documentation>The id field specifies a unique ID for this Candidate Indicator. The ID must follow the pattern defined in the CandidateIndicatorIDPattern simple type.</xs:documentation>
|
706
|
+
</xs:annotation>
|
707
|
+
</xs:attribute>
|
708
|
+
<xs:attribute name="creation_datetime" type="xs:dateTime">
|
709
|
+
<xs:annotation>
|
710
|
+
<xs:documentation>The creation_datetime field specifies the date/time that the Candidate Indicator was created.</xs:documentation>
|
711
|
+
</xs:annotation>
|
712
|
+
</xs:attribute>
|
713
|
+
<xs:attribute name="lastupdate_datetime" type="xs:dateTime">
|
714
|
+
<xs:annotation>
|
715
|
+
<xs:documentation>The lastupdate_datetime field specifies the last date/time that the Candidate Indicator was updated.</xs:documentation>
|
716
|
+
</xs:annotation>
|
717
|
+
</xs:attribute>
|
718
|
+
<xs:attribute name="version" type="xs:string">
|
719
|
+
<xs:annotation>
|
720
|
+
<xs:documentation>The version field specifies the version of the Candidate Indicator.</xs:documentation>
|
721
|
+
</xs:annotation>
|
722
|
+
</xs:attribute>
|
723
|
+
</xs:complexType>
|
724
|
+
<xs:complexType name="CandidateIndicatorListType">
|
725
|
+
<xs:annotation>
|
726
|
+
<xs:documentation>The CandidateIndicatorListType captures a list of Candidate Indicators.</xs:documentation>
|
727
|
+
</xs:annotation>
|
728
|
+
<xs:sequence maxOccurs="1" minOccurs="1">
|
729
|
+
<xs:element maxOccurs="unbounded" name="Candidate_Indicator" type="maecBundle:CandidateIndicatorType">
|
730
|
+
<xs:annotation>
|
731
|
+
<xs:documentation>The Candidate_Indicator field specifies a single Candidate Indicator in the list.</xs:documentation>
|
732
|
+
</xs:annotation>
|
733
|
+
</xs:element>
|
734
|
+
</xs:sequence>
|
735
|
+
</xs:complexType>
|
736
|
+
<xs:complexType name="MalwareEntityType">
|
737
|
+
<xs:annotation>
|
738
|
+
<xs:documentation>The MalwareEntityType provides a mechanism for characterizing the particular entity that an indicator or signature is written against, whether it is a particular malware instance, family, etc.</xs:documentation>
|
739
|
+
</xs:annotation>
|
740
|
+
<xs:sequence>
|
741
|
+
<xs:element minOccurs="0" name="Type" type="cyboxCommon:ControlledVocabularyStringType">
|
742
|
+
<xs:annotation>
|
743
|
+
<xs:documentation>The Type field refers to the specific type of malware entity that the indicator or signature is written against.</xs:documentation>
|
744
|
+
<xs:documentation>This field is implemented through the xsi:type controlled vocabulary extension mechanism. The default vocabulary type is MalwareEntityTypeVocab-1.0 in the http://maec.mitre.org/default_vocabularies-1 namespace. This type is defined in the maec_default_vocabularies.xsd file or at the URL http://maec.mitre.org/XMLSchema/default_vocabularies/1.0.0/maec_default_vocabularies.xsd.</xs:documentation>
|
745
|
+
</xs:annotation>
|
746
|
+
</xs:element>
|
747
|
+
<xs:element minOccurs="0" name="Name" type="xs:string">
|
748
|
+
<xs:annotation>
|
749
|
+
<xs:documentation>The Name field refers to the name of the malware instance, malware family, or malware class that the indicator or signature is written against.</xs:documentation>
|
750
|
+
</xs:annotation>
|
751
|
+
</xs:element>
|
752
|
+
<xs:element minOccurs="0" name="Description" type="xs:string">
|
753
|
+
<xs:annotation>
|
754
|
+
<xs:documentation>The Description field is intended to provide a brief description of the entity that the indicator or signature is written against.</xs:documentation>
|
755
|
+
</xs:annotation>
|
756
|
+
</xs:element>
|
757
|
+
</xs:sequence>
|
758
|
+
</xs:complexType>
|
759
|
+
<xs:complexType name="CollectionsType">
|
760
|
+
<xs:annotation>
|
761
|
+
<xs:documentation>The CollectionsType captures the various types of MAEC entity collections.</xs:documentation>
|
762
|
+
</xs:annotation>
|
763
|
+
<xs:sequence>
|
764
|
+
<xs:element minOccurs="0" name="Behavior_Collections" type="maecBundle:BehaviorCollectionListType">
|
765
|
+
<xs:annotation>
|
766
|
+
<xs:documentation>The Behavior_Collections field captures any collections of Behaviors in the Bundle.</xs:documentation>
|
767
|
+
</xs:annotation>
|
768
|
+
</xs:element>
|
769
|
+
<xs:element minOccurs="0" name="Action_Collections" type="maecBundle:ActionCollectionListType">
|
770
|
+
<xs:annotation>
|
771
|
+
<xs:documentation>The Action_Collections field captures any collections of Actions in the Bundle.</xs:documentation>
|
772
|
+
</xs:annotation>
|
773
|
+
</xs:element>
|
774
|
+
<xs:element minOccurs="0" name="Object_Collections" type="maecBundle:ObjectCollectionListType">
|
775
|
+
<xs:annotation>
|
776
|
+
<xs:documentation>The Objects_Collections field captures any collections of CybOX Objects in the Bundle.</xs:documentation>
|
777
|
+
</xs:annotation>
|
778
|
+
</xs:element>
|
779
|
+
<xs:element minOccurs="0" name="Candidate_Indicator_Collections" type="maecBundle:CandidateIndicatorCollectionListType">
|
780
|
+
<xs:annotation>
|
781
|
+
<xs:documentation>The Candidate_Indicator_Collections field captures any collections of Candidate Indicators in the Bundle.</xs:documentation>
|
782
|
+
</xs:annotation>
|
783
|
+
</xs:element>
|
784
|
+
</xs:sequence>
|
785
|
+
</xs:complexType>
|
786
|
+
<xs:complexType name="BundleReferenceType">
|
787
|
+
<xs:annotation>
|
788
|
+
<xs:documentation>The BundleReferenceType serves as a method for linking to Bundles embedded in other locations.</xs:documentation>
|
789
|
+
</xs:annotation>
|
790
|
+
<xs:attribute name="bundle_idref" type="maecBundle:BundleIDREFPattern" use="required">
|
791
|
+
<xs:annotation>
|
792
|
+
<xs:documentation>The bundle_idref field references the ID of a Bundle contained inside the current MAEC document.</xs:documentation>
|
793
|
+
</xs:annotation>
|
794
|
+
</xs:attribute>
|
795
|
+
</xs:complexType>
|
796
|
+
<xs:complexType name="ProcessTreeType">
|
797
|
+
<xs:annotation>
|
798
|
+
<xs:documentation>The ProcessTreeType captures the process tree for the malware instance, including the parent process and processes spawned by it, along with any Actions initiated by each.</xs:documentation>
|
799
|
+
</xs:annotation>
|
800
|
+
<xs:sequence>
|
801
|
+
<xs:element name="Root_Process" type="maecBundle:ProcessTreeNodeType">
|
802
|
+
<xs:annotation>
|
803
|
+
<xs:documentation>The Root_Process field captures the root process in the process tree.</xs:documentation>
|
804
|
+
</xs:annotation>
|
805
|
+
</xs:element>
|
806
|
+
</xs:sequence>
|
807
|
+
</xs:complexType>
|
808
|
+
<xs:complexType name="ProcessTreeNodeType">
|
809
|
+
<xs:annotation>
|
810
|
+
<xs:documentation>The ProcessTreeNodeType captures a single process, or node, in the process tree. It imports and extends the ProcessObjectType from the CybOX Process Object.</xs:documentation>
|
811
|
+
</xs:annotation>
|
812
|
+
<xs:complexContent>
|
813
|
+
<xs:extension base="ProcessObj:ProcessObjectType">
|
814
|
+
<xs:sequence>
|
815
|
+
<xs:element minOccurs="0" name="Initiated_Actions" type="maecBundle:ActionReferenceListType">
|
816
|
+
<xs:annotation>
|
817
|
+
<xs:documentation>The Initiated_Actions field captures, via references, the actions (found inside the top-level Actions element, or an Action Collection inside the top-level Collections element) initiated by the Process.</xs:documentation>
|
818
|
+
</xs:annotation>
|
819
|
+
</xs:element>
|
820
|
+
<xs:element maxOccurs="unbounded" minOccurs="0" name="Spawned_Process" type="maecBundle:ProcessTreeNodeType">
|
821
|
+
<xs:annotation>
|
822
|
+
<xs:documentation>The Spawned_Process field captures a single child process spawned by this process.</xs:documentation>
|
823
|
+
</xs:annotation>
|
824
|
+
</xs:element>
|
825
|
+
<xs:element maxOccurs="unbounded" minOccurs="0" name="Injected_Process" type="maecBundle:ProcessTreeNodeType">
|
826
|
+
<xs:annotation>
|
827
|
+
<xs:documentation>The Injected_Process field captures a single process that was injected by this process.</xs:documentation>
|
828
|
+
</xs:annotation>
|
829
|
+
</xs:element>
|
830
|
+
</xs:sequence>
|
831
|
+
<xs:attribute name="id" type="maecBundle:ProcessTreeNodeIDPattern" use="required">
|
832
|
+
<xs:annotation>
|
833
|
+
<xs:documentation>The required id field specifies a unique ID for the Process Node. The ID must follow the pattern defined in the ProcessTreeNodeIDPattern simple type.</xs:documentation>
|
834
|
+
</xs:annotation>
|
835
|
+
</xs:attribute>
|
836
|
+
<xs:attribute name="parent_action_idref" type="maecBundle:ActionIDREFPattern">
|
837
|
+
<xs:annotation>
|
838
|
+
<xs:documentation>The parent_action_idref field specifies the id of the action that created or injected this process.</xs:documentation>
|
839
|
+
</xs:annotation>
|
840
|
+
</xs:attribute>
|
841
|
+
</xs:extension>
|
842
|
+
</xs:complexContent>
|
843
|
+
</xs:complexType>
|
844
|
+
<xs:complexType name="CandidateIndicatorCompositionType">
|
845
|
+
<xs:annotation>
|
846
|
+
<xs:documentation>The CandidateIndicatorCompositionType captures the composition of a Candidate Indicator, via references to any corresponding MAEC entities contained in the Bundle.</xs:documentation>
|
847
|
+
</xs:annotation>
|
848
|
+
<xs:sequence>
|
849
|
+
<xs:choice maxOccurs="unbounded">
|
850
|
+
<xs:element minOccurs="0" name="Behavior_Reference" type="maecBundle:BehaviorReferenceType">
|
851
|
+
<xs:annotation>
|
852
|
+
<xs:documentation>The Behavior_Reference field specifies a reference to a single Behavior in the Bundle that is part of the candidate indicator's composition.</xs:documentation>
|
853
|
+
</xs:annotation>
|
854
|
+
</xs:element>
|
855
|
+
<xs:element minOccurs="0" name="Action_Reference" type="cybox:ActionReferenceType">
|
856
|
+
<xs:annotation>
|
857
|
+
<xs:documentation>The Action_Reference field specifies a reference to a single Action in the Bundle that is part of the candidate indicator's composition.</xs:documentation>
|
858
|
+
</xs:annotation>
|
859
|
+
</xs:element>
|
860
|
+
<xs:element minOccurs="0" name="Object_Reference" type="maecBundle:ObjectReferenceType">
|
861
|
+
<xs:annotation>
|
862
|
+
<xs:documentation>The Object_Reference field specifies a reference to a single Object in the Bundle that is part of the candidate indicator's composition.</xs:documentation>
|
863
|
+
</xs:annotation>
|
864
|
+
</xs:element>
|
865
|
+
</xs:choice>
|
866
|
+
<xs:element maxOccurs="unbounded" minOccurs="0" name="Sub_Composition" type="maecBundle:CandidateIndicatorCompositionType">
|
867
|
+
<xs:annotation>
|
868
|
+
<xs:documentation>The Sub_Composition field captures any sub-compositions in this Candidate Indicator, for expressing more complex Candidate Indicators.</xs:documentation>
|
869
|
+
</xs:annotation>
|
870
|
+
</xs:element>
|
871
|
+
</xs:sequence>
|
872
|
+
<xs:attribute name="operator" type="cybox:OperatorTypeEnum">
|
873
|
+
<xs:annotation>
|
874
|
+
<xs:documentation>The operator field specifies the Boolean operator for this level of the Candidate Indicator's composition.</xs:documentation>
|
875
|
+
</xs:annotation>
|
876
|
+
</xs:attribute>
|
877
|
+
</xs:complexType>
|
878
|
+
<xs:complexType name="CandidateIndicatorCollectionType">
|
879
|
+
<xs:annotation>
|
880
|
+
<xs:documentation>The CandidateIndicatorCollectionType provides a mechanism for characterizing collections of Candidate Indicators.</xs:documentation>
|
881
|
+
</xs:annotation>
|
882
|
+
<xs:complexContent>
|
883
|
+
<xs:extension base="maecBundle:BaseCollectionType">
|
884
|
+
<xs:sequence>
|
885
|
+
<xs:element name="Candidate_Indicator_List" type="maecBundle:CandidateIndicatorListType">
|
886
|
+
<xs:annotation>
|
887
|
+
<xs:documentation>The Candidate_Indicator_List field specifies a list of Candidate Indicators that make up the collection.</xs:documentation>
|
888
|
+
</xs:annotation>
|
889
|
+
</xs:element>
|
890
|
+
</xs:sequence>
|
891
|
+
<xs:attribute name="id" type="maecBundle:CandidateIndicatorCollIDPattern" use="required">
|
892
|
+
<xs:annotation>
|
893
|
+
<xs:documentation>The id field specifies a unique ID for this Candidate Indicator Collection. The ID must follow the pattern defined in the CandidateIndicatorCollIDPattern simple type. </xs:documentation>
|
894
|
+
</xs:annotation>
|
895
|
+
</xs:attribute>
|
896
|
+
</xs:extension>
|
897
|
+
</xs:complexContent>
|
898
|
+
</xs:complexType>
|
899
|
+
<xs:complexType name="CandidateIndicatorCollectionListType">
|
900
|
+
<xs:annotation>
|
901
|
+
<xs:documentation>The CandidateIndicatorCollectionListType captures a list of Candidate Indicators.</xs:documentation>
|
902
|
+
</xs:annotation>
|
903
|
+
<xs:sequence>
|
904
|
+
<xs:element maxOccurs="unbounded" name="Candidate_Indicator_Collection" type="maecBundle:CandidateIndicatorCollectionType">
|
905
|
+
<xs:annotation>
|
906
|
+
<xs:documentation>The Candidate_Indicator_Collection field specifies a single collection of Candidate Indicators.</xs:documentation>
|
907
|
+
</xs:annotation>
|
908
|
+
</xs:element>
|
909
|
+
</xs:sequence>
|
910
|
+
</xs:complexType>
|
911
|
+
<xs:complexType name="BehaviorCollectionListType">
|
912
|
+
<xs:annotation>
|
913
|
+
<xs:documentation>The BehaviorCollectionListType captures a list of Behaviors Collections.</xs:documentation>
|
914
|
+
</xs:annotation>
|
915
|
+
<xs:sequence>
|
916
|
+
<xs:element maxOccurs="unbounded" name="Behavior_Collection" type="maecBundle:BehaviorCollectionType">
|
917
|
+
<xs:annotation>
|
918
|
+
<xs:documentation>The Behavior_Collection field specifies a single collection of Behaviors in the Bundle.</xs:documentation>
|
919
|
+
</xs:annotation>
|
920
|
+
</xs:element>
|
921
|
+
</xs:sequence>
|
922
|
+
</xs:complexType>
|
923
|
+
<xs:complexType name="ActionCollectionListType">
|
924
|
+
<xs:annotation>
|
925
|
+
<xs:documentation>The ActionCollectionListType captures a list of Actions Collections.</xs:documentation>
|
926
|
+
</xs:annotation>
|
927
|
+
<xs:sequence>
|
928
|
+
<xs:element maxOccurs="unbounded" name="Action_Collection" type="maecBundle:ActionCollectionType">
|
929
|
+
<xs:annotation>
|
930
|
+
<xs:documentation>The Action_Collection field specifies a single collection of Actions in the Bundle.</xs:documentation>
|
931
|
+
</xs:annotation>
|
932
|
+
</xs:element>
|
933
|
+
</xs:sequence>
|
934
|
+
</xs:complexType>
|
935
|
+
<xs:complexType name="ObjectCollectionListType">
|
936
|
+
<xs:annotation>
|
937
|
+
<xs:documentation>The ObjectCollectionListType captures a list of Object Collections.</xs:documentation>
|
938
|
+
</xs:annotation>
|
939
|
+
<xs:sequence>
|
940
|
+
<xs:element maxOccurs="unbounded" name="Object_Collection" type="maecBundle:ObjectCollectionType">
|
941
|
+
<xs:annotation>
|
942
|
+
<xs:documentation>The Object_Collection field specifies a single collection of CybOX Objects.</xs:documentation>
|
943
|
+
</xs:annotation>
|
944
|
+
</xs:element>
|
945
|
+
</xs:sequence>
|
946
|
+
</xs:complexType>
|
947
|
+
<xs:complexType name="AVClassificationType">
|
948
|
+
<xs:annotation>
|
949
|
+
<xs:documentation>The AVClassificationType captures information on AV scanner classifications for the malware instance object captured in the Bundle or Package.</xs:documentation>
|
950
|
+
</xs:annotation>
|
951
|
+
<xs:complexContent>
|
952
|
+
<xs:extension base="cyboxCommon:ToolInformationType">
|
953
|
+
<xs:sequence>
|
954
|
+
<xs:element minOccurs="0" name="Engine_Version" type="xs:string">
|
955
|
+
<xs:annotation>
|
956
|
+
<xs:documentation>The Engine_Version field captures the version of the AV engine used by the AV scanner tool that assigned the classification to the malware instance object.</xs:documentation>
|
957
|
+
</xs:annotation>
|
958
|
+
</xs:element>
|
959
|
+
<xs:element minOccurs="0" name="Definition_Version" type="xs:string">
|
960
|
+
<xs:annotation>
|
961
|
+
<xs:documentation>The Definition_Version field captures the version of the AV definitions used by the AV scanner tool that assigned the classification to the malware instance object.</xs:documentation>
|
962
|
+
</xs:annotation>
|
963
|
+
</xs:element>
|
964
|
+
<xs:element minOccurs="0" name="Classification_Name" type="xs:string">
|
965
|
+
<xs:annotation>
|
966
|
+
<xs:documentation>The Classification_Name field captures the classification assigned to the malware instance object by the AV scanner tool characterized in the Company_Name and Product_Name fields.</xs:documentation>
|
967
|
+
</xs:annotation>
|
968
|
+
</xs:element>
|
969
|
+
</xs:sequence>
|
970
|
+
</xs:extension>
|
971
|
+
</xs:complexContent>
|
972
|
+
</xs:complexType>
|
973
|
+
<xs:simpleType name="BundleIDPattern">
|
974
|
+
<xs:annotation>
|
975
|
+
<xs:documentation>The BundleIDPattern defines the format for acceptable Bundle ids. A dash-delimited format is used with the id starting with the word maec followed by a unique string, followed by the three letter code 'bnd', and ending with an integer.</xs:documentation>
|
976
|
+
</xs:annotation>
|
977
|
+
<xs:restriction base="xs:ID">
|
978
|
+
<xs:pattern value="maec-[A-Za-z0-9_\-\.]+-bnd-[1-9][0-9]*"/>
|
979
|
+
</xs:restriction>
|
980
|
+
</xs:simpleType>
|
981
|
+
<xs:simpleType name="BundleIDREFPattern">
|
982
|
+
<xs:annotation>
|
983
|
+
<xs:documentation>The BundleIDREFPattern defines the format for acceptable Bundle idrefs. A dash-delimited format is used with the id starting with the word maec followed by a unique string, followed by the three letter code 'bnd', and ending with an integer.</xs:documentation>
|
984
|
+
</xs:annotation>
|
985
|
+
<xs:restriction base="xs:IDREF">
|
986
|
+
<xs:pattern value="maec-[A-Za-z0-9_\-\.]+-bnd-[1-9][0-9]*"/>
|
987
|
+
</xs:restriction>
|
988
|
+
</xs:simpleType>
|
989
|
+
<xs:simpleType name="BehaviorIDPattern">
|
990
|
+
<xs:annotation>
|
991
|
+
<xs:documentation>The BehaviorIDPattern defines the format for acceptable Behavior ids. A dash-delimited format is used with the id starting with the word maec followed by a unique string, followed by the three letter code 'bhv', and ending with an integer.</xs:documentation>
|
992
|
+
</xs:annotation>
|
993
|
+
<xs:restriction base="xs:ID">
|
994
|
+
<xs:pattern value="maec-[A-Za-z0-9_\-\.]+-bhv-[1-9][0-9]*"/>
|
995
|
+
</xs:restriction>
|
996
|
+
</xs:simpleType>
|
997
|
+
<xs:simpleType name="BehaviorIDREFPattern">
|
998
|
+
<xs:annotation>
|
999
|
+
<xs:documentation>The BehaviorIDPattern defines the format for acceptable Behavior idrefs. A dash-delimited format is used with the id starting with the word maec followed by a unique string, followed by the three letter code 'bhv', and ending with an integer.</xs:documentation>
|
1000
|
+
</xs:annotation>
|
1001
|
+
<xs:restriction base="xs:IDREF">
|
1002
|
+
<xs:pattern value="maec-[A-Za-z0-9_\-\.]+-bhv-[1-9][0-9]*"/>
|
1003
|
+
</xs:restriction>
|
1004
|
+
</xs:simpleType>
|
1005
|
+
<xs:simpleType name="ActionIDREFPattern">
|
1006
|
+
<xs:annotation>
|
1007
|
+
<xs:documentation>The ActionIDREFPattern defines the format for acceptable Action idrefs. A dash-delimited format is used with the id starting with the word maec followed by a unique string, followed by the three letter code 'act', and ending with an integer.</xs:documentation>
|
1008
|
+
</xs:annotation>
|
1009
|
+
<xs:restriction base="xs:string">
|
1010
|
+
<xs:pattern value="maec-[A-Za-z0-9_\-\.]+-act-[1-9][0-9]*"/>
|
1011
|
+
</xs:restriction>
|
1012
|
+
</xs:simpleType>
|
1013
|
+
<xs:simpleType name="ObjectIDPattern">
|
1014
|
+
<xs:annotation>
|
1015
|
+
<xs:documentation>The ObjectIDPattern simple type defines the format for acceptable MAEC Object ids. A dash-delimited format is used with the id starting with the word maec followed by a unique string, followed by the three letter code 'obj', and ending with an integer.</xs:documentation>
|
1016
|
+
</xs:annotation>
|
1017
|
+
<xs:restriction base="xs:ID">
|
1018
|
+
<xs:pattern value="maec-[A-Za-z0-9_\-\.]+-obj-[1-9][0-9]*"/>
|
1019
|
+
</xs:restriction>
|
1020
|
+
</xs:simpleType>
|
1021
|
+
<xs:simpleType name="ActionImplementationIDPattern">
|
1022
|
+
<xs:annotation>
|
1023
|
+
<xs:documentation>The ActionImpIDPattern defines the format for acceptable Action Implementation ids. A dash-delimited format is used with the id starting with the word maec followed by a unique string, followed by the three letter code 'imp', and ending with an integer.</xs:documentation>
|
1024
|
+
</xs:annotation>
|
1025
|
+
<xs:restriction base="xs:ID">
|
1026
|
+
<xs:pattern value="maec-[A-Za-z0-9_\-\.]+-imp-[1-9][0-9]*"/>
|
1027
|
+
</xs:restriction>
|
1028
|
+
</xs:simpleType>
|
1029
|
+
<xs:simpleType name="CandidateIndicatorIDPattern">
|
1030
|
+
<xs:annotation>
|
1031
|
+
<xs:documentation>The CandidateIndicatorIDPattern simple type defines the format for acceptable Candidate Indicator IDs. A dash-delimited format is used with the id starting with the word maec followed by a unique string, followed by the three letter code 'ind', and ending with an integer.</xs:documentation>
|
1032
|
+
</xs:annotation>
|
1033
|
+
<xs:restriction base="xs:ID">
|
1034
|
+
<xs:pattern value="maec-[A-Za-z0-9_\-\.]+-ind-[1-9][0-9]*"/>
|
1035
|
+
</xs:restriction>
|
1036
|
+
</xs:simpleType>
|
1037
|
+
<xs:simpleType name="ActionCollIDPattern">
|
1038
|
+
<xs:annotation>
|
1039
|
+
<xs:documentation>The ActionCollIDPattern defines the format for acceptable Action Collection ids. A dash-delimited format is used with the id starting with the word maec followed by a unique string, followed by the four letter code 'actc', and ending with an integer.</xs:documentation>
|
1040
|
+
</xs:annotation>
|
1041
|
+
<xs:restriction base="xs:ID">
|
1042
|
+
<xs:pattern value="maec-[A-Za-z0-9_\-\.]+-actc-[1-9][0-9]*"/>
|
1043
|
+
</xs:restriction>
|
1044
|
+
</xs:simpleType>
|
1045
|
+
<xs:simpleType name="BehaviorCollIDPattern">
|
1046
|
+
<xs:annotation>
|
1047
|
+
<xs:documentation>The BehaviorCollIDPattern defines the format for acceptable Behavior Collection ids. A dash-delimited format is used with the id starting with the word maec followed by a unique string, followed by the four letter code 'bhvc', and ending with an integer.</xs:documentation>
|
1048
|
+
</xs:annotation>
|
1049
|
+
<xs:restriction base="xs:ID">
|
1050
|
+
<xs:pattern value="maec-[A-Za-z0-9_\-\.]+-bhvc-[1-9][0-9]*"/>
|
1051
|
+
</xs:restriction>
|
1052
|
+
</xs:simpleType>
|
1053
|
+
<xs:simpleType name="ObjectCollIDPattern">
|
1054
|
+
<xs:annotation>
|
1055
|
+
<xs:documentation>The ObjectCollIDPattern simple type defines the format for acceptable Object Collection ids. A dash-delimited format is used with the id starting with the word maec followed by a unique string, followed by the four letter code 'objc', and ending with an integer.</xs:documentation>
|
1056
|
+
</xs:annotation>
|
1057
|
+
<xs:restriction base="xs:ID">
|
1058
|
+
<xs:pattern value="maec-[A-Za-z0-9_\-\.]+-objc-[1-9][0-9]*"/>
|
1059
|
+
</xs:restriction>
|
1060
|
+
</xs:simpleType>
|
1061
|
+
<xs:simpleType name="CandidateIndicatorCollIDPattern">
|
1062
|
+
<xs:annotation>
|
1063
|
+
<xs:documentation>The IndicatorCollIDPattern simple type defines the format for acceptable Candidate Indicator Collection IDs. A dash-delimited format is used with the id starting with the word maec followed by a unique string, followed by the four letter code 'indc', and ending with an integer.</xs:documentation>
|
1064
|
+
</xs:annotation>
|
1065
|
+
<xs:restriction base="xs:ID">
|
1066
|
+
<xs:pattern value="maec-[A-Za-z0-9_\-\.]+-indc-[1-9][0-9]*"/>
|
1067
|
+
</xs:restriction>
|
1068
|
+
</xs:simpleType>
|
1069
|
+
<xs:simpleType name="ProcessTreeNodeIDPattern">
|
1070
|
+
<xs:annotation>
|
1071
|
+
<xs:documentation>The ProcessTreeNodeIDPattern defines the format for acceptable Process Tree Node ids. A dash-delimited format is used with the id starting with the word maec followed by a unique string, followed by the four letter code 'pro', and ending with an integer.</xs:documentation>
|
1072
|
+
</xs:annotation>
|
1073
|
+
<xs:restriction base="xs:ID">
|
1074
|
+
<xs:pattern value="maec-[A-Za-z0-9_\-\.]+-pro-[1-9][0-9]*"/>
|
1075
|
+
</xs:restriction>
|
1076
|
+
</xs:simpleType>
|
1077
|
+
<xs:simpleType name="ActionEquivalenceIDREFPattern">
|
1078
|
+
<xs:annotation>
|
1079
|
+
<xs:documentation>The ActionEquivalenceIDREFPattern defines the format for acceptable MAEC Action Equivalency idrefs. A dash-delimited format is used with the id starting with the word maec followed by a unique string, followed by the five letter code 'acteq', and ending with an integer.</xs:documentation>
|
1080
|
+
</xs:annotation>
|
1081
|
+
<xs:restriction base="xs:IDREF">
|
1082
|
+
<xs:pattern value="maec-[A-Za-z0-9_\-\.]+-acteq-[1-9][0-9]*"/>
|
1083
|
+
</xs:restriction>
|
1084
|
+
</xs:simpleType>
|
1085
|
+
<xs:simpleType name="ActionImplementationTypeEnum">
|
1086
|
+
<xs:annotation>
|
1087
|
+
<xs:documentation>The ActionImplementationTypeEnum represents an enumeration of action implementation types.</xs:documentation>
|
1088
|
+
</xs:annotation>
|
1089
|
+
<xs:restriction base="xs:string">
|
1090
|
+
<xs:enumeration value="api call">
|
1091
|
+
<xs:annotation>
|
1092
|
+
<xs:documentation>The api call value specifies that the action was implemented using some particular API call, details of which may be captured in the API_Call element.</xs:documentation>
|
1093
|
+
</xs:annotation>
|
1094
|
+
</xs:enumeration>
|
1095
|
+
<xs:enumeration value="code">
|
1096
|
+
<xs:annotation>
|
1097
|
+
<xs:documentation>The Code value specifies that the action was implemented using some particular code snippet, details of which may be captured in the Code element</xs:documentation>
|
1098
|
+
</xs:annotation>
|
1099
|
+
</xs:enumeration>
|
1100
|
+
</xs:restriction>
|
1101
|
+
</xs:simpleType>
|
1102
|
+
<xs:simpleType name="BundleContentTypeEnum">
|
1103
|
+
<xs:annotation>
|
1104
|
+
<xs:documentation>The BundleContentTypeEnum is a non-exhaustive enumeration of the general types of content that a Bundle can contain.</xs:documentation>
|
1105
|
+
</xs:annotation>
|
1106
|
+
<xs:restriction base="xs:string">
|
1107
|
+
<xs:enumeration value="dynamic analysis tool output">
|
1108
|
+
<xs:annotation>
|
1109
|
+
<xs:documentation>The dynamic analysis tool output value specifies that the Bundle primarily captures some form of dynamic analysis tool output, such as from a sandbox.</xs:documentation>
|
1110
|
+
</xs:annotation>
|
1111
|
+
</xs:enumeration>
|
1112
|
+
<xs:enumeration value="static analysis tool output">
|
1113
|
+
<xs:annotation>
|
1114
|
+
<xs:documentation>The static analysis tool output value specifies that the Bundle primarily captures some form of static analysis tool output, such as from a packer detection tool.</xs:documentation>
|
1115
|
+
</xs:annotation>
|
1116
|
+
</xs:enumeration>
|
1117
|
+
<xs:enumeration value="manual analysis output">
|
1118
|
+
<xs:annotation>
|
1119
|
+
<xs:documentation>The manual analysis output value specifies that the Bundle primarily captures some form of manual analysis output, which may or may not involve the use of tools.</xs:documentation>
|
1120
|
+
</xs:annotation>
|
1121
|
+
</xs:enumeration>
|
1122
|
+
<xs:enumeration value="extracted from subject">
|
1123
|
+
<xs:annotation>
|
1124
|
+
<xs:documentation>The extracted from subject value specifies that the Bundle primarily captures some data that extracted from the Malware Subject, such as some PE Header fields.</xs:documentation>
|
1125
|
+
</xs:annotation>
|
1126
|
+
</xs:enumeration>
|
1127
|
+
<xs:enumeration value="mixed">
|
1128
|
+
<xs:annotation>
|
1129
|
+
<xs:documentation>The mixed value specifies that the Bundle captures some mixed forms of analysis or tool output for the Malware Subject, such as both dynamic and static analysis tool output.</xs:documentation>
|
1130
|
+
</xs:annotation>
|
1131
|
+
</xs:enumeration>
|
1132
|
+
<xs:enumeration value="other">
|
1133
|
+
<xs:annotation>
|
1134
|
+
<xs:documentation>The other value specifies that the Bundle captures some other form of analysis or tool output that is not represented by the other enumeration values.</xs:documentation>
|
1135
|
+
</xs:annotation>
|
1136
|
+
</xs:enumeration>
|
1137
|
+
</xs:restriction>
|
1138
|
+
</xs:simpleType>
|
1139
|
+
</xs:schema>
|