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,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.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.1</version>
|
8
|
+
<date>01/22/2014</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-2014, 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">
|
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,540 @@
|
|
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.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.1</version>
|
8
|
+
<date>01/22/2014</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-2014, 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>
|
27
|
+
<xs:extension base="cyboxCommon:ObjectPropertiesType">
|
28
|
+
<xs:sequence>
|
29
|
+
<xs:element name="Creation_Time" type="cyboxCommon:DateTimeObjectPropertyType" minOccurs="0">
|
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 name="Layer3_Protocol" type="NetworkConnectionObj:Layer3ProtocolType" minOccurs="0">
|
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 name="Layer4_Protocol" type="cyboxCommon:Layer4ProtocolType" minOccurs="0">
|
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 name="Layer7_Protocol" type="NetworkConnectionObj:Layer7ProtocolType" minOccurs="0">
|
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 name="Source_Socket_Address" type="SocketAddressObj:SocketAddressObjectType" minOccurs="0">
|
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 name="Source_TCP_State" type="NetworkConnectionObj:TCPStateEnum" minOccurs="0" maxOccurs="1">
|
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 name="Destination_Socket_Address" type="SocketAddressObj:SocketAddressObjectType" minOccurs="0">
|
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 name="Destination_TCP_State" type="NetworkConnectionObj:TCPStateEnum" minOccurs="0" maxOccurs="1">
|
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" type="NetworkConnectionObj:Layer7ConnectionsType" minOccurs="0">
|
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 name="datatype" type="cyboxCommon:DatatypeEnum" use="optional" fixed="string">
|
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="Layer7ProtocolType">
|
118
|
+
<xs:annotation>
|
119
|
+
<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>
|
120
|
+
</xs:annotation>
|
121
|
+
<xs:simpleContent>
|
122
|
+
<xs:restriction base="cyboxCommon:BaseObjectPropertyType">
|
123
|
+
<xs:simpleType>
|
124
|
+
<xs:union memberTypes="NetworkConnectionObj:Layer7ProtocolEnum xs:string"/>
|
125
|
+
</xs:simpleType>
|
126
|
+
<xs:attribute name="datatype" type="cyboxCommon:DatatypeEnum" use="optional" fixed="string">
|
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:simpleType name="TCPStateEnum">
|
135
|
+
<xs:annotation>
|
136
|
+
<xs:documentation>The ConnectionStateEnum type is an enumeration of TCP connection states.</xs:documentation>
|
137
|
+
</xs:annotation>
|
138
|
+
<xs:restriction base="xs:string">
|
139
|
+
<xs:enumeration value="UNKNOWN">
|
140
|
+
<xs:annotation>
|
141
|
+
<xs:documentation>Indicates an unknown TCP connection state.</xs:documentation>
|
142
|
+
</xs:annotation>
|
143
|
+
</xs:enumeration>
|
144
|
+
<xs:enumeration value="CLOSED">
|
145
|
+
<xs:annotation>
|
146
|
+
<xs:documentation>Indicates the closed TCP connection state--i.e. no connection state at all.</xs:documentation>
|
147
|
+
</xs:annotation>
|
148
|
+
</xs:enumeration>
|
149
|
+
<xs:enumeration value="LISTENING">
|
150
|
+
<xs:annotation>
|
151
|
+
<xs:documentation>Indicates the listening TCP connection state.</xs:documentation>
|
152
|
+
</xs:annotation>
|
153
|
+
</xs:enumeration>
|
154
|
+
<xs:enumeration value="SYN_SENT">
|
155
|
+
<xs:annotation>
|
156
|
+
<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>
|
157
|
+
</xs:annotation>
|
158
|
+
</xs:enumeration>
|
159
|
+
<xs:enumeration value="SYN_RECEIVED">
|
160
|
+
<xs:annotation>
|
161
|
+
<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>
|
162
|
+
</xs:annotation>
|
163
|
+
</xs:enumeration>
|
164
|
+
<xs:enumeration value="ESTABLISHED">
|
165
|
+
<xs:annotation>
|
166
|
+
<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>
|
167
|
+
</xs:annotation>
|
168
|
+
</xs:enumeration>
|
169
|
+
<xs:enumeration value="FIN_WAIT_1">
|
170
|
+
<xs:annotation>
|
171
|
+
<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>
|
172
|
+
</xs:annotation>
|
173
|
+
</xs:enumeration>
|
174
|
+
<xs:enumeration value="FIN_WAIT_2">
|
175
|
+
<xs:annotation>
|
176
|
+
<xs:documentation>Indicates the FIN-WAIT-2 TCP connection state--i.e. waiting for a connection termination request from the remote TCP.</xs:documentation>
|
177
|
+
</xs:annotation>
|
178
|
+
</xs:enumeration>
|
179
|
+
<xs:enumeration value="CLOSE_WAIT">
|
180
|
+
<xs:annotation>
|
181
|
+
<xs:documentation>Indicates the CLOSE-WAIT TCP connection state--i.e. waiting for a connection termination request from the local user.</xs:documentation>
|
182
|
+
</xs:annotation>
|
183
|
+
</xs:enumeration>
|
184
|
+
<xs:enumeration value="CLOSING">
|
185
|
+
<xs:annotation>
|
186
|
+
<xs:documentation>Indicates the CLOSING TCP connection state--i.e. waiting for a connection termination request acknowledgment from the remote TCP.</xs:documentation>
|
187
|
+
</xs:annotation>
|
188
|
+
</xs:enumeration>
|
189
|
+
<xs:enumeration value="LAST_ACK">
|
190
|
+
<xs:annotation>
|
191
|
+
<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>
|
192
|
+
</xs:annotation>
|
193
|
+
</xs:enumeration>
|
194
|
+
<xs:enumeration value="TIME_WAIT">
|
195
|
+
<xs:annotation>
|
196
|
+
<xs:documentation>Indicates the TIME-WAIT connection state--i.e. waiting for enough time to pass to be sure the remote TCP received the acknowledgment of its connection termination request.</xs:documentation>
|
197
|
+
</xs:annotation>
|
198
|
+
</xs:enumeration>
|
199
|
+
<xs:enumeration value="DELETING_TCB">
|
200
|
+
<xs:annotation>
|
201
|
+
<xs:documentation>Indicates the DELETE-TCB connection state--i.e. the Transmission Control Block (TCB) is being deleted.</xs:documentation>
|
202
|
+
</xs:annotation>
|
203
|
+
</xs:enumeration>
|
204
|
+
</xs:restriction>
|
205
|
+
</xs:simpleType>
|
206
|
+
<xs:simpleType name="Layer3ProtocolEnum">
|
207
|
+
<xs:annotation>
|
208
|
+
<xs:documentation>Layer3ProtocolEnum is a non-exhaustive enumeration of Layer 3 (network) layer protocols.</xs:documentation>
|
209
|
+
</xs:annotation>
|
210
|
+
<xs:restriction base="xs:string">
|
211
|
+
<xs:enumeration value="IPv4">
|
212
|
+
<xs:annotation>
|
213
|
+
<xs:documentation>Specifies the Internet Protocol, version 4.</xs:documentation>
|
214
|
+
</xs:annotation>
|
215
|
+
</xs:enumeration>
|
216
|
+
<xs:enumeration value="IPv6">
|
217
|
+
<xs:annotation>
|
218
|
+
<xs:documentation>Specifies the Internet Protocol, version 6.</xs:documentation>
|
219
|
+
</xs:annotation>
|
220
|
+
</xs:enumeration>
|
221
|
+
<xs:enumeration value="ICMP">
|
222
|
+
<xs:annotation>
|
223
|
+
<xs:documentation>Specifies the Internet Control Message Protocol.</xs:documentation>
|
224
|
+
</xs:annotation>
|
225
|
+
</xs:enumeration>
|
226
|
+
<xs:enumeration value="IGMP">
|
227
|
+
<xs:annotation>
|
228
|
+
<xs:documentation>Specifies the Internet Group Management Protocol.</xs:documentation>
|
229
|
+
</xs:annotation>
|
230
|
+
</xs:enumeration>
|
231
|
+
<xs:enumeration value="IGRP">
|
232
|
+
<xs:annotation>
|
233
|
+
<xs:documentation>Specifies the Interior Gateway Routing Protocol.</xs:documentation>
|
234
|
+
</xs:annotation>
|
235
|
+
</xs:enumeration>
|
236
|
+
<xs:enumeration value="CLNP">
|
237
|
+
<xs:annotation>
|
238
|
+
<xs:documentation>Specifies the Connectionless Networking Protocol.</xs:documentation>
|
239
|
+
</xs:annotation>
|
240
|
+
</xs:enumeration>
|
241
|
+
<xs:enumeration value="EGP">
|
242
|
+
<xs:annotation>
|
243
|
+
<xs:documentation>Specifies the Exterior Gateway Protocol.</xs:documentation>
|
244
|
+
</xs:annotation>
|
245
|
+
</xs:enumeration>
|
246
|
+
<xs:enumeration value="EIGRP">
|
247
|
+
<xs:annotation>
|
248
|
+
<xs:documentation>Specifies the Enhanced Interior Gateway Routing Protocol.</xs:documentation>
|
249
|
+
</xs:annotation>
|
250
|
+
</xs:enumeration>
|
251
|
+
<xs:enumeration value="IPSec">
|
252
|
+
<xs:annotation>
|
253
|
+
<xs:documentation>Specifies the Internet Protocol Security suite.</xs:documentation>
|
254
|
+
</xs:annotation>
|
255
|
+
</xs:enumeration>
|
256
|
+
<xs:enumeration value="IPX">
|
257
|
+
<xs:annotation>
|
258
|
+
<xs:documentation>Specifies the Internetwork Packet Exchange protocol.</xs:documentation>
|
259
|
+
</xs:annotation>
|
260
|
+
</xs:enumeration>
|
261
|
+
<xs:enumeration value="Routed-SMLT">
|
262
|
+
<xs:annotation>
|
263
|
+
<xs:documentation>Specifies the Routed Split Multi-Link Trunking protocol.</xs:documentation>
|
264
|
+
</xs:annotation>
|
265
|
+
</xs:enumeration>
|
266
|
+
<xs:enumeration value="SCCP">
|
267
|
+
<xs:annotation>
|
268
|
+
<xs:documentation>Specifies the Signalling Connection Control Part protocol.</xs:documentation>
|
269
|
+
</xs:annotation>
|
270
|
+
</xs:enumeration>
|
271
|
+
</xs:restriction>
|
272
|
+
</xs:simpleType>
|
273
|
+
<xs:simpleType name="Layer7ProtocolEnum">
|
274
|
+
<xs:annotation>
|
275
|
+
<xs:documentation>Layer7ProtocolEnum is a non-exhaustive enumeration of Layer 7 (application) layer protocols.</xs:documentation>
|
276
|
+
</xs:annotation>
|
277
|
+
<xs:restriction base="xs:string">
|
278
|
+
<xs:enumeration value="HTTP">
|
279
|
+
<xs:annotation>
|
280
|
+
<xs:documentation>Specifies the Hypertext Transfer Protocol.</xs:documentation>
|
281
|
+
</xs:annotation>
|
282
|
+
</xs:enumeration>
|
283
|
+
<xs:enumeration value="HTTPS">
|
284
|
+
<xs:annotation>
|
285
|
+
<xs:documentation>Specifies the Hypertext Transfer Protocol Secure.</xs:documentation>
|
286
|
+
</xs:annotation>
|
287
|
+
</xs:enumeration>
|
288
|
+
<xs:enumeration value="FTP">
|
289
|
+
<xs:annotation>
|
290
|
+
<xs:documentation>Specifies the File Transfer Protocol.</xs:documentation>
|
291
|
+
</xs:annotation>
|
292
|
+
</xs:enumeration>
|
293
|
+
<xs:enumeration value="SMTP">
|
294
|
+
<xs:annotation>
|
295
|
+
<xs:documentation>Specifies the Simple Mail Transfer Protocol.</xs:documentation>
|
296
|
+
</xs:annotation>
|
297
|
+
</xs:enumeration>
|
298
|
+
<xs:enumeration value="IRC">
|
299
|
+
<xs:annotation>
|
300
|
+
<xs:documentation>Specifies the Internet Relay Chat protocol.</xs:documentation>
|
301
|
+
</xs:annotation>
|
302
|
+
</xs:enumeration>
|
303
|
+
<xs:enumeration value="IDENT">
|
304
|
+
<xs:annotation>
|
305
|
+
<xs:documentation>Specifies the Identification Protocol, IDENT.</xs:documentation>
|
306
|
+
</xs:annotation>
|
307
|
+
</xs:enumeration>
|
308
|
+
<xs:enumeration value="DNS">
|
309
|
+
<xs:annotation>
|
310
|
+
<xs:documentation>Specifies the Domain Name System protocol.</xs:documentation>
|
311
|
+
</xs:annotation>
|
312
|
+
</xs:enumeration>
|
313
|
+
<xs:enumeration value="TELNET">
|
314
|
+
<xs:annotation>
|
315
|
+
<xs:documentation>Specifies the Telnet protocol.</xs:documentation>
|
316
|
+
</xs:annotation>
|
317
|
+
</xs:enumeration>
|
318
|
+
<xs:enumeration value="POP3">
|
319
|
+
<xs:annotation>
|
320
|
+
<xs:documentation>Specifies the Post Office Protocol, version 3.</xs:documentation>
|
321
|
+
</xs:annotation>
|
322
|
+
</xs:enumeration>
|
323
|
+
<xs:enumeration value="IMAP">
|
324
|
+
<xs:annotation>
|
325
|
+
<xs:documentation>Specifies the Internet Message Access Protocol.</xs:documentation>
|
326
|
+
</xs:annotation>
|
327
|
+
</xs:enumeration>
|
328
|
+
<xs:enumeration value="SSH">
|
329
|
+
<xs:annotation>
|
330
|
+
<xs:documentation>Specifies the Secure Shell protocol.</xs:documentation>
|
331
|
+
</xs:annotation>
|
332
|
+
</xs:enumeration>
|
333
|
+
<xs:enumeration value="SMB">
|
334
|
+
<xs:annotation>
|
335
|
+
<xs:documentation>Specifies the Microsoft Server Message Block protocol.</xs:documentation>
|
336
|
+
</xs:annotation>
|
337
|
+
</xs:enumeration>
|
338
|
+
<xs:enumeration value="ADC">
|
339
|
+
<xs:annotation>
|
340
|
+
<xs:documentation>Specifies the Advance Direct Connect protocol.</xs:documentation>
|
341
|
+
</xs:annotation>
|
342
|
+
</xs:enumeration>
|
343
|
+
<xs:enumeration value="AFP">
|
344
|
+
<xs:annotation>
|
345
|
+
<xs:documentation>Specifies the Apple Filing Protocol.</xs:documentation>
|
346
|
+
</xs:annotation>
|
347
|
+
</xs:enumeration>
|
348
|
+
<xs:enumeration value="BACNet">
|
349
|
+
<xs:annotation>
|
350
|
+
<xs:documentation>Specifies the Building Automation and Control Network protocol.</xs:documentation>
|
351
|
+
</xs:annotation>
|
352
|
+
</xs:enumeration>
|
353
|
+
<xs:enumeration value="BitTorrent">
|
354
|
+
<xs:annotation>
|
355
|
+
<xs:documentation>Specifies the BitTorrent protocol.</xs:documentation>
|
356
|
+
</xs:annotation>
|
357
|
+
</xs:enumeration>
|
358
|
+
<xs:enumeration value="BOOTP">
|
359
|
+
<xs:annotation>
|
360
|
+
<xs:documentation>Specifies the Bootstrap Protocol.</xs:documentation>
|
361
|
+
</xs:annotation>
|
362
|
+
</xs:enumeration>
|
363
|
+
<xs:enumeration value="Diameter">
|
364
|
+
<xs:annotation>
|
365
|
+
<xs:documentation>Specifies the Diameter protocol.</xs:documentation>
|
366
|
+
</xs:annotation>
|
367
|
+
</xs:enumeration>
|
368
|
+
<xs:enumeration value="DICOM">
|
369
|
+
<xs:annotation>
|
370
|
+
<xs:documentation>Specifies the Digital Imaging and Communications in Medicine protocol.</xs:documentation>
|
371
|
+
</xs:annotation>
|
372
|
+
</xs:enumeration>
|
373
|
+
<xs:enumeration value="DICT">
|
374
|
+
<xs:annotation>
|
375
|
+
<xs:documentation>Specifies the Dictionary protocol.</xs:documentation>
|
376
|
+
</xs:annotation>
|
377
|
+
</xs:enumeration>
|
378
|
+
<xs:enumeration value="DSM-CC">
|
379
|
+
<xs:annotation>
|
380
|
+
<xs:documentation>Specifies the Digital Storage Media Command and Control protocol.</xs:documentation>
|
381
|
+
</xs:annotation>
|
382
|
+
</xs:enumeration>
|
383
|
+
<xs:enumeration value="DSNP">
|
384
|
+
<xs:annotation>
|
385
|
+
<xs:documentation>Specifies the Distributed Social Networking Protocol.</xs:documentation>
|
386
|
+
</xs:annotation>
|
387
|
+
</xs:enumeration>
|
388
|
+
<xs:enumeration value="DHCP">
|
389
|
+
<xs:annotation>
|
390
|
+
<xs:documentation>Specifies the Dynamic Host Configuration Protocol.</xs:documentation>
|
391
|
+
</xs:annotation>
|
392
|
+
</xs:enumeration>
|
393
|
+
<xs:enumeration value="ED2K">
|
394
|
+
<xs:annotation>
|
395
|
+
<xs:documentation>Specifies the EDonkey2000 protocol.</xs:documentation>
|
396
|
+
</xs:annotation>
|
397
|
+
</xs:enumeration>
|
398
|
+
<xs:enumeration value="Finger">
|
399
|
+
<xs:annotation>
|
400
|
+
<xs:documentation>Specifies the Finger protocol.</xs:documentation>
|
401
|
+
</xs:annotation>
|
402
|
+
</xs:enumeration>
|
403
|
+
<xs:enumeration value="Gnutella">
|
404
|
+
<xs:annotation>
|
405
|
+
<xs:documentation>Specifies the Gnutella protocol.</xs:documentation>
|
406
|
+
</xs:annotation>
|
407
|
+
</xs:enumeration>
|
408
|
+
<xs:enumeration value="Gopher">
|
409
|
+
<xs:annotation>
|
410
|
+
<xs:documentation>Specifies the Gopher protocol.</xs:documentation>
|
411
|
+
</xs:annotation>
|
412
|
+
</xs:enumeration>
|
413
|
+
<xs:enumeration value="ISUP">
|
414
|
+
<xs:annotation>
|
415
|
+
<xs:documentation>Specifies the ISDN User Part protocol.</xs:documentation>
|
416
|
+
</xs:annotation>
|
417
|
+
</xs:enumeration>
|
418
|
+
<xs:enumeration value="LDAP">
|
419
|
+
<xs:annotation>
|
420
|
+
<xs:documentation>Specifies the Lightweight Directory Access Protocol.</xs:documentation>
|
421
|
+
</xs:annotation>
|
422
|
+
</xs:enumeration>
|
423
|
+
<xs:enumeration value="MIME">
|
424
|
+
<xs:annotation>
|
425
|
+
<xs:documentation>Specifies the Multipurpose Internet Mail Extensions protocol.</xs:documentation>
|
426
|
+
</xs:annotation>
|
427
|
+
</xs:enumeration>
|
428
|
+
<xs:enumeration value="MSNP">
|
429
|
+
<xs:annotation>
|
430
|
+
<xs:documentation>Specifies the Microsoft Notification Protocol.</xs:documentation>
|
431
|
+
</xs:annotation>
|
432
|
+
</xs:enumeration>
|
433
|
+
<xs:enumeration value="MAP">
|
434
|
+
<xs:annotation>
|
435
|
+
<xs:documentation>Specifies the Mobile Application Part protocol.</xs:documentation>
|
436
|
+
</xs:annotation>
|
437
|
+
</xs:enumeration>
|
438
|
+
<xs:enumeration value="NetBIOS">
|
439
|
+
<xs:annotation>
|
440
|
+
<xs:documentation>Specifies the Network Basic Input/Output System protocol.</xs:documentation>
|
441
|
+
</xs:annotation>
|
442
|
+
</xs:enumeration>
|
443
|
+
<xs:enumeration value="NNTP">
|
444
|
+
<xs:annotation>
|
445
|
+
<xs:documentation>Specifies the Network News Transfer Protocol.</xs:documentation>
|
446
|
+
</xs:annotation>
|
447
|
+
</xs:enumeration>
|
448
|
+
<xs:enumeration value="NTP">
|
449
|
+
<xs:annotation>
|
450
|
+
<xs:documentation>Specifies the Network Time Protocol.</xs:documentation>
|
451
|
+
</xs:annotation>
|
452
|
+
</xs:enumeration>
|
453
|
+
<xs:enumeration value="NTCIP">
|
454
|
+
<xs:annotation>
|
455
|
+
<xs:documentation>Specifies the National Transportation Communications for Intelligent Transportation System Protocol.</xs:documentation>
|
456
|
+
</xs:annotation>
|
457
|
+
</xs:enumeration>
|
458
|
+
<xs:enumeration value="RADIUS">
|
459
|
+
<xs:annotation>
|
460
|
+
<xs:documentation>Specifies the Remote Authentication Dial In User Service protocol.</xs:documentation>
|
461
|
+
</xs:annotation>
|
462
|
+
</xs:enumeration>
|
463
|
+
<xs:enumeration value="RDP">
|
464
|
+
<xs:annotation>
|
465
|
+
<xs:documentation>Specifies the Remote Desktop Protocol.</xs:documentation>
|
466
|
+
</xs:annotation>
|
467
|
+
</xs:enumeration>
|
468
|
+
<xs:enumeration value="rlogin">
|
469
|
+
<xs:annotation>
|
470
|
+
<xs:documentation>Specifies the rlogin protocol.</xs:documentation>
|
471
|
+
</xs:annotation>
|
472
|
+
</xs:enumeration>
|
473
|
+
<xs:enumeration value="rsync">
|
474
|
+
<xs:annotation>
|
475
|
+
<xs:documentation>Specifies the rsync potocol.</xs:documentation>
|
476
|
+
</xs:annotation>
|
477
|
+
</xs:enumeration>
|
478
|
+
<xs:enumeration value="RTP">
|
479
|
+
<xs:annotation>
|
480
|
+
<xs:documentation>Specifies the Real-time Transport Protocol.</xs:documentation>
|
481
|
+
</xs:annotation>
|
482
|
+
</xs:enumeration>
|
483
|
+
<xs:enumeration value="RTSP">
|
484
|
+
<xs:annotation>
|
485
|
+
<xs:documentation>Specifies the Real-time Transport Streaming Protocol.</xs:documentation>
|
486
|
+
</xs:annotation>
|
487
|
+
</xs:enumeration>
|
488
|
+
<xs:enumeration value="SISNAPI">
|
489
|
+
<xs:annotation>
|
490
|
+
<xs:documentation>Specifies the Siebel Internet Session Network API protocol.</xs:documentation>
|
491
|
+
</xs:annotation>
|
492
|
+
</xs:enumeration>
|
493
|
+
<xs:enumeration value="SIP">
|
494
|
+
<xs:annotation>
|
495
|
+
<xs:documentation>Specifies the Session Initiation Protocol.</xs:documentation>
|
496
|
+
</xs:annotation>
|
497
|
+
</xs:enumeration>
|
498
|
+
<xs:enumeration value="SNMP">
|
499
|
+
<xs:annotation>
|
500
|
+
<xs:documentation>Specifies the Simple Network Management Protocol.</xs:documentation>
|
501
|
+
</xs:annotation>
|
502
|
+
</xs:enumeration>
|
503
|
+
<xs:enumeration value="STUN">
|
504
|
+
<xs:annotation>
|
505
|
+
<xs:documentation>Specifies the Session Traversal Utilities for NAT protocol.</xs:documentation>
|
506
|
+
</xs:annotation>
|
507
|
+
</xs:enumeration>
|
508
|
+
<xs:enumeration value="TUP">
|
509
|
+
<xs:annotation>
|
510
|
+
<xs:documentation>Specifies the Telephone User Part protocol.</xs:documentation>
|
511
|
+
</xs:annotation>
|
512
|
+
</xs:enumeration>
|
513
|
+
<xs:enumeration value="TCAP">
|
514
|
+
<xs:annotation>
|
515
|
+
<xs:documentation>Specifies the Transaction Capabilities Application Part protocol.</xs:documentation>
|
516
|
+
</xs:annotation>
|
517
|
+
</xs:enumeration>
|
518
|
+
<xs:enumeration value="TFTP">
|
519
|
+
<xs:annotation>
|
520
|
+
<xs:documentation>Specifies the Trivial File Transfer Protocol.</xs:documentation>
|
521
|
+
</xs:annotation>
|
522
|
+
</xs:enumeration>
|
523
|
+
<xs:enumeration value="WebDAV">
|
524
|
+
<xs:annotation>
|
525
|
+
<xs:documentation>Specifies the Web Distributed Authoring and Versioning protocol.</xs:documentation>
|
526
|
+
</xs:annotation>
|
527
|
+
</xs:enumeration>
|
528
|
+
<xs:enumeration value="XMPP">
|
529
|
+
<xs:annotation>
|
530
|
+
<xs:documentation>Specifies the Extensible Messaging and Presence Protocol.</xs:documentation>
|
531
|
+
</xs:annotation>
|
532
|
+
</xs:enumeration>
|
533
|
+
<xs:enumeration value="Modbus">
|
534
|
+
<xs:annotation>
|
535
|
+
<xs:documentation>Specifies the Modbus Protocol.</xs:documentation>
|
536
|
+
</xs:annotation>
|
537
|
+
</xs:enumeration>
|
538
|
+
</xs:restriction>
|
539
|
+
</xs:simpleType>
|
540
|
+
</xs:schema>
|