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,114 @@
|
|
1
|
+
<?xml version="1.0" encoding="utf-8"?>
|
2
|
+
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:LibraryObj="http://cybox.mitre.org/objects#LibraryObject-2" xmlns:cyboxCommon="http://cybox.mitre.org/common-2" targetNamespace="http://cybox.mitre.org/objects#LibraryObject-2" elementFormDefault="qualified" attributeFormDefault="unqualified" version="2.0.1">
|
3
|
+
<xs:annotation>
|
4
|
+
<xs:documentation>This schema was originally developed by The MITRE Corporation. The CybOX XML Schema implementation is maintained by The MITRE Corporation and developed by the open CybOX Community. For more information, including how to get involved in the effort and how to submit change requests, please visit the CybOX website at http://cybox.mitre.org. </xs:documentation>
|
5
|
+
<xs:appinfo>
|
6
|
+
<schema>Library_Object</schema>
|
7
|
+
<version>2.0.1</version>
|
8
|
+
<date>09/30/2013 9:00:00 AM</date>
|
9
|
+
<short_description>The following specifies the fields and types that compose this defined CybOX Object type. Each defined object is an extension of the abstract ObjectPropertiesType, defined in CybOX Common. For more information on this extension mechanism, please see the CybOX Specification. This document is intended for developers and assumes some familiarity with XML. </short_description>
|
10
|
+
<terms_of_use>Copyright (c) 2012-2013, The MITRE Corporation. All rights reserved. The contents of this file are subject to the terms of the CybOX License located at http://cybox.mitre.org/about/termsofuse.html. See the CybOX License for the specific language governing permissions and limitations for use of this schema. When distributing copies of the CybOX Schema, this license header must be included. </terms_of_use>
|
11
|
+
</xs:appinfo>
|
12
|
+
</xs:annotation>
|
13
|
+
<xs:import namespace="http://cybox.mitre.org/common-2" schemaLocation="../cybox_common.xsd"/>
|
14
|
+
<xs:element name="Library" type="LibraryObj:LibraryObjectType" nillable="true">
|
15
|
+
<xs:annotation>
|
16
|
+
<xs:documentation>The Library object is intended to characterize software libraries.</xs:documentation>
|
17
|
+
</xs:annotation>
|
18
|
+
</xs:element>
|
19
|
+
<xs:complexType name="LibraryObjectType" mixed="false">
|
20
|
+
<xs:annotation>
|
21
|
+
<xs:documentation>The LibraryObjectType type is intended to characterize software libraries.</xs:documentation>
|
22
|
+
</xs:annotation>
|
23
|
+
<xs:complexContent>
|
24
|
+
<xs:extension base="cyboxCommon:ObjectPropertiesType">
|
25
|
+
<xs:sequence>
|
26
|
+
<xs:element name="Name" type="cyboxCommon:StringObjectPropertyType" minOccurs="0" maxOccurs="1">
|
27
|
+
<xs:annotation>
|
28
|
+
<xs:documentation>The Name field specifies the full file name of the library. Example: abcd.dll.</xs:documentation>
|
29
|
+
</xs:annotation>
|
30
|
+
</xs:element>
|
31
|
+
<xs:element name="Path" type="cyboxCommon:StringObjectPropertyType" minOccurs="0" maxOccurs="1">
|
32
|
+
<xs:annotation>
|
33
|
+
<xs:documentation>The Path field specifies the fully-qualified path to the library.</xs:documentation>
|
34
|
+
</xs:annotation>
|
35
|
+
</xs:element>
|
36
|
+
<xs:element name="Size" type="cyboxCommon:UnsignedLongObjectPropertyType" nillable="true" minOccurs="0" maxOccurs="1">
|
37
|
+
<xs:annotation>
|
38
|
+
<xs:documentation>The Size field specifies the size of the library, in bytes.</xs:documentation>
|
39
|
+
</xs:annotation>
|
40
|
+
</xs:element>
|
41
|
+
<xs:element name="Type" type="LibraryObj:LibraryType" minOccurs="0">
|
42
|
+
<xs:annotation>
|
43
|
+
<xs:documentation>The Type field specifies the type of library being characterized.</xs:documentation>
|
44
|
+
</xs:annotation>
|
45
|
+
</xs:element>
|
46
|
+
<xs:element name="Version" type="cyboxCommon:StringObjectPropertyType" minOccurs="0">
|
47
|
+
<xs:annotation>
|
48
|
+
<xs:documentation>The Version field specifies the library version.</xs:documentation>
|
49
|
+
</xs:annotation>
|
50
|
+
</xs:element>
|
51
|
+
<xs:element name="Base_Address" type="cyboxCommon:HexBinaryObjectPropertyType" nillable="true" minOccurs="0">
|
52
|
+
<xs:annotation>
|
53
|
+
<xs:documentation>The Base_Address field specifies the default virtual address into which the library is loaded.</xs:documentation>
|
54
|
+
</xs:annotation>
|
55
|
+
</xs:element>
|
56
|
+
<xs:element name="Extracted_Features" type="cyboxCommon:ExtractedFeaturesType" minOccurs="0">
|
57
|
+
<xs:annotation>
|
58
|
+
<xs:documentation>A description of features extracted from this file.</xs:documentation>
|
59
|
+
</xs:annotation>
|
60
|
+
</xs:element>
|
61
|
+
</xs:sequence>
|
62
|
+
</xs:extension>
|
63
|
+
</xs:complexContent>
|
64
|
+
</xs:complexType>
|
65
|
+
<xs:complexType name="LibraryType">
|
66
|
+
<xs:annotation>
|
67
|
+
<xs:documentation>LibraryType specifies library types, via a union of the LibraryTypeEnum type and the atomic xs:string type. Its base type is the CybOX Core BaseObjectPropertyType, for permitting complex (i.e. regular-expression based) specifications.</xs:documentation>
|
68
|
+
</xs:annotation>
|
69
|
+
<xs:simpleContent>
|
70
|
+
<xs:restriction base="cyboxCommon:BaseObjectPropertyType">
|
71
|
+
<xs:simpleType>
|
72
|
+
<xs:union memberTypes="LibraryObj:LibraryTypeEnum xs:string"/>
|
73
|
+
</xs:simpleType>
|
74
|
+
<xs:attribute name="datatype" type="cyboxCommon:DatatypeEnum" fixed="string">
|
75
|
+
<xs:annotation>
|
76
|
+
<xs:documentation>This attribute is optional and specifies the expected type for the value of the specified property.</xs:documentation>
|
77
|
+
</xs:annotation>
|
78
|
+
</xs:attribute>
|
79
|
+
</xs:restriction>
|
80
|
+
</xs:simpleContent>
|
81
|
+
</xs:complexType>
|
82
|
+
<xs:simpleType name="LibraryTypeEnum">
|
83
|
+
<xs:annotation>
|
84
|
+
<xs:documentation>The LibraryTypeEnum type is an enumeration of library types.</xs:documentation>
|
85
|
+
</xs:annotation>
|
86
|
+
<xs:restriction base="xs:string">
|
87
|
+
<xs:enumeration value="Dynamic">
|
88
|
+
<xs:annotation>
|
89
|
+
<xs:documentation>Indicates a dynamic library.</xs:documentation>
|
90
|
+
</xs:annotation>
|
91
|
+
</xs:enumeration>
|
92
|
+
<xs:enumeration value="Static">
|
93
|
+
<xs:annotation>
|
94
|
+
<xs:documentation>Indicates a static library.</xs:documentation>
|
95
|
+
</xs:annotation>
|
96
|
+
</xs:enumeration>
|
97
|
+
<xs:enumeration value="Remote">
|
98
|
+
<xs:annotation>
|
99
|
+
<xs:documentation>Indicates a remote library.</xs:documentation>
|
100
|
+
</xs:annotation>
|
101
|
+
</xs:enumeration>
|
102
|
+
<xs:enumeration value="Shared">
|
103
|
+
<xs:annotation>
|
104
|
+
<xs:documentation>Indicates a shared library.</xs:documentation>
|
105
|
+
</xs:annotation>
|
106
|
+
</xs:enumeration>
|
107
|
+
<xs:enumeration value="Other">
|
108
|
+
<xs:annotation>
|
109
|
+
<xs:documentation>Indicates a different type of library than those listed above.</xs:documentation>
|
110
|
+
</xs:annotation>
|
111
|
+
</xs:enumeration>
|
112
|
+
</xs:restriction>
|
113
|
+
</xs:simpleType>
|
114
|
+
</xs:schema>
|
@@ -0,0 +1,36 @@
|
|
1
|
+
<?xml version="1.0" encoding="utf-8"?>
|
2
|
+
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:URIObj="http://cybox.mitre.org/objects#URIObject-2" xmlns:cyboxCommon="http://cybox.mitre.org/common-2" targetNamespace="http://cybox.mitre.org/objects#LinkObject-1" elementFormDefault="qualified" attributeFormDefault="unqualified" version="1.0.1" xmlns:LinkObj="http://cybox.mitre.org/objects#LinkObject-1">
|
3
|
+
<xs:annotation>
|
4
|
+
<xs:documentation>This schema was originally developed by The MITRE Corporation. The CybOX XML Schema implementation is maintained by The MITRE Corporation and developed by the open CybOX Community. For more information, including how to get involved in the effort and how to submit change requests, please visit the CybOX website at http://cybox.mitre.org. </xs:documentation>
|
5
|
+
<xs:appinfo>
|
6
|
+
<schema>Link_Object</schema>
|
7
|
+
<version>1.0.1</version>
|
8
|
+
<date>09/30/2013 9:00:00 AM</date>
|
9
|
+
<short_description>The following specifies the fields and types that compose this defined CybOX Object type. Each defined object is an extension of the abstract ObjectPropertiesType, defined in CybOX Common. For more information on this extension mechanism, please see the CybOX Specification. This document is intended for developers and assumes some familiarity with XML. </short_description>
|
10
|
+
<terms_of_use>Copyright (c) 2012-2013, The MITRE Corporation. All rights reserved. The contents of this file are subject to the terms of the CybOX License located at http://cybox.mitre.org/about/termsofuse.html. See the CybOX License for the specific language governing permissions and limitations for use of this schema. When distributing copies of the CybOX Schema, this license header must be included. </terms_of_use>
|
11
|
+
</xs:appinfo>
|
12
|
+
</xs:annotation>
|
13
|
+
<xs:import namespace="http://cybox.mitre.org/objects#URIObject-2" schemaLocation="URI_Object.xsd"/>
|
14
|
+
<xs:import namespace="http://cybox.mitre.org/common-2" schemaLocation="../cybox_common.xsd"/>
|
15
|
+
<xs:element name="Link" type="LinkObj:LinkObjectType">
|
16
|
+
<xs:annotation>
|
17
|
+
<xs:documentation>The Link Object is intended to characterize links, such as those on a webpage or in an e-mail message.</xs:documentation>
|
18
|
+
</xs:annotation>
|
19
|
+
</xs:element>
|
20
|
+
<xs:complexType name="LinkObjectType">
|
21
|
+
<xs:annotation>
|
22
|
+
<xs:documentation>The Link Object is intended to characterize links, such as those on a webpage or in an e-mail message.</xs:documentation>
|
23
|
+
</xs:annotation>
|
24
|
+
<xs:complexContent>
|
25
|
+
<xs:extension base="URIObj:URIObjectType">
|
26
|
+
<xs:sequence>
|
27
|
+
<xs:element name="URL_Label" type="cyboxCommon:StringObjectPropertyType" minOccurs="0">
|
28
|
+
<xs:annotation>
|
29
|
+
<xs:documentation>The URL_Label field specifies the label of the link.</xs:documentation>
|
30
|
+
</xs:annotation>
|
31
|
+
</xs:element>
|
32
|
+
</xs:sequence>
|
33
|
+
</xs:extension>
|
34
|
+
</xs:complexContent>
|
35
|
+
</xs:complexType>
|
36
|
+
</xs:schema>
|
@@ -0,0 +1,119 @@
|
|
1
|
+
<?xml version="1.0" encoding="utf-8"?>
|
2
|
+
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:LinuxPackageObj="http://cybox.mitre.org/objects#LinuxPackageObject-2" xmlns:cyboxCommon="http://cybox.mitre.org/common-2" targetNamespace="http://cybox.mitre.org/objects#LinuxPackageObject-2" elementFormDefault="qualified" attributeFormDefault="unqualified" version="2.0.1">
|
3
|
+
<xs:annotation>
|
4
|
+
<xs:documentation>This schema was originally developed by The MITRE Corporation. The CybOX XML Schema implementation is maintained by The MITRE Corporation and developed by the open CybOX Community. For more information, including how to get involved in the effort and how to submit change requests, please visit the CybOX website at http://cybox.mitre.org. </xs:documentation>
|
5
|
+
<xs:appinfo>
|
6
|
+
<schema>Linux_Package_Object</schema>
|
7
|
+
<version>2.0.1</version>
|
8
|
+
<date>09/30/2013 9:00:00 AM</date>
|
9
|
+
<short_description>The following specifies the fields and types that compose this defined CybOX Object type. Each defined object is an extension of the abstract ObjectPropertiesType, defined in CybOX Common. For more information on this extension mechanism, please see the CybOX Specification. This document is intended for developers and assumes some familiarity with XML. </short_description>
|
10
|
+
<terms_of_use>Copyright (c) 2012-2013, The MITRE Corporation. All rights reserved. The contents of this file are subject to the terms of the CybOX License located at http://cybox.mitre.org/about/termsofuse.html. See the CybOX License for the specific language governing permissions and limitations for use of this schema. When distributing copies of the CybOX Schema, this license header must be included. </terms_of_use>
|
11
|
+
</xs:appinfo>
|
12
|
+
</xs:annotation>
|
13
|
+
<xs:import namespace="http://cybox.mitre.org/common-2" schemaLocation="../cybox_common.xsd"/>
|
14
|
+
<xs:element name="Linux_Package" type="LinuxPackageObj:LinuxPackageObjectType">
|
15
|
+
<xs:annotation>
|
16
|
+
<xs:documentation>The Linux_Package object is intended to characterize a Linux package.</xs:documentation>
|
17
|
+
</xs:annotation>
|
18
|
+
</xs:element>
|
19
|
+
<xs:complexType name="LinuxPackageObjectType" mixed="false">
|
20
|
+
<xs:annotation>
|
21
|
+
<xs:documentation>The LinuxPackageObjectType type is intended to characterize Linux packages.</xs:documentation>
|
22
|
+
</xs:annotation>
|
23
|
+
<xs:complexContent>
|
24
|
+
<xs:extension base="cyboxCommon:ObjectPropertiesType">
|
25
|
+
<xs:sequence>
|
26
|
+
<xs:element name="Architecture" type="LinuxPackageObj:ArchitectureType" minOccurs="0">
|
27
|
+
<xs:annotation>
|
28
|
+
<xs:documentation>The Architecture field specifies the architecture for which the package was built.</xs:documentation>
|
29
|
+
</xs:annotation>
|
30
|
+
</xs:element>
|
31
|
+
<xs:element name="Category" type="cyboxCommon:StringObjectPropertyType" minOccurs="0">
|
32
|
+
<xs:annotation>
|
33
|
+
<xs:documentation>The Category field specifies the categories under which a package may be displayed.</xs:documentation>
|
34
|
+
</xs:annotation>
|
35
|
+
</xs:element>
|
36
|
+
<xs:element name="Description" type="cyboxCommon:StringObjectPropertyType" minOccurs="0">
|
37
|
+
<xs:annotation>
|
38
|
+
<xs:documentation>The Description field specifies an in-depth description of a package.</xs:documentation>
|
39
|
+
</xs:annotation>
|
40
|
+
</xs:element>
|
41
|
+
<xs:element name="Epoch" type="cyboxCommon:StringObjectPropertyType" minOccurs="0">
|
42
|
+
<xs:annotation>
|
43
|
+
<xs:documentation>The Epoch field specifies the epoch number of the package.</xs:documentation>
|
44
|
+
</xs:annotation>
|
45
|
+
</xs:element>
|
46
|
+
<xs:element name="EVR" type="cyboxCommon:StringObjectPropertyType" minOccurs="0">
|
47
|
+
<xs:annotation>
|
48
|
+
<xs:documentation>The EVR field specifies the epoch, version, and release fields of the package as a single version string.</xs:documentation>
|
49
|
+
</xs:annotation>
|
50
|
+
</xs:element>
|
51
|
+
<xs:element name="Name" type="cyboxCommon:StringObjectPropertyType" minOccurs="1" maxOccurs="1">
|
52
|
+
<xs:annotation>
|
53
|
+
<xs:documentation>The Name field specifies the name of the package.</xs:documentation>
|
54
|
+
</xs:annotation>
|
55
|
+
</xs:element>
|
56
|
+
<xs:element name="Release" type="cyboxCommon:StringObjectPropertyType" minOccurs="0">
|
57
|
+
<xs:annotation>
|
58
|
+
<xs:documentation>The Release field specifies the release number of the package build.</xs:documentation>
|
59
|
+
</xs:annotation>
|
60
|
+
</xs:element>
|
61
|
+
<xs:element name="Vendor" type="cyboxCommon:StringObjectPropertyType" minOccurs="0">
|
62
|
+
<xs:annotation>
|
63
|
+
<xs:documentation>The Vendor field specifies the vendor that holds the software copyright of the package.</xs:documentation>
|
64
|
+
</xs:annotation>
|
65
|
+
</xs:element>
|
66
|
+
<xs:element name="Version" type="cyboxCommon:StringObjectPropertyType" minOccurs="0">
|
67
|
+
<xs:annotation>
|
68
|
+
<xs:documentation>The Version field specifies the version number of the package build.</xs:documentation>
|
69
|
+
</xs:annotation>
|
70
|
+
</xs:element>
|
71
|
+
</xs:sequence>
|
72
|
+
</xs:extension>
|
73
|
+
</xs:complexContent>
|
74
|
+
</xs:complexType>
|
75
|
+
<xs:complexType name="ArchitectureType">
|
76
|
+
<xs:annotation>
|
77
|
+
<xs:documentation>ArchitectureType specifies CPU architecture types, via a union of the ArchitectureTypeEnum type and the atomic xs:string type. Its base type is the CybOX Core BaseObjectPropertyType, for permitting complex (i.e. regular-expression based) specifications.</xs:documentation>
|
78
|
+
</xs:annotation>
|
79
|
+
<xs:simpleContent>
|
80
|
+
<xs:restriction base="cyboxCommon:BaseObjectPropertyType">
|
81
|
+
<xs:simpleType>
|
82
|
+
<xs:union memberTypes="LinuxPackageObj:ArchitectureTypeEnum xs:string"/>
|
83
|
+
</xs:simpleType>
|
84
|
+
<xs:attribute name="datatype" type="cyboxCommon:DatatypeEnum" fixed="string">
|
85
|
+
<xs:annotation>
|
86
|
+
<xs:documentation>This attribute is optional and specifies the expected type for the value of the specified property.</xs:documentation>
|
87
|
+
</xs:annotation>
|
88
|
+
</xs:attribute>
|
89
|
+
</xs:restriction>
|
90
|
+
</xs:simpleContent>
|
91
|
+
</xs:complexType>
|
92
|
+
<xs:simpleType name="ArchitectureTypeEnum">
|
93
|
+
<xs:annotation>
|
94
|
+
<xs:documentation>The ArchitectureTypeEnum type is a non-exhaustive enumeration of CPU architectures.</xs:documentation>
|
95
|
+
</xs:annotation>
|
96
|
+
<xs:restriction base="xs:string">
|
97
|
+
<xs:enumeration value="i386">
|
98
|
+
<xs:annotation>
|
99
|
+
<xs:documentation>Indicates an i386 architecture.</xs:documentation>
|
100
|
+
</xs:annotation>
|
101
|
+
</xs:enumeration>
|
102
|
+
<xs:enumeration value="PPC">
|
103
|
+
<xs:annotation>
|
104
|
+
<xs:documentation>Indicates an PPC architecture.</xs:documentation>
|
105
|
+
</xs:annotation>
|
106
|
+
</xs:enumeration>
|
107
|
+
<xs:enumeration value="SPARC">
|
108
|
+
<xs:annotation>
|
109
|
+
<xs:documentation>Indicates an SPARC architecture.</xs:documentation>
|
110
|
+
</xs:annotation>
|
111
|
+
</xs:enumeration>
|
112
|
+
<xs:enumeration value="noarch">
|
113
|
+
<xs:annotation>
|
114
|
+
<xs:documentation>Indicates no particular architecture.</xs:documentation>
|
115
|
+
</xs:annotation>
|
116
|
+
</xs:enumeration>
|
117
|
+
</xs:restriction>
|
118
|
+
</xs:simpleType>
|
119
|
+
</xs:schema>
|
@@ -0,0 +1,70 @@
|
|
1
|
+
<?xml version="1.0" encoding="utf-8"?>
|
2
|
+
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:MemoryObj="http://cybox.mitre.org/objects#MemoryObject-2" xmlns:cyboxCommon="http://cybox.mitre.org/common-2" targetNamespace="http://cybox.mitre.org/objects#MemoryObject-2" elementFormDefault="qualified" attributeFormDefault="unqualified" version="2.0.1">
|
3
|
+
<xs:annotation>
|
4
|
+
<xs:documentation>This schema was originally developed by The MITRE Corporation. The CybOX XML Schema implementation is maintained by The MITRE Corporation and developed by the open CybOX Community. For more information, including how to get involved in the effort and how to submit change requests, please visit the CybOX website at http://cybox.mitre.org. </xs:documentation>
|
5
|
+
<xs:appinfo>
|
6
|
+
<schema>Memory_Object</schema>
|
7
|
+
<version>2.0.1</version>
|
8
|
+
<date>09/30/2013 9:00:00 AM</date>
|
9
|
+
<short_description>The following specifies the fields and types that compose this defined CybOX Object type. Each defined object is an extension of the abstract ObjectPropertiesType, defined in CybOX Common. For more information on this extension mechanism, please see the CybOX Specification. This document is intended for developers and assumes some familiarity with XML. </short_description>
|
10
|
+
<terms_of_use>Copyright (c) 2012-2013, The MITRE Corporation. All rights reserved. The contents of this file are subject to the terms of the CybOX License located at http://cybox.mitre.org/about/termsofuse.html. See the CybOX License for the specific language governing permissions and limitations for use of this schema. When distributing copies of the CybOX Schema, this license header must be included. </terms_of_use>
|
11
|
+
</xs:appinfo>
|
12
|
+
</xs:annotation>
|
13
|
+
<xs:import namespace="http://cybox.mitre.org/common-2" schemaLocation="../cybox_common.xsd"/>
|
14
|
+
<xs:element name="Memory_Region" type="MemoryObj:MemoryObjectType">
|
15
|
+
<xs:annotation>
|
16
|
+
<xs:documentation>The Memory_Region object is intended to characterize generic memory objects.</xs:documentation>
|
17
|
+
</xs:annotation>
|
18
|
+
</xs:element>
|
19
|
+
<xs:complexType name="MemoryObjectType" mixed="false">
|
20
|
+
<xs:annotation>
|
21
|
+
<xs:documentation>The MemoryObjectType type is intended to characterize generic memory objects.</xs:documentation>
|
22
|
+
</xs:annotation>
|
23
|
+
<xs:complexContent>
|
24
|
+
<xs:extension base="cyboxCommon:ObjectPropertiesType">
|
25
|
+
<xs:sequence>
|
26
|
+
<xs:element name="Hashes" type="cyboxCommon:HashListType" minOccurs="0">
|
27
|
+
<xs:annotation>
|
28
|
+
<xs:documentation>The Hashes field specifies any hashes of the particular memory object.</xs:documentation>
|
29
|
+
</xs:annotation>
|
30
|
+
</xs:element>
|
31
|
+
<xs:element name="Name" type="cyboxCommon:StringObjectPropertyType" minOccurs="0" maxOccurs="1">
|
32
|
+
<xs:annotation>
|
33
|
+
<xs:documentation>The Name field specifies the name of the particular memory object, if applicable.</xs:documentation>
|
34
|
+
</xs:annotation>
|
35
|
+
</xs:element>
|
36
|
+
<xs:element name="Region_Size" type="cyboxCommon:UnsignedLongObjectPropertyType" nillable="true" minOccurs="0" maxOccurs="1">
|
37
|
+
<xs:annotation>
|
38
|
+
<xs:documentation>The Region_Size field specifies the size of the particular memory region, in bytes.</xs:documentation>
|
39
|
+
</xs:annotation>
|
40
|
+
</xs:element>
|
41
|
+
<xs:element name="Region_Start_Address" type="cyboxCommon:HexBinaryObjectPropertyType" nillable="true" minOccurs="0" maxOccurs="1">
|
42
|
+
<xs:annotation>
|
43
|
+
<xs:documentation>The Region_Start_Address field specifies the starting address of the particular memory region.</xs:documentation>
|
44
|
+
</xs:annotation>
|
45
|
+
</xs:element>
|
46
|
+
<xs:element name="Extracted_Features" type="cyboxCommon:ExtractedFeaturesType" minOccurs="0">
|
47
|
+
<xs:annotation>
|
48
|
+
<xs:documentation>A description of features extracted from this memory region.</xs:documentation>
|
49
|
+
</xs:annotation>
|
50
|
+
</xs:element>
|
51
|
+
</xs:sequence>
|
52
|
+
<xs:attribute name="is_injected" type="xs:boolean">
|
53
|
+
<xs:annotation>
|
54
|
+
<xs:documentation>The is_injected field specifies whether or not the particular memory object has had data/code injected into it by another process.</xs:documentation>
|
55
|
+
</xs:annotation>
|
56
|
+
</xs:attribute>
|
57
|
+
<xs:attribute name="is_mapped" type="xs:boolean">
|
58
|
+
<xs:annotation>
|
59
|
+
<xs:documentation>The is_mapped field specifies whether or not the particular memory object has been assigned a byte-for-byte correlation with some portion of a file or file-like resource.</xs:documentation>
|
60
|
+
</xs:annotation>
|
61
|
+
</xs:attribute>
|
62
|
+
<xs:attribute name="is_protected" type="xs:boolean">
|
63
|
+
<xs:annotation>
|
64
|
+
<xs:documentation>The is_protected field specifies whether or not the particular memory object is protected (read/write only from the process that allocated it).</xs:documentation>
|
65
|
+
</xs:annotation>
|
66
|
+
</xs:attribute>
|
67
|
+
</xs:extension>
|
68
|
+
</xs:complexContent>
|
69
|
+
</xs:complexType>
|
70
|
+
</xs:schema>
|
@@ -0,0 +1,40 @@
|
|
1
|
+
<?xml version="1.0" encoding="utf-8"?>
|
2
|
+
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:MutexObj="http://cybox.mitre.org/objects#MutexObject-2" xmlns:cyboxCommon="http://cybox.mitre.org/common-2" targetNamespace="http://cybox.mitre.org/objects#MutexObject-2" elementFormDefault="qualified" attributeFormDefault="unqualified" version="2.0.1">
|
3
|
+
<xs:annotation>
|
4
|
+
<xs:documentation>This schema was originally developed by The MITRE Corporation. The CybOX XML Schema implementation is maintained by The MITRE Corporation and developed by the open CybOX Community. For more information, including how to get involved in the effort and how to submit change requests, please visit the CybOX website at http://cybox.mitre.org. </xs:documentation>
|
5
|
+
<xs:appinfo>
|
6
|
+
<schema>Mutex_Object</schema>
|
7
|
+
<version>2.0.1</version>
|
8
|
+
<date>09/30/2013 9:00:00 AM</date>
|
9
|
+
<short_description>The following specifies the fields and types that compose this defined CybOX Object type. Each defined object is an extension of the abstract ObjectPropertiesType, defined in CybOX Common. For more information on this extension mechanism, please see the CybOX Specification. This document is intended for developers and assumes some familiarity with XML. </short_description>
|
10
|
+
<terms_of_use>Copyright (c) 2012-2013, The MITRE Corporation. All rights reserved. The contents of this file are subject to the terms of the CybOX License located at http://cybox.mitre.org/about/termsofuse.html. See the CybOX License for the specific language governing permissions and limitations for use of this schema. When distributing copies of the CybOX Schema, this license header must be included. </terms_of_use>
|
11
|
+
</xs:appinfo>
|
12
|
+
</xs:annotation>
|
13
|
+
<xs:import namespace="http://cybox.mitre.org/common-2" schemaLocation="../cybox_common.xsd"/>
|
14
|
+
<xs:element name="Mutex" type="MutexObj:MutexObjectType" nillable="true">
|
15
|
+
<xs:annotation>
|
16
|
+
<xs:documentation>The Mutex object is intended to characterize generic mutual exclusion (mutex) objects.</xs:documentation>
|
17
|
+
</xs:annotation>
|
18
|
+
</xs:element>
|
19
|
+
<xs:complexType name="MutexObjectType" mixed="false">
|
20
|
+
<xs:annotation>
|
21
|
+
<xs:documentation>The MutexObjectType type is intended to characterize generic mutual exclusion (mutex) objects.</xs:documentation>
|
22
|
+
</xs:annotation>
|
23
|
+
<xs:complexContent>
|
24
|
+
<xs:extension base="cyboxCommon:ObjectPropertiesType">
|
25
|
+
<xs:sequence>
|
26
|
+
<xs:element name="Name" type="cyboxCommon:StringObjectPropertyType" minOccurs="0">
|
27
|
+
<xs:annotation>
|
28
|
+
<xs:documentation>The Name field specifies the name for a named mutex object.</xs:documentation>
|
29
|
+
</xs:annotation>
|
30
|
+
</xs:element>
|
31
|
+
</xs:sequence>
|
32
|
+
<xs:attribute name="named" type="xs:boolean">
|
33
|
+
<xs:annotation>
|
34
|
+
<xs:documentation>The named field specifies whether the Mutex is named.</xs:documentation>
|
35
|
+
</xs:annotation>
|
36
|
+
</xs:attribute>
|
37
|
+
</xs:extension>
|
38
|
+
</xs:complexContent>
|
39
|
+
</xs:complexType>
|
40
|
+
</xs:schema>
|
@@ -0,0 +1,609 @@
|
|
1
|
+
<?xml version="1.0" encoding="utf-8"?>
|
2
|
+
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:SocketAddressObj="http://cybox.mitre.org/objects#SocketAddressObject-1" xmlns:NetworkConnectionObj="http://cybox.mitre.org/objects#NetworkConnectionObject-2" xmlns:DNSQueryObj="http://cybox.mitre.org/objects#DNSQueryObject-2" xmlns:HTTPSessionObj="http://cybox.mitre.org/objects#HTTPSessionObject-2" xmlns:cyboxCommon="http://cybox.mitre.org/common-2" targetNamespace="http://cybox.mitre.org/objects#NetworkConnectionObject-2" elementFormDefault="qualified" attributeFormDefault="unqualified" version="2.0.1">
|
3
|
+
<xs:annotation>
|
4
|
+
<xs:documentation>This schema was originally developed by The MITRE Corporation. The CybOX XML Schema implementation is maintained by The MITRE Corporation and developed by the open CybOX Community. For more information, including how to get involved in the effort and how to submit change requests, please visit the CybOX website at http://cybox.mitre.org. </xs:documentation>
|
5
|
+
<xs:appinfo>
|
6
|
+
<schema>Network_Connection_Object</schema>
|
7
|
+
<version>2.0.1</version>
|
8
|
+
<date>09/30/2013 9:00:00 AM</date>
|
9
|
+
<short_description>The following specifies the fields and types that compose this defined CybOX Object type. Each defined object is an extension of the abstract ObjectPropertiesType, defined in CybOX Common. For more information on this extension mechanism, please see the CybOX Specification. This document is intended for developers and assumes some familiarity with XML. </short_description>
|
10
|
+
<terms_of_use>Copyright (c) 2012-2013, The MITRE Corporation. All rights reserved. The contents of this file are subject to the terms of the CybOX License located at http://cybox.mitre.org/about/termsofuse.html. See the CybOX License for the specific language governing permissions and limitations for use of this schema. When distributing copies of the CybOX Schema, this license header must be included. </terms_of_use>
|
11
|
+
</xs:appinfo>
|
12
|
+
</xs:annotation>
|
13
|
+
<xs:import namespace="http://cybox.mitre.org/common-2" schemaLocation="../cybox_common.xsd"/>
|
14
|
+
<xs:import namespace="http://cybox.mitre.org/objects#HTTPSessionObject-2" schemaLocation="HTTP_Session_Object.xsd"/>
|
15
|
+
<xs:import namespace="http://cybox.mitre.org/objects#DNSQueryObject-2" schemaLocation="DNS_Query_Object.xsd"/>
|
16
|
+
<xs:import namespace="http://cybox.mitre.org/objects#SocketAddressObject-1" schemaLocation="Socket_Address_Object.xsd"/>
|
17
|
+
<xs:element name="Network_Connection" type="NetworkConnectionObj:NetworkConnectionObjectType">
|
18
|
+
<xs:annotation>
|
19
|
+
<xs:documentation>The Network_Connection object is intended to represent a single network connection.</xs:documentation>
|
20
|
+
</xs:annotation>
|
21
|
+
</xs:element>
|
22
|
+
<xs:complexType name="NetworkConnectionObjectType" mixed="false">
|
23
|
+
<xs:annotation>
|
24
|
+
<xs:documentation>The NetworkConnectionObjectType is intended as a way of characterizing local or remote (i.e. Internet) network connections.</xs:documentation>
|
25
|
+
</xs:annotation>
|
26
|
+
<xs:complexContent mixed="false">
|
27
|
+
<xs:extension base="cyboxCommon:ObjectPropertiesType">
|
28
|
+
<xs:sequence>
|
29
|
+
<xs:element minOccurs="0" name="Creation_Time" type="cyboxCommon:DateTimeObjectPropertyType">
|
30
|
+
<xs:annotation>
|
31
|
+
<xs:documentation>The Creation_Time field specifies the date/time the network connection was created.</xs:documentation>
|
32
|
+
</xs:annotation>
|
33
|
+
</xs:element>
|
34
|
+
<xs:element minOccurs="0" name="Layer3_Protocol" type="NetworkConnectionObj:Layer3ProtocolType">
|
35
|
+
<xs:annotation>
|
36
|
+
<xs:documentation>The Layer3_Protocol field specifies the particular network (layer 3 in the OSI model) layer protocol used in the connection.</xs:documentation>
|
37
|
+
</xs:annotation>
|
38
|
+
</xs:element>
|
39
|
+
<xs:element minOccurs="0" name="Layer4_Protocol" type="NetworkConnectionObj:Layer4ProtocolType">
|
40
|
+
<xs:annotation>
|
41
|
+
<xs:documentation>The Layer4_Protocol field specifies the particular transport (layer 4 in the OSI model) layer protocol used in the connection.</xs:documentation>
|
42
|
+
</xs:annotation>
|
43
|
+
</xs:element>
|
44
|
+
<xs:element minOccurs="0" name="Layer7_Protocol" type="NetworkConnectionObj:Layer7ProtocolType">
|
45
|
+
<xs:annotation>
|
46
|
+
<xs:documentation>The Layer7_Protocol field specifies the particular application (layer 7 in the OSI model) layer protocol used in the connection.</xs:documentation>
|
47
|
+
</xs:annotation>
|
48
|
+
</xs:element>
|
49
|
+
<xs:element minOccurs="0" name="Source_Socket_Address" type="SocketAddressObj:SocketAddressObjectType">
|
50
|
+
<xs:annotation>
|
51
|
+
<xs:documentation>The Source_Socket_Address field specifies the source socket address, consisting of an IP Address and port number, used in the connection.</xs:documentation>
|
52
|
+
</xs:annotation>
|
53
|
+
</xs:element>
|
54
|
+
<xs:element maxOccurs="1" minOccurs="0" name="Source_TCP_State" type="NetworkConnectionObj:TCPStateEnum">
|
55
|
+
<xs:annotation>
|
56
|
+
<xs:documentation>The Source_TCP_State field specifies the current state of the TCP network connection at the source, if applicable.</xs:documentation>
|
57
|
+
</xs:annotation>
|
58
|
+
</xs:element>
|
59
|
+
<xs:element minOccurs="0" name="Destination_Socket_Address" type="SocketAddressObj:SocketAddressObjectType">
|
60
|
+
<xs:annotation>
|
61
|
+
<xs:documentation>The Destination_Socket_Address field specifies the destination socket address, consisting of an IP Address and port number, used in the connection.</xs:documentation>
|
62
|
+
</xs:annotation>
|
63
|
+
</xs:element>
|
64
|
+
<xs:element maxOccurs="1" minOccurs="0" name="Destination_TCP_State" type="NetworkConnectionObj:TCPStateEnum">
|
65
|
+
<xs:annotation>
|
66
|
+
<xs:documentation>The Destination_TCP_State field specifies the current state of the TCP network connection at the destination, if applicable.</xs:documentation>
|
67
|
+
</xs:annotation>
|
68
|
+
</xs:element>
|
69
|
+
<xs:element name="Layer7_Connections" minOccurs="0" type="NetworkConnectionObj:Layer7ConnectionsType">
|
70
|
+
<xs:annotation>
|
71
|
+
<xs:documentation>The Layer7_Connections field allows for the characterization of any application (layer 7 in the OSI model) layer connections observed as part of the network connection.</xs:documentation>
|
72
|
+
</xs:annotation>
|
73
|
+
</xs:element>
|
74
|
+
</xs:sequence>
|
75
|
+
<xs:attribute name="tls_used" type="xs:boolean">
|
76
|
+
<xs:annotation>
|
77
|
+
<xs:documentation>The tls_used field specifies whether or not Transport Layer Security (TLS) is used in the network connection.</xs:documentation>
|
78
|
+
</xs:annotation>
|
79
|
+
</xs:attribute>
|
80
|
+
</xs:extension>
|
81
|
+
</xs:complexContent>
|
82
|
+
</xs:complexType>
|
83
|
+
<xs:complexType name="Layer7ConnectionsType">
|
84
|
+
<xs:annotation>
|
85
|
+
<xs:documentation>The Layer7ConnectionsType specifies the different types of application (layer 7 in the OSI model) connections that may be initiated as part of the network connection.</xs:documentation>
|
86
|
+
</xs:annotation>
|
87
|
+
<xs:sequence>
|
88
|
+
<xs:element name="HTTP_Session" type="HTTPSessionObj:HTTPSessionObjectType" minOccurs="0" maxOccurs="1">
|
89
|
+
<xs:annotation>
|
90
|
+
<xs:documentation>The HTTP Session field specifies a single HTTP session initiated between source and destination IP addresses/ports, and includes 1-n HTTP Request/Response pairs.</xs:documentation>
|
91
|
+
</xs:annotation>
|
92
|
+
</xs:element>
|
93
|
+
<xs:element name="DNS_Query" type="DNSQueryObj:DNSQueryObjectType" minOccurs="0" maxOccurs="unbounded">
|
94
|
+
<xs:annotation>
|
95
|
+
<xs:documentation>The DNS_Query field specifies a single DNS query/answer pair initiated between source and destination IP addresses/ports.</xs:documentation>
|
96
|
+
</xs:annotation>
|
97
|
+
</xs:element>
|
98
|
+
</xs:sequence>
|
99
|
+
</xs:complexType>
|
100
|
+
<xs:complexType name="Layer3ProtocolType">
|
101
|
+
<xs:annotation>
|
102
|
+
<xs:documentation>Layer3ProtocolType specifies Layer 3 protocol types, via a union of the Layer3ProtocolEnum type and the atomic xs:string type. Its base type is the CybOX Core BaseObjectPropertyType, for permitting complex (i.e. regular-expression based) specifications.</xs:documentation>
|
103
|
+
</xs:annotation>
|
104
|
+
<xs:simpleContent>
|
105
|
+
<xs:restriction base="cyboxCommon:BaseObjectPropertyType">
|
106
|
+
<xs:simpleType>
|
107
|
+
<xs:union memberTypes="NetworkConnectionObj:Layer3ProtocolEnum xs:string"/>
|
108
|
+
</xs:simpleType>
|
109
|
+
<xs:attribute fixed="string" name="datatype" type="cyboxCommon:DatatypeEnum" use="required">
|
110
|
+
<xs:annotation>
|
111
|
+
<xs:documentation>This attribute is optional and specifies the expected type for the value of the specified property.</xs:documentation>
|
112
|
+
</xs:annotation>
|
113
|
+
</xs:attribute>
|
114
|
+
</xs:restriction>
|
115
|
+
</xs:simpleContent>
|
116
|
+
</xs:complexType>
|
117
|
+
<xs:complexType name="Layer4ProtocolType">
|
118
|
+
<xs:annotation>
|
119
|
+
<xs:documentation>Layer4ProtocolType specifies Layer 4 protocol types, via a union of the Layer4ProtocolEnum type and the atomic xs:string type. Its base type is the CybOX Core BaseObjectPropertyType, for permitting complex (i.e. regular-expression based) specifications.</xs:documentation>
|
120
|
+
</xs:annotation>
|
121
|
+
<xs:simpleContent>
|
122
|
+
<xs:restriction base="cyboxCommon:BaseObjectPropertyType">
|
123
|
+
<xs:simpleType>
|
124
|
+
<xs:union memberTypes="NetworkConnectionObj:Layer4ProtocolEnum xs:string"/>
|
125
|
+
</xs:simpleType>
|
126
|
+
<xs:attribute fixed="string" name="datatype" type="cyboxCommon:DatatypeEnum" use="required">
|
127
|
+
<xs:annotation>
|
128
|
+
<xs:documentation>This attribute is optional and specifies the expected type for the value of the specified property.</xs:documentation>
|
129
|
+
</xs:annotation>
|
130
|
+
</xs:attribute>
|
131
|
+
</xs:restriction>
|
132
|
+
</xs:simpleContent>
|
133
|
+
</xs:complexType>
|
134
|
+
<xs:complexType name="Layer7ProtocolType">
|
135
|
+
<xs:annotation>
|
136
|
+
<xs:documentation>Layer7ProtocolType specifies Layer 7 protocol types, via a union of the Layer7ProtocolEnum type and the atomic xs:string type. Its base type is the CybOX Core BaseObjectPropertyType, for permitting complex (i.e. regular-expression based) specifications.</xs:documentation>
|
137
|
+
</xs:annotation>
|
138
|
+
<xs:simpleContent>
|
139
|
+
<xs:restriction base="cyboxCommon:BaseObjectPropertyType">
|
140
|
+
<xs:simpleType>
|
141
|
+
<xs:union memberTypes="NetworkConnectionObj:Layer7ProtocolEnum xs:string"/>
|
142
|
+
</xs:simpleType>
|
143
|
+
<xs:attribute fixed="string" name="datatype" type="cyboxCommon:DatatypeEnum" use="required">
|
144
|
+
<xs:annotation>
|
145
|
+
<xs:documentation>This attribute is optional and specifies the expected type for the value of the specified property.</xs:documentation>
|
146
|
+
</xs:annotation>
|
147
|
+
</xs:attribute>
|
148
|
+
</xs:restriction>
|
149
|
+
</xs:simpleContent>
|
150
|
+
</xs:complexType>
|
151
|
+
<xs:simpleType name="TCPStateEnum">
|
152
|
+
<xs:annotation>
|
153
|
+
<xs:documentation>The ConnectionStateEnum type is an enumeration of TCP connection states.</xs:documentation>
|
154
|
+
</xs:annotation>
|
155
|
+
<xs:restriction base="xs:string">
|
156
|
+
<xs:enumeration value="UNKNOWN">
|
157
|
+
<xs:annotation>
|
158
|
+
<xs:documentation>Indicates an unknown TCP connection state.</xs:documentation>
|
159
|
+
</xs:annotation>
|
160
|
+
</xs:enumeration>
|
161
|
+
<xs:enumeration value="CLOSED">
|
162
|
+
<xs:annotation>
|
163
|
+
<xs:documentation>Indicates the closed TCP connection state--i.e. no connection state at all.</xs:documentation>
|
164
|
+
</xs:annotation>
|
165
|
+
</xs:enumeration>
|
166
|
+
<xs:enumeration value="LISTENING">
|
167
|
+
<xs:annotation>
|
168
|
+
<xs:documentation>Indicates the listening TCP connection state.</xs:documentation>
|
169
|
+
</xs:annotation>
|
170
|
+
</xs:enumeration>
|
171
|
+
<xs:enumeration value="SYN_SENT">
|
172
|
+
<xs:annotation>
|
173
|
+
<xs:documentation>Indicates the SYN sent TCP connection state--i.e. wait for a matching connection request after having sent a connection request.</xs:documentation>
|
174
|
+
</xs:annotation>
|
175
|
+
</xs:enumeration>
|
176
|
+
<xs:enumeration value="SYN_RECEIVED">
|
177
|
+
<xs:annotation>
|
178
|
+
<xs:documentation>Indicates the SYN received TCP connection state--i.e. waiting for a confirming connection request acknowledgment after having both received and sent a connection request.</xs:documentation>
|
179
|
+
</xs:annotation>
|
180
|
+
</xs:enumeration>
|
181
|
+
<xs:enumeration value="ESTABLISHED">
|
182
|
+
<xs:annotation>
|
183
|
+
<xs:documentation>Indicates the established TCP connection state--i.e. an open connection in which data received can be delivered to the user.</xs:documentation>
|
184
|
+
</xs:annotation>
|
185
|
+
</xs:enumeration>
|
186
|
+
<xs:enumeration value="FIN_WAIT_1">
|
187
|
+
<xs:annotation>
|
188
|
+
<xs:documentation>Indicates the FIN-WAIT-1 TCP connection state--i.e. waiting for a connection termination request from the remote TCP, or an acknowledgment of the connection termination request previously sent.</xs:documentation>
|
189
|
+
</xs:annotation>
|
190
|
+
</xs:enumeration>
|
191
|
+
<xs:enumeration value="FIN_WAIT_2">
|
192
|
+
<xs:annotation>
|
193
|
+
<xs:documentation>Indicates the FIN-WAIT-2 TCP connection state--i.e. waiting for a connection termination request from the remote TCP.</xs:documentation>
|
194
|
+
</xs:annotation>
|
195
|
+
</xs:enumeration>
|
196
|
+
<xs:enumeration value="CLOSE_WAIT">
|
197
|
+
<xs:annotation>
|
198
|
+
<xs:documentation>Indicates the CLOSE-WAIT TCP connection state--i.e. waiting for a connection termination request from the local user.</xs:documentation>
|
199
|
+
</xs:annotation>
|
200
|
+
</xs:enumeration>
|
201
|
+
<xs:enumeration value="CLOSING">
|
202
|
+
<xs:annotation>
|
203
|
+
<xs:documentation>Indicates the CLOSING TCP connection state--i.e. waiting for a connection termination request acknowledgment from the remote TCP.</xs:documentation>
|
204
|
+
</xs:annotation>
|
205
|
+
</xs:enumeration>
|
206
|
+
<xs:enumeration value="LAST_ACK">
|
207
|
+
<xs:annotation>
|
208
|
+
<xs:documentation>Indicates the LAST-ACK connection state--i.e. waiting for an acknowledgment of the connection termination request previously sent to the remote TCP (which includes an acknowledgment of its connection termination request).</xs:documentation>
|
209
|
+
</xs:annotation>
|
210
|
+
</xs:enumeration>
|
211
|
+
<xs:enumeration value="TIME_WAIT">
|
212
|
+
<xs:annotation>
|
213
|
+
<xs:documentation>Indicates the TIME-WAIT connection state--i.e. waiting for for enough time to pass to be sure the remote TCP received the acknowledgment of its connection termination request.</xs:documentation>
|
214
|
+
</xs:annotation>
|
215
|
+
</xs:enumeration>
|
216
|
+
<xs:enumeration value="DELETING_TCB">
|
217
|
+
<xs:annotation>
|
218
|
+
<xs:documentation>Indicates the DELETE-TCB connection state--i.e. the Transmission Control Block (TCB) is being deleted.</xs:documentation>
|
219
|
+
</xs:annotation>
|
220
|
+
</xs:enumeration>
|
221
|
+
</xs:restriction>
|
222
|
+
</xs:simpleType>
|
223
|
+
<xs:simpleType name="Layer3ProtocolEnum">
|
224
|
+
<xs:annotation>
|
225
|
+
<xs:documentation>Layer3ProtocolEnum is a non-exhaustive enumeration of Layer 3 (network) layer protocols.</xs:documentation>
|
226
|
+
</xs:annotation>
|
227
|
+
<xs:restriction base="xs:string">
|
228
|
+
<xs:enumeration value="IPv4">
|
229
|
+
<xs:annotation>
|
230
|
+
<xs:documentation>Specifies the Internet Protocol, version 4.</xs:documentation>
|
231
|
+
</xs:annotation>
|
232
|
+
</xs:enumeration>
|
233
|
+
<xs:enumeration value="IPv6">
|
234
|
+
<xs:annotation>
|
235
|
+
<xs:documentation>Specifies the Internet Protocol, version 6.</xs:documentation>
|
236
|
+
</xs:annotation>
|
237
|
+
</xs:enumeration>
|
238
|
+
<xs:enumeration value="ICMP">
|
239
|
+
<xs:annotation>
|
240
|
+
<xs:documentation>Specifies the Internet Control Message Protocol.</xs:documentation>
|
241
|
+
</xs:annotation>
|
242
|
+
</xs:enumeration>
|
243
|
+
<xs:enumeration value="IGMP">
|
244
|
+
<xs:annotation>
|
245
|
+
<xs:documentation>Specifies the Internet Group Management Protocol.</xs:documentation>
|
246
|
+
</xs:annotation>
|
247
|
+
</xs:enumeration>
|
248
|
+
<xs:enumeration value="IGRP">
|
249
|
+
<xs:annotation>
|
250
|
+
<xs:documentation>Specifies the Interior Gateway Routing Protocol.</xs:documentation>
|
251
|
+
</xs:annotation>
|
252
|
+
</xs:enumeration>
|
253
|
+
<xs:enumeration value="CLNP">
|
254
|
+
<xs:annotation>
|
255
|
+
<xs:documentation>Specifies the Connectionless Networking Protocol.</xs:documentation>
|
256
|
+
</xs:annotation>
|
257
|
+
</xs:enumeration>
|
258
|
+
<xs:enumeration value="EGP">
|
259
|
+
<xs:annotation>
|
260
|
+
<xs:documentation>Specifies the Exterior Gateway Protocol.</xs:documentation>
|
261
|
+
</xs:annotation>
|
262
|
+
</xs:enumeration>
|
263
|
+
<xs:enumeration value="EIGRP">
|
264
|
+
<xs:annotation>
|
265
|
+
<xs:documentation>Specifies the Enhanced Interior Gateway Routing Protocol.</xs:documentation>
|
266
|
+
</xs:annotation>
|
267
|
+
</xs:enumeration>
|
268
|
+
<xs:enumeration value="IPSec">
|
269
|
+
<xs:annotation>
|
270
|
+
<xs:documentation>Specifies the Internet Protocol Security suite.</xs:documentation>
|
271
|
+
</xs:annotation>
|
272
|
+
</xs:enumeration>
|
273
|
+
<xs:enumeration value="IPX">
|
274
|
+
<xs:annotation>
|
275
|
+
<xs:documentation>Specifies the Internetwork Packet Exchange protocol</xs:documentation>
|
276
|
+
</xs:annotation>
|
277
|
+
</xs:enumeration>
|
278
|
+
<xs:enumeration value="Routed-SMLT">
|
279
|
+
<xs:annotation>
|
280
|
+
<xs:documentation>Specifies the Routed Split Multi-Link Trunking protocol.</xs:documentation>
|
281
|
+
</xs:annotation>
|
282
|
+
</xs:enumeration>
|
283
|
+
<xs:enumeration value="SCCP">
|
284
|
+
<xs:annotation>
|
285
|
+
<xs:documentation>Specifies the Signalling Connection Control Part protocol.</xs:documentation>
|
286
|
+
</xs:annotation>
|
287
|
+
</xs:enumeration>
|
288
|
+
</xs:restriction>
|
289
|
+
</xs:simpleType>
|
290
|
+
<xs:simpleType name="Layer4ProtocolEnum">
|
291
|
+
<xs:annotation>
|
292
|
+
<xs:documentation>Layer4ProtocolEnum is a non-exhaustive enumeration of Layer 4 (transport) layer protocols.</xs:documentation>
|
293
|
+
</xs:annotation>
|
294
|
+
<xs:restriction base="xs:string">
|
295
|
+
<xs:enumeration value="TCP">
|
296
|
+
<xs:annotation>
|
297
|
+
<xs:documentation>Specifies the Transmission Control Protocol.</xs:documentation>
|
298
|
+
</xs:annotation>
|
299
|
+
</xs:enumeration>
|
300
|
+
<xs:enumeration value="UDP">
|
301
|
+
<xs:annotation>
|
302
|
+
<xs:documentation>Specifies the User Datagram Protocol.</xs:documentation>
|
303
|
+
</xs:annotation>
|
304
|
+
</xs:enumeration>
|
305
|
+
<xs:enumeration value="AH">
|
306
|
+
<xs:annotation>
|
307
|
+
<xs:documentation>Specifies the Authentication Header protocol.</xs:documentation>
|
308
|
+
</xs:annotation>
|
309
|
+
</xs:enumeration>
|
310
|
+
<xs:enumeration value="ESP">
|
311
|
+
<xs:annotation>
|
312
|
+
<xs:documentation>Specifies the Encapsulating Security Payload protocol.</xs:documentation>
|
313
|
+
</xs:annotation>
|
314
|
+
</xs:enumeration>
|
315
|
+
<xs:enumeration value="GRE">
|
316
|
+
<xs:annotation>
|
317
|
+
<xs:documentation>Specifies the Generic Routing Encapsulation protocol.</xs:documentation>
|
318
|
+
</xs:annotation>
|
319
|
+
</xs:enumeration>
|
320
|
+
<xs:enumeration value="IL">
|
321
|
+
<xs:annotation>
|
322
|
+
<xs:documentation>Specifies the Internet Link protocol.</xs:documentation>
|
323
|
+
</xs:annotation>
|
324
|
+
</xs:enumeration>
|
325
|
+
<xs:enumeration value="SCTP">
|
326
|
+
<xs:annotation>
|
327
|
+
<xs:documentation>Specifies the Stream Control Transmission Protocol.</xs:documentation>
|
328
|
+
</xs:annotation>
|
329
|
+
</xs:enumeration>
|
330
|
+
<xs:enumeration value="Sinec H1">
|
331
|
+
<xs:annotation>
|
332
|
+
<xs:documentation>Specifies the Siemens Sinec H1 protocol.</xs:documentation>
|
333
|
+
</xs:annotation>
|
334
|
+
</xs:enumeration>
|
335
|
+
<xs:enumeration value="SPX">
|
336
|
+
<xs:annotation>
|
337
|
+
<xs:documentation>Specifies the Sequenced Packet Exchange protocol.</xs:documentation>
|
338
|
+
</xs:annotation>
|
339
|
+
</xs:enumeration>
|
340
|
+
<xs:enumeration value="DCCP">
|
341
|
+
<xs:annotation>
|
342
|
+
<xs:documentation>Specifies the Datagram Congestion Control Protocol.</xs:documentation>
|
343
|
+
</xs:annotation>
|
344
|
+
</xs:enumeration>
|
345
|
+
</xs:restriction>
|
346
|
+
</xs:simpleType>
|
347
|
+
<xs:simpleType name="Layer7ProtocolEnum">
|
348
|
+
<xs:annotation>
|
349
|
+
<xs:documentation>Layer7ProtocolEnum is a non-exhaustive enumeration of Layer 7 (application) layer protocols.</xs:documentation>
|
350
|
+
</xs:annotation>
|
351
|
+
<xs:restriction base="xs:string">
|
352
|
+
<xs:enumeration value="HTTP">
|
353
|
+
<xs:annotation>
|
354
|
+
<xs:documentation>Specifies the Hypertext Transfer Protocol.</xs:documentation>
|
355
|
+
</xs:annotation>
|
356
|
+
</xs:enumeration>
|
357
|
+
<xs:enumeration value="HTTPS">
|
358
|
+
<xs:annotation>
|
359
|
+
<xs:documentation>Specifies the Hypertext Transfer Protocol Secure.</xs:documentation>
|
360
|
+
</xs:annotation>
|
361
|
+
</xs:enumeration>
|
362
|
+
<xs:enumeration value="FTP">
|
363
|
+
<xs:annotation>
|
364
|
+
<xs:documentation>Specifies the File Transfer Protocol.</xs:documentation>
|
365
|
+
</xs:annotation>
|
366
|
+
</xs:enumeration>
|
367
|
+
<xs:enumeration value="SMTP">
|
368
|
+
<xs:annotation>
|
369
|
+
<xs:documentation>Specifies the Simple Mail Transfer Protocol.</xs:documentation>
|
370
|
+
</xs:annotation>
|
371
|
+
</xs:enumeration>
|
372
|
+
<xs:enumeration value="IRC">
|
373
|
+
<xs:annotation>
|
374
|
+
<xs:documentation>Specifies the Internet Relay Chat protocol.</xs:documentation>
|
375
|
+
</xs:annotation>
|
376
|
+
</xs:enumeration>
|
377
|
+
<xs:enumeration value="IDENT">
|
378
|
+
<xs:annotation>
|
379
|
+
<xs:documentation>Specifies the Identification Protocol, IDENT.</xs:documentation>
|
380
|
+
</xs:annotation>
|
381
|
+
</xs:enumeration>
|
382
|
+
<xs:enumeration value="DNS">
|
383
|
+
<xs:annotation>
|
384
|
+
<xs:documentation>Specifies the Domain Name System protocol.</xs:documentation>
|
385
|
+
</xs:annotation>
|
386
|
+
</xs:enumeration>
|
387
|
+
<xs:enumeration value="TELNET">
|
388
|
+
<xs:annotation>
|
389
|
+
<xs:documentation>Specifies the Telnet protocol.</xs:documentation>
|
390
|
+
</xs:annotation>
|
391
|
+
</xs:enumeration>
|
392
|
+
<xs:enumeration value="POP3">
|
393
|
+
<xs:annotation>
|
394
|
+
<xs:documentation>Specifies the Post Office Protocol, version 3.</xs:documentation>
|
395
|
+
</xs:annotation>
|
396
|
+
</xs:enumeration>
|
397
|
+
<xs:enumeration value="IMAP">
|
398
|
+
<xs:annotation>
|
399
|
+
<xs:documentation>Specifies the Internet Message Access Protocol.</xs:documentation>
|
400
|
+
</xs:annotation>
|
401
|
+
</xs:enumeration>
|
402
|
+
<xs:enumeration value="SSH">
|
403
|
+
<xs:annotation>
|
404
|
+
<xs:documentation>Specifies the Secure Shell protocol.</xs:documentation>
|
405
|
+
</xs:annotation>
|
406
|
+
</xs:enumeration>
|
407
|
+
<xs:enumeration value="SMB">
|
408
|
+
<xs:annotation>
|
409
|
+
<xs:documentation>Specifies the Microsoft Server Message Block protocol.</xs:documentation>
|
410
|
+
</xs:annotation>
|
411
|
+
</xs:enumeration>
|
412
|
+
<xs:enumeration value="ADC">
|
413
|
+
<xs:annotation>
|
414
|
+
<xs:documentation>Specifies the Advance Direct Connect protocol.</xs:documentation>
|
415
|
+
</xs:annotation>
|
416
|
+
</xs:enumeration>
|
417
|
+
<xs:enumeration value="AFP">
|
418
|
+
<xs:annotation>
|
419
|
+
<xs:documentation>Specifies the Apple Filing Protocol.</xs:documentation>
|
420
|
+
</xs:annotation>
|
421
|
+
</xs:enumeration>
|
422
|
+
<xs:enumeration value="BACNet">
|
423
|
+
<xs:annotation>
|
424
|
+
<xs:documentation>Specifies the Building Automation and Control Network protocol.</xs:documentation>
|
425
|
+
</xs:annotation>
|
426
|
+
</xs:enumeration>
|
427
|
+
<xs:enumeration value="BitTorrent">
|
428
|
+
<xs:annotation>
|
429
|
+
<xs:documentation>Specifies the BitTorrent protocol.</xs:documentation>
|
430
|
+
</xs:annotation>
|
431
|
+
</xs:enumeration>
|
432
|
+
<xs:enumeration value="BOOTP">
|
433
|
+
<xs:annotation>
|
434
|
+
<xs:documentation>Specifies the Bootstrap Protocol.</xs:documentation>
|
435
|
+
</xs:annotation>
|
436
|
+
</xs:enumeration>
|
437
|
+
<xs:enumeration value="Diameter">
|
438
|
+
<xs:annotation>
|
439
|
+
<xs:documentation>Specifies the Diameter protocol.</xs:documentation>
|
440
|
+
</xs:annotation>
|
441
|
+
</xs:enumeration>
|
442
|
+
<xs:enumeration value="DICOM">
|
443
|
+
<xs:annotation>
|
444
|
+
<xs:documentation>Specifies the Digital Imaging and Communications in Medicine protocol.</xs:documentation>
|
445
|
+
</xs:annotation>
|
446
|
+
</xs:enumeration>
|
447
|
+
<xs:enumeration value="DICT">
|
448
|
+
<xs:annotation>
|
449
|
+
<xs:documentation>Specifies the Dictionary protocol.</xs:documentation>
|
450
|
+
</xs:annotation>
|
451
|
+
</xs:enumeration>
|
452
|
+
<xs:enumeration value="DSM-CC">
|
453
|
+
<xs:annotation>
|
454
|
+
<xs:documentation>Specifies the Digital Storage Media Command and Control protocol.</xs:documentation>
|
455
|
+
</xs:annotation>
|
456
|
+
</xs:enumeration>
|
457
|
+
<xs:enumeration value="DSNP">
|
458
|
+
<xs:annotation>
|
459
|
+
<xs:documentation>Specifies the Distributed Social Networking Protocol.</xs:documentation>
|
460
|
+
</xs:annotation>
|
461
|
+
</xs:enumeration>
|
462
|
+
<xs:enumeration value="DHCP">
|
463
|
+
<xs:annotation>
|
464
|
+
<xs:documentation>Specifies the Dynamic Host Configuration Protocol.</xs:documentation>
|
465
|
+
</xs:annotation>
|
466
|
+
</xs:enumeration>
|
467
|
+
<xs:enumeration value="ED2K">
|
468
|
+
<xs:annotation>
|
469
|
+
<xs:documentation>Specifies the EDonkey2000 protocol.</xs:documentation>
|
470
|
+
</xs:annotation>
|
471
|
+
</xs:enumeration>
|
472
|
+
<xs:enumeration value="Finger">
|
473
|
+
<xs:annotation>
|
474
|
+
<xs:documentation>Specifies the Finger protocol.</xs:documentation>
|
475
|
+
</xs:annotation>
|
476
|
+
</xs:enumeration>
|
477
|
+
<xs:enumeration value="Gnutella">
|
478
|
+
<xs:annotation>
|
479
|
+
<xs:documentation>Specifies the Gnutella protocol.</xs:documentation>
|
480
|
+
</xs:annotation>
|
481
|
+
</xs:enumeration>
|
482
|
+
<xs:enumeration value="Gopher">
|
483
|
+
<xs:annotation>
|
484
|
+
<xs:documentation>Specifies the Gopher protocol.</xs:documentation>
|
485
|
+
</xs:annotation>
|
486
|
+
</xs:enumeration>
|
487
|
+
<xs:enumeration value="ISUP">
|
488
|
+
<xs:annotation>
|
489
|
+
<xs:documentation>Specifies the ISDN User Part protocol.</xs:documentation>
|
490
|
+
</xs:annotation>
|
491
|
+
</xs:enumeration>
|
492
|
+
<xs:enumeration value="LDAP">
|
493
|
+
<xs:annotation>
|
494
|
+
<xs:documentation>Specifies the Lightweight Directory Access Protocol.</xs:documentation>
|
495
|
+
</xs:annotation>
|
496
|
+
</xs:enumeration>
|
497
|
+
<xs:enumeration value="MIME">
|
498
|
+
<xs:annotation>
|
499
|
+
<xs:documentation>Specifies the Multipurpose Internet Mail Extensions protocol.</xs:documentation>
|
500
|
+
</xs:annotation>
|
501
|
+
</xs:enumeration>
|
502
|
+
<xs:enumeration value="MSNP">
|
503
|
+
<xs:annotation>
|
504
|
+
<xs:documentation>Specifies the Microsoft Notification Protocol.</xs:documentation>
|
505
|
+
</xs:annotation>
|
506
|
+
</xs:enumeration>
|
507
|
+
<xs:enumeration value="MAP">
|
508
|
+
<xs:annotation>
|
509
|
+
<xs:documentation>Specifies the Mobile Application Part protocol.</xs:documentation>
|
510
|
+
</xs:annotation>
|
511
|
+
</xs:enumeration>
|
512
|
+
<xs:enumeration value="NetBIOS">
|
513
|
+
<xs:annotation>
|
514
|
+
<xs:documentation>Specifies the Network Basic Input/Output System protocol.</xs:documentation>
|
515
|
+
</xs:annotation>
|
516
|
+
</xs:enumeration>
|
517
|
+
<xs:enumeration value="NNTP">
|
518
|
+
<xs:annotation>
|
519
|
+
<xs:documentation>Specifies the Network News Transfer Protocol.</xs:documentation>
|
520
|
+
</xs:annotation>
|
521
|
+
</xs:enumeration>
|
522
|
+
<xs:enumeration value="NTP">
|
523
|
+
<xs:annotation>
|
524
|
+
<xs:documentation>Specifies the Network Time Protocol.</xs:documentation>
|
525
|
+
</xs:annotation>
|
526
|
+
</xs:enumeration>
|
527
|
+
<xs:enumeration value="NTCIP">
|
528
|
+
<xs:annotation>
|
529
|
+
<xs:documentation>Specifies the National Transportation Communications for Intelligent Transportation System Protocol.</xs:documentation>
|
530
|
+
</xs:annotation>
|
531
|
+
</xs:enumeration>
|
532
|
+
<xs:enumeration value="RADIUS">
|
533
|
+
<xs:annotation>
|
534
|
+
<xs:documentation>Specifies the Remote Authentication Dial In User Service protocol.</xs:documentation>
|
535
|
+
</xs:annotation>
|
536
|
+
</xs:enumeration>
|
537
|
+
<xs:enumeration value="RDP">
|
538
|
+
<xs:annotation>
|
539
|
+
<xs:documentation>Specifies the Remote Desktop Protocol.</xs:documentation>
|
540
|
+
</xs:annotation>
|
541
|
+
</xs:enumeration>
|
542
|
+
<xs:enumeration value="rlogin">
|
543
|
+
<xs:annotation>
|
544
|
+
<xs:documentation>Specifies the rlogin protocol.</xs:documentation>
|
545
|
+
</xs:annotation>
|
546
|
+
</xs:enumeration>
|
547
|
+
<xs:enumeration value="rsync">
|
548
|
+
<xs:annotation>
|
549
|
+
<xs:documentation>Specifies the rsync otocol.</xs:documentation>
|
550
|
+
</xs:annotation>
|
551
|
+
</xs:enumeration>
|
552
|
+
<xs:enumeration value="RTP">
|
553
|
+
<xs:annotation>
|
554
|
+
<xs:documentation>Specifies the Real-time Transport Protocol.</xs:documentation>
|
555
|
+
</xs:annotation>
|
556
|
+
</xs:enumeration>
|
557
|
+
<xs:enumeration value="RTSP">
|
558
|
+
<xs:annotation>
|
559
|
+
<xs:documentation>Specifies the Real-time Transport Streaming Protocol.</xs:documentation>
|
560
|
+
</xs:annotation>
|
561
|
+
</xs:enumeration>
|
562
|
+
<xs:enumeration value="SISNAPI">
|
563
|
+
<xs:annotation>
|
564
|
+
<xs:documentation>Specifies the Siebel Internet Session Network API protocol.</xs:documentation>
|
565
|
+
</xs:annotation>
|
566
|
+
</xs:enumeration>
|
567
|
+
<xs:enumeration value="SIP">
|
568
|
+
<xs:annotation>
|
569
|
+
<xs:documentation>Specifies the Session Initiation Protocol.</xs:documentation>
|
570
|
+
</xs:annotation>
|
571
|
+
</xs:enumeration>
|
572
|
+
<xs:enumeration value="SNMP">
|
573
|
+
<xs:annotation>
|
574
|
+
<xs:documentation>Specifies the Simple Network Management Protocol.</xs:documentation>
|
575
|
+
</xs:annotation>
|
576
|
+
</xs:enumeration>
|
577
|
+
<xs:enumeration value="STUN">
|
578
|
+
<xs:annotation>
|
579
|
+
<xs:documentation>Specifies the Session Traversal Utilities for NAT protocol.</xs:documentation>
|
580
|
+
</xs:annotation>
|
581
|
+
</xs:enumeration>
|
582
|
+
<xs:enumeration value="TUP">
|
583
|
+
<xs:annotation>
|
584
|
+
<xs:documentation>Specifies the Telephonse User Part protocol.</xs:documentation>
|
585
|
+
</xs:annotation>
|
586
|
+
</xs:enumeration>
|
587
|
+
<xs:enumeration value="TCAP">
|
588
|
+
<xs:annotation>
|
589
|
+
<xs:documentation>Specifies the Transaction Capabilities Application Part protocol.</xs:documentation>
|
590
|
+
</xs:annotation>
|
591
|
+
</xs:enumeration>
|
592
|
+
<xs:enumeration value="TFTP">
|
593
|
+
<xs:annotation>
|
594
|
+
<xs:documentation>Specifies the Trivial File Transfer Protocol.</xs:documentation>
|
595
|
+
</xs:annotation>
|
596
|
+
</xs:enumeration>
|
597
|
+
<xs:enumeration value="WebDAV">
|
598
|
+
<xs:annotation>
|
599
|
+
<xs:documentation>Specifies the Web Distributed Authoring and Versioning protocol.</xs:documentation>
|
600
|
+
</xs:annotation>
|
601
|
+
</xs:enumeration>
|
602
|
+
<xs:enumeration value="XMPP">
|
603
|
+
<xs:annotation>
|
604
|
+
<xs:documentation>Specifies the Extensible Messaging and Presence Protocol.</xs:documentation>
|
605
|
+
</xs:annotation>
|
606
|
+
</xs:enumeration>
|
607
|
+
</xs:restriction>
|
608
|
+
</xs:simpleType>
|
609
|
+
</xs:schema>
|