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,155 @@
|
|
1
|
+
<?xml version="1.0" encoding="utf-8"?>
|
2
|
+
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:AddressObj="http://cybox.mitre.org/objects#AddressObject-2" xmlns:NetworkRouteEntryObj="http://cybox.mitre.org/objects#NetworkRouteEntryObject-2" xmlns:cyboxCommon="http://cybox.mitre.org/common-2" targetNamespace="http://cybox.mitre.org/objects#NetworkRouteEntryObject-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_Route_Entry_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#AddressObject-2" schemaLocation="Address_Object.xsd"/>
|
15
|
+
<xs:element name="Network_Route_Entry" type="NetworkRouteEntryObj:NetworkRouteEntryObjectType">
|
16
|
+
<xs:annotation>
|
17
|
+
<xs:documentation>The Network_Route_Entry object is intended to characterize generic system network routing table entries.</xs:documentation>
|
18
|
+
</xs:annotation>
|
19
|
+
</xs:element>
|
20
|
+
<xs:complexType name="NetworkRouteEntryObjectType" mixed="false">
|
21
|
+
<xs:annotation>
|
22
|
+
<xs:documentation>The NetworkRouteEntryObjectType type is intended to characterize generic system network routing table entries.</xs:documentation>
|
23
|
+
</xs:annotation>
|
24
|
+
<xs:complexContent>
|
25
|
+
<xs:extension base="cyboxCommon:ObjectPropertiesType">
|
26
|
+
<xs:sequence>
|
27
|
+
<xs:element name="Destination_Address" type="AddressObj:AddressObjectType" minOccurs="0">
|
28
|
+
<xs:annotation>
|
29
|
+
<xs:documentation>The Destination_Address field specifies the destination IP address of the network route. It imports and uses the AddressObjectType from the CybOX Address object.</xs:documentation>
|
30
|
+
</xs:annotation>
|
31
|
+
</xs:element>
|
32
|
+
<xs:element name="Origin" type="AddressObj:AddressObjectType" minOccurs="0">
|
33
|
+
<xs:annotation>
|
34
|
+
<xs:documentation>The Origin field specifies the origin address of the network route. It imports and uses the AddressObjectType from the CybOX Address object.</xs:documentation>
|
35
|
+
</xs:annotation>
|
36
|
+
</xs:element>
|
37
|
+
<xs:element name="Netmask" type="AddressObj:AddressObjectType" minOccurs="0">
|
38
|
+
<xs:annotation>
|
39
|
+
<xs:documentation>The Netmask field specifies the netmask for te destination network.</xs:documentation>
|
40
|
+
</xs:annotation>
|
41
|
+
</xs:element>
|
42
|
+
<xs:element name="Gateway_Address" type="AddressObj:AddressObjectType" minOccurs="0">
|
43
|
+
<xs:annotation>
|
44
|
+
<xs:documentation>The Gateway_Address field specifies the IP address of the gateway through which all packets using this route will be gatewayed. It imports and uses the AddressObjectType from the CybOX Address object.</xs:documentation>
|
45
|
+
</xs:annotation>
|
46
|
+
</xs:element>
|
47
|
+
<xs:element name="Metric" type="cyboxCommon:UnsignedLongObjectPropertyType" minOccurs="0">
|
48
|
+
<xs:annotation>
|
49
|
+
<xs:documentation>The Metric field specifies the distance to the target, in terms of hops.</xs:documentation>
|
50
|
+
</xs:annotation>
|
51
|
+
</xs:element>
|
52
|
+
<xs:element name="Type" type="NetworkRouteEntryObj:RouteType" minOccurs="0">
|
53
|
+
<xs:annotation>
|
54
|
+
<xs:documentation>The Type field specifies the type of network route being characterized.</xs:documentation>
|
55
|
+
</xs:annotation>
|
56
|
+
</xs:element>
|
57
|
+
<xs:element name="Protocol" type="cyboxCommon:StringObjectPropertyType" minOccurs="0">
|
58
|
+
<xs:annotation>
|
59
|
+
<xs:documentation>The Protocol field specifies the name of the routing protocol that the route was added with.</xs:documentation>
|
60
|
+
</xs:annotation>
|
61
|
+
</xs:element>
|
62
|
+
<xs:element name="Interface" type="cyboxCommon:StringObjectPropertyType" minOccurs="0">
|
63
|
+
<xs:annotation>
|
64
|
+
<xs:documentation>The Interface field specifies the name of the network interface to which all packets for the route will be sent.</xs:documentation>
|
65
|
+
</xs:annotation>
|
66
|
+
</xs:element>
|
67
|
+
<xs:element name="Preferred_Lifetime" type="cyboxCommon:DurationObjectPropertyType" minOccurs="0">
|
68
|
+
<xs:annotation>
|
69
|
+
<xs:documentation>The Preferred_Lifetime field specifies the preferred lifetime of the route, in seconds.</xs:documentation>
|
70
|
+
</xs:annotation>
|
71
|
+
</xs:element>
|
72
|
+
<xs:element name="Valid_Lifetime" type="cyboxCommon:DurationObjectPropertyType" minOccurs="0">
|
73
|
+
<xs:annotation>
|
74
|
+
<xs:documentation>The Valid_Lifetime field specifies the lifetime for which the route is valid, in seconds.</xs:documentation>
|
75
|
+
</xs:annotation>
|
76
|
+
</xs:element>
|
77
|
+
<xs:element name="Route_Age" type="cyboxCommon:DurationObjectPropertyType" minOccurs="0">
|
78
|
+
<xs:annotation>
|
79
|
+
<xs:documentation>The Route_Age field specifies the number of seconds since the route was added or modified in the routing table.</xs:documentation>
|
80
|
+
</xs:annotation>
|
81
|
+
</xs:element>
|
82
|
+
</xs:sequence>
|
83
|
+
<xs:attribute name="is_ipv6" type="xs:boolean">
|
84
|
+
<xs:annotation>
|
85
|
+
<xs:documentation>The is_ipv6 field specifies whether the route uses IPv6 addresses.</xs:documentation>
|
86
|
+
</xs:annotation>
|
87
|
+
</xs:attribute>
|
88
|
+
<xs:attribute name="is_autoconfigure_address" type="xs:boolean">
|
89
|
+
<xs:annotation>
|
90
|
+
<xs:documentation>The is_autoconfigure_address field specifies whether the destination IP address for the route is automatically configured.</xs:documentation>
|
91
|
+
</xs:annotation>
|
92
|
+
</xs:attribute>
|
93
|
+
<xs:attribute name="is_immortal" type="xs:boolean">
|
94
|
+
<xs:annotation>
|
95
|
+
<xs:documentation>The is_immortal field specifies whether the lifetimes for the route prefixes are infinite.</xs:documentation>
|
96
|
+
</xs:annotation>
|
97
|
+
</xs:attribute>
|
98
|
+
<xs:attribute name="is_loopback" type="xs:boolean">
|
99
|
+
<xs:annotation>
|
100
|
+
<xs:documentation>The is_loopback field specifies whether the route is the default for all packets sent to local network addresses.</xs:documentation>
|
101
|
+
</xs:annotation>
|
102
|
+
</xs:attribute>
|
103
|
+
<xs:attribute name="is_publish" type="xs:boolean">
|
104
|
+
<xs:annotation>
|
105
|
+
<xs:documentation>The is_publish field specifies whether the route is published.</xs:documentation>
|
106
|
+
</xs:annotation>
|
107
|
+
</xs:attribute>
|
108
|
+
</xs:extension>
|
109
|
+
</xs:complexContent>
|
110
|
+
</xs:complexType>
|
111
|
+
<xs:complexType name="RouteType">
|
112
|
+
<xs:annotation>
|
113
|
+
<xs:documentation>RouteType specifies route types, via a union of the RouteTypeEnum 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>
|
114
|
+
</xs:annotation>
|
115
|
+
<xs:simpleContent>
|
116
|
+
<xs:restriction base="cyboxCommon:BaseObjectPropertyType">
|
117
|
+
<xs:simpleType>
|
118
|
+
<xs:union memberTypes="NetworkRouteEntryObj:RouteTypeEnum xs:string"/>
|
119
|
+
</xs:simpleType>
|
120
|
+
<xs:attribute name="datatype" type="cyboxCommon:DatatypeEnum" fixed="string">
|
121
|
+
<xs:annotation>
|
122
|
+
<xs:documentation>This attribute is optional and specifies the expected type for the value of the specified property.</xs:documentation>
|
123
|
+
</xs:annotation>
|
124
|
+
</xs:attribute>
|
125
|
+
</xs:restriction>
|
126
|
+
</xs:simpleContent>
|
127
|
+
</xs:complexType>
|
128
|
+
<xs:simpleType name="RouteTypeEnum">
|
129
|
+
<xs:annotation>
|
130
|
+
<xs:documentation>The RouteTypeEnum type is an enumeration of network route types.</xs:documentation>
|
131
|
+
</xs:annotation>
|
132
|
+
<xs:restriction base="xs:string">
|
133
|
+
<xs:enumeration value="Other">
|
134
|
+
<xs:annotation>
|
135
|
+
<xs:documentation/>
|
136
|
+
</xs:annotation>
|
137
|
+
</xs:enumeration>
|
138
|
+
<xs:enumeration value="Invalid">
|
139
|
+
<xs:annotation>
|
140
|
+
<xs:documentation>Indicates a route that is invalid.</xs:documentation>
|
141
|
+
</xs:annotation>
|
142
|
+
</xs:enumeration>
|
143
|
+
<xs:enumeration value="Direct">
|
144
|
+
<xs:annotation>
|
145
|
+
<xs:documentation>Indicates routing from one machine directly to another, where both machines reside on the same physical network.</xs:documentation>
|
146
|
+
</xs:annotation>
|
147
|
+
</xs:enumeration>
|
148
|
+
<xs:enumeration value="Indirect">
|
149
|
+
<xs:annotation>
|
150
|
+
<xs:documentation>Indicates routing that is not direct and must be set to a gateway.</xs:documentation>
|
151
|
+
</xs:annotation>
|
152
|
+
</xs:enumeration>
|
153
|
+
</xs:restriction>
|
154
|
+
</xs:simpleType>
|
155
|
+
</xs:schema>
|
@@ -0,0 +1,93 @@
|
|
1
|
+
<?xml version="1.0" encoding="utf-8"?>
|
2
|
+
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:NetworkRouteObj="http://cybox.mitre.org/objects#NetworkRouteObject-2" xmlns:cyboxCommon="http://cybox.mitre.org/common-2" xmlns:NetworkRouteEntryObj="http://cybox.mitre.org/objects#NetworkRouteEntryObject-2" targetNamespace="http://cybox.mitre.org/objects#NetworkRouteObject-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_Route_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#NetworkRouteEntryObject-2" schemaLocation="Network_Route_Entry_Object.xsd"/>
|
15
|
+
<xs:element name="Network_Route_Object" type="NetworkRouteObj:NetRouteObjectType">
|
16
|
+
<xs:annotation>
|
17
|
+
<xs:documentation>The Network_Route_Object object is intended to specify a single network route.</xs:documentation>
|
18
|
+
</xs:annotation>
|
19
|
+
</xs:element>
|
20
|
+
<xs:complexType name="NetRouteObjectType">
|
21
|
+
<xs:annotation>
|
22
|
+
<xs:documentation>The NetRouteObjectType type is intended to characterize a specific network route.</xs:documentation>
|
23
|
+
</xs:annotation>
|
24
|
+
<xs:complexContent>
|
25
|
+
<xs:extension base="cyboxCommon:ObjectPropertiesType">
|
26
|
+
<xs:sequence>
|
27
|
+
<xs:element name="Description" type="cyboxCommon:StructuredTextType" minOccurs="0">
|
28
|
+
<xs:annotation>
|
29
|
+
<xs:documentation>The Description field is intended for use in providing a brief description of the network route.</xs:documentation>
|
30
|
+
</xs:annotation>
|
31
|
+
</xs:element>
|
32
|
+
<xs:element name="Network_Route_Entries" type="NetworkRouteObj:NetworkRouteEntriesType" minOccurs="0">
|
33
|
+
<xs:annotation>
|
34
|
+
<xs:documentation>The Network_Route_Entries field is optional and characterizes a set of network route segment entries.</xs:documentation>
|
35
|
+
</xs:annotation>
|
36
|
+
</xs:element>
|
37
|
+
<xs:element name="Preferred_Lifetime" type="cyboxCommon:DurationObjectPropertyType" minOccurs="0">
|
38
|
+
<xs:annotation>
|
39
|
+
<xs:documentation>The Preferred_Lifetime field is intended to specify the preferred time, in seconds, that the IP route entry is valid. A value of 0xffffffff is considered to be infinite.</xs:documentation>
|
40
|
+
</xs:annotation>
|
41
|
+
</xs:element>
|
42
|
+
<xs:element name="Valid_Lifetime" type="cyboxCommon:DurationObjectPropertyType" minOccurs="0">
|
43
|
+
<xs:annotation>
|
44
|
+
<xs:documentation>The Valid_Lifetime field is intended to specify the maximum time, in seconds, that the IP route entry is valid. A value of 0xffffffff is considered to be infinite.</xs:documentation>
|
45
|
+
</xs:annotation>
|
46
|
+
</xs:element>
|
47
|
+
<xs:element name="Route_Age" type="cyboxCommon:DurationObjectPropertyType" minOccurs="0">
|
48
|
+
<xs:annotation>
|
49
|
+
<xs:documentation>The Route_Age field is intended to characterize the number of seconds since the route was added or modified in the network routing table.</xs:documentation>
|
50
|
+
</xs:annotation>
|
51
|
+
</xs:element>
|
52
|
+
</xs:sequence>
|
53
|
+
<xs:attribute name="is_ipv6" type="xs:boolean">
|
54
|
+
<xs:annotation>
|
55
|
+
<xs:documentation>The is_ipv6 field specifies whether or not the route uses IPv6 addresses.</xs:documentation>
|
56
|
+
</xs:annotation>
|
57
|
+
</xs:attribute>
|
58
|
+
<xs:attribute name="is_autoconfigure_address" type="xs:boolean">
|
59
|
+
<xs:annotation>
|
60
|
+
<xs:documentation>The is_autoconfigure_address field specifies if the IP address is autoconfigured.</xs:documentation>
|
61
|
+
</xs:annotation>
|
62
|
+
</xs:attribute>
|
63
|
+
<xs:attribute name="is_immortal" type="xs:boolean">
|
64
|
+
<xs:annotation>
|
65
|
+
<xs:documentation>The is_immortal field specifies if the route is immortal.</xs:documentation>
|
66
|
+
</xs:annotation>
|
67
|
+
</xs:attribute>
|
68
|
+
<xs:attribute name="is_loopback" type="xs:boolean">
|
69
|
+
<xs:annotation>
|
70
|
+
<xs:documentation>The is_loopback field specifies if the route is a loopback route (the gateway is on the local host).</xs:documentation>
|
71
|
+
</xs:annotation>
|
72
|
+
</xs:attribute>
|
73
|
+
<xs:attribute name="is_publish" type="xs:boolean">
|
74
|
+
<xs:annotation>
|
75
|
+
<xs:documentation>The is_publish field specifies if the route is published.</xs:documentation>
|
76
|
+
</xs:annotation>
|
77
|
+
</xs:attribute>
|
78
|
+
</xs:extension>
|
79
|
+
</xs:complexContent>
|
80
|
+
</xs:complexType>
|
81
|
+
<xs:complexType name="NetworkRouteEntriesType">
|
82
|
+
<xs:annotation>
|
83
|
+
<xs:documentation>The NetworkRouteEntriesType type is intended to characterize the set of network route segments for this route.</xs:documentation>
|
84
|
+
</xs:annotation>
|
85
|
+
<xs:sequence>
|
86
|
+
<xs:element name="Network_Route_Entry" type="NetworkRouteEntryObj:NetworkRouteEntryObjectType" minOccurs="0" maxOccurs="unbounded">
|
87
|
+
<xs:annotation>
|
88
|
+
<xs:documentation>The Network_Route field is optional and characterizes a single network route segment entry.</xs:documentation>
|
89
|
+
</xs:annotation>
|
90
|
+
</xs:element>
|
91
|
+
</xs:sequence>
|
92
|
+
</xs:complexType>
|
93
|
+
</xs:schema>
|
@@ -0,0 +1,524 @@
|
|
1
|
+
<?xml version="1.0" encoding="utf-8"?>
|
2
|
+
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:NetworkSocketObj="http://cybox.mitre.org/objects#NetworkSocketObject-2" xmlns:SocketAddressObj="http://cybox.mitre.org/objects#SocketAddressObject-1" xmlns:cyboxCommon="http://cybox.mitre.org/common-2" targetNamespace="http://cybox.mitre.org/objects#NetworkSocketObject-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_Socket_Object</schema>
|
7
|
+
<version>2.0.1</version>
|
8
|
+
<date>02/11/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#SocketAddressObject-1" schemaLocation="Socket_Address_Object.xsd"/>
|
15
|
+
<xs:element name="Network_Socket" type="NetworkSocketObj:NetworkSocketObjectType" nillable="true">
|
16
|
+
<xs:annotation>
|
17
|
+
<xs:documentation>The Network_Socket element is intended to characterize network sockets.</xs:documentation>
|
18
|
+
</xs:annotation>
|
19
|
+
</xs:element>
|
20
|
+
<xs:complexType name="NetworkSocketObjectType" mixed="false">
|
21
|
+
<xs:annotation>
|
22
|
+
<xs:documentation>The NetworkSocketObjectType is intended to characterize network sockets.</xs:documentation>
|
23
|
+
</xs:annotation>
|
24
|
+
<xs:complexContent>
|
25
|
+
<xs:extension base="cyboxCommon:ObjectPropertiesType">
|
26
|
+
<xs:sequence>
|
27
|
+
<xs:element name="Address_Family" type="NetworkSocketObj:AddressFamilyType" minOccurs="0">
|
28
|
+
<xs:annotation>
|
29
|
+
<xs:documentation>The Address_Family field specifies the address family (AF_*) that the socket is configured for.</xs:documentation>
|
30
|
+
</xs:annotation>
|
31
|
+
</xs:element>
|
32
|
+
<xs:element name="Domain" type="NetworkSocketObj:DomainFamilyType" minOccurs="0">
|
33
|
+
<xs:annotation>
|
34
|
+
<xs:documentation>The Domain field specifies the communication domain (PF_*) of the socket.</xs:documentation>
|
35
|
+
</xs:annotation>
|
36
|
+
</xs:element>
|
37
|
+
<xs:element name="Local_Address" type="SocketAddressObj:SocketAddressObjectType" minOccurs="0">
|
38
|
+
<xs:annotation>
|
39
|
+
<xs:documentation>The Local_Address field specifies the IP address and port for the socket on the local machine.</xs:documentation>
|
40
|
+
</xs:annotation>
|
41
|
+
</xs:element>
|
42
|
+
<xs:element name="Options" type="NetworkSocketObj:SocketOptionsType" minOccurs="0">
|
43
|
+
<xs:annotation>
|
44
|
+
<xs:documentation>The Options field specifies any particular options used by the socket.</xs:documentation>
|
45
|
+
</xs:annotation>
|
46
|
+
</xs:element>
|
47
|
+
<xs:element name="Protocol" type="NetworkSocketObj:ProtocolType" minOccurs="0">
|
48
|
+
<xs:annotation>
|
49
|
+
<xs:documentation>The Protocol field specifies the type of IP layer protocol used by the socket.</xs:documentation>
|
50
|
+
</xs:annotation>
|
51
|
+
</xs:element>
|
52
|
+
<xs:element name="Remote_Address" type="SocketAddressObj:SocketAddressObjectType" minOccurs="0">
|
53
|
+
<xs:annotation>
|
54
|
+
<xs:documentation>The Remote_Address field specifies the IP address and port for the socket on the remote machine.</xs:documentation>
|
55
|
+
</xs:annotation>
|
56
|
+
</xs:element>
|
57
|
+
<xs:element name="Type" type="NetworkSocketObj:SocketType" minOccurs="0">
|
58
|
+
<xs:annotation>
|
59
|
+
<xs:documentation>The Type field specifies the type of socket being characterized.</xs:documentation>
|
60
|
+
</xs:annotation>
|
61
|
+
</xs:element>
|
62
|
+
</xs:sequence>
|
63
|
+
<xs:attribute name="is_blocking" type="xs:boolean">
|
64
|
+
<xs:annotation>
|
65
|
+
<xs:documentation>The is_blocking field specifies whether or not the socket is in blocking mode. </xs:documentation>
|
66
|
+
</xs:annotation>
|
67
|
+
</xs:attribute>
|
68
|
+
<xs:attribute name="is_listening" type="xs:boolean">
|
69
|
+
<xs:annotation>
|
70
|
+
<xs:documentation>The is_listening field specifies whether or not the socket is in listening mode.</xs:documentation>
|
71
|
+
</xs:annotation>
|
72
|
+
</xs:attribute>
|
73
|
+
</xs:extension>
|
74
|
+
</xs:complexContent>
|
75
|
+
</xs:complexType>
|
76
|
+
<xs:complexType name="SocketOptionsType">
|
77
|
+
<xs:annotation>
|
78
|
+
<xs:documentation>The SocketOptionsType specifies any particular options used by the socket. If an options is supported only by specific address families or socket types, that's indicated in parentheses.</xs:documentation>
|
79
|
+
</xs:annotation>
|
80
|
+
<xs:sequence>
|
81
|
+
<xs:element name="IP_MULTICAST_IF" type="cyboxCommon:StringObjectPropertyType" minOccurs="0">
|
82
|
+
<xs:annotation>
|
83
|
+
<xs:documentation>Set the interface over which outgoing multicast datagrams should be sent (AF_INET / SOCK_DGRAM or SOCK_RAW).</xs:documentation>
|
84
|
+
</xs:annotation>
|
85
|
+
</xs:element>
|
86
|
+
<xs:element name="IP_MULTICAST_IF2" type="cyboxCommon:StringObjectPropertyType" minOccurs="0">
|
87
|
+
<xs:annotation>
|
88
|
+
<xs:documentation>Set the interface over which outgoing multicast datagrams should be sent (AF_INET6 / SOCK_DGRAM or SOCK_RAW) .</xs:documentation>
|
89
|
+
</xs:annotation>
|
90
|
+
</xs:element>
|
91
|
+
<xs:element name="IP_MULTICAST_LOOP" type="xs:boolean" minOccurs="0">
|
92
|
+
<xs:annotation>
|
93
|
+
<xs:documentation>Specify that the sending host receives a copy of an outgoing multicast datagram (AF_INET / SOCK_DGRAM or SOCK_RAW).</xs:documentation>
|
94
|
+
</xs:annotation>
|
95
|
+
</xs:element>
|
96
|
+
<xs:element name="IP_TOS" type="cyboxCommon:StringObjectPropertyType" minOccurs="0">
|
97
|
+
<xs:annotation>
|
98
|
+
<xs:documentation>Set Type of Service (TOS) and Precedence in the IP header (AF_INET).</xs:documentation>
|
99
|
+
</xs:annotation>
|
100
|
+
</xs:element>
|
101
|
+
<xs:element name="SO_BROADCAST" type="xs:boolean" minOccurs="0">
|
102
|
+
<xs:annotation>
|
103
|
+
<xs:documentation>Enable the socket for issuing messages to a broadcast address (AF_INET / SOCK_DGRAM or SOCK_RAW). (</xs:documentation>
|
104
|
+
</xs:annotation>
|
105
|
+
</xs:element>
|
106
|
+
<xs:element name="SO_CONDITIONAL_ACCEPT" type="xs:boolean" minOccurs="0">
|
107
|
+
<xs:annotation>
|
108
|
+
<xs:documentation>Allows an application to decide whether or not to accept an incoming connection on a listening socket (Windows only).</xs:documentation>
|
109
|
+
</xs:annotation>
|
110
|
+
</xs:element>
|
111
|
+
<xs:element name="SO_KEEPALIVE" type="xs:boolean" minOccurs="0">
|
112
|
+
<xs:annotation>
|
113
|
+
<xs:documentation>Keep the connection up by sending periodic transmissions (AF_INET or AF_INET6 / SOCK_STREAM).</xs:documentation>
|
114
|
+
</xs:annotation>
|
115
|
+
</xs:element>
|
116
|
+
<xs:element name="SO_DONTROUTE" type="xs:boolean" minOccurs="0">
|
117
|
+
<xs:annotation>
|
118
|
+
<xs:documentation>Bypass normal routing mechanisms (AF_INET or AF_INET6 ) </xs:documentation>
|
119
|
+
</xs:annotation>
|
120
|
+
</xs:element>
|
121
|
+
<xs:element name="SO_LINGER" type="cyboxCommon:UnsignedIntegerObjectPropertyType" minOccurs="0">
|
122
|
+
<xs:annotation>
|
123
|
+
<xs:documentation>Specfies if the system attempts delivery of or discards any buffered data when a close() is issued.</xs:documentation>
|
124
|
+
</xs:annotation>
|
125
|
+
</xs:element>
|
126
|
+
<xs:element name="SO_DONTLINGER" type="xs:boolean" minOccurs="0">
|
127
|
+
<xs:annotation>
|
128
|
+
<xs:documentation>Complement of SO_LINGER.</xs:documentation>
|
129
|
+
</xs:annotation>
|
130
|
+
</xs:element>
|
131
|
+
<xs:element name="SO_OOBINLINE" type="xs:boolean" minOccurs="0">
|
132
|
+
<xs:annotation>
|
133
|
+
<xs:documentation> Indicates whether out-of-band data is received inline with normal data (AF_INET or AF_INET6). </xs:documentation>
|
134
|
+
</xs:annotation>
|
135
|
+
</xs:element>
|
136
|
+
<xs:element name="SO_RCVBUF" type="cyboxCommon:UnsignedIntegerObjectPropertyType" minOccurs="0">
|
137
|
+
<xs:annotation>
|
138
|
+
<xs:documentation>Set size of the receive buffer.</xs:documentation>
|
139
|
+
</xs:annotation>
|
140
|
+
</xs:element>
|
141
|
+
<xs:element name="SO_GROUP_PRIORITY" type="cyboxCommon:UnsignedIntegerObjectPropertyType" minOccurs="0">
|
142
|
+
<xs:annotation>
|
143
|
+
<xs:documentation>Sets the relative priority for the socket in its group (Windows only).</xs:documentation>
|
144
|
+
</xs:annotation>
|
145
|
+
</xs:element>
|
146
|
+
<xs:element name="SO_REUSEADDR" type="xs:boolean" minOccurs="0">
|
147
|
+
<xs:annotation>
|
148
|
+
<xs:documentation>Indicates if the local socket address can be reused (AF_INET or AF_INET6 / SOCK_DGRAM or SOCK_RAW)</xs:documentation>
|
149
|
+
</xs:annotation>
|
150
|
+
</xs:element>
|
151
|
+
<xs:element name="SO_DEBUG" type="xs:boolean" minOccurs="0">
|
152
|
+
<xs:annotation>
|
153
|
+
<xs:documentation>Indicates if low-level debugging is active.</xs:documentation>
|
154
|
+
</xs:annotation>
|
155
|
+
</xs:element>
|
156
|
+
<xs:element name="SO_RCVTIMEO" type="cyboxCommon:UnsignedIntegerObjectPropertyType" minOccurs="0">
|
157
|
+
<xs:annotation>
|
158
|
+
<xs:documentation>Set the receive timeout value.</xs:documentation>
|
159
|
+
</xs:annotation>
|
160
|
+
</xs:element>
|
161
|
+
<xs:element name="SO_SNDBUF" type="cyboxCommon:UnsignedIntegerObjectPropertyType" minOccurs="0">
|
162
|
+
<xs:annotation>
|
163
|
+
<xs:documentation>Set size of the send buffer.</xs:documentation>
|
164
|
+
</xs:annotation>
|
165
|
+
</xs:element>
|
166
|
+
<xs:element name="SO_SNDTIMEO" type="cyboxCommon:UnsignedIntegerObjectPropertyType" minOccurs="0">
|
167
|
+
<xs:annotation>
|
168
|
+
<xs:documentation>Set the send timeout value.</xs:documentation>
|
169
|
+
</xs:annotation>
|
170
|
+
</xs:element>
|
171
|
+
<xs:element name="SO_UPDATE_ACCEPT_CONTEXT" type="cyboxCommon:UnsignedIntegerObjectPropertyType" minOccurs="0">
|
172
|
+
<xs:annotation>
|
173
|
+
<xs:documentation>Updates the properties of the socket which are inherited from the listening socket (Windows only).</xs:documentation>
|
174
|
+
</xs:annotation>
|
175
|
+
</xs:element>
|
176
|
+
<xs:element name="SO_TIMEOUT" type="cyboxCommon:UnsignedIntegerObjectPropertyType" minOccurs="0">
|
177
|
+
<xs:annotation>
|
178
|
+
<xs:documentation>Set the socket timeout.</xs:documentation>
|
179
|
+
</xs:annotation>
|
180
|
+
</xs:element>
|
181
|
+
<xs:element name="TCP_NODELAY" type="xs:boolean" minOccurs="0">
|
182
|
+
<xs:annotation>
|
183
|
+
<xs:documentation>When set, TCP will send data immediately instead of using the Nagle delay algorithm (AF_INET or AF_INET6 / SOCK_STREAM). (</xs:documentation>
|
184
|
+
</xs:annotation>
|
185
|
+
</xs:element>
|
186
|
+
</xs:sequence>
|
187
|
+
</xs:complexType>
|
188
|
+
<xs:complexType name="AddressFamilyType">
|
189
|
+
<xs:annotation>
|
190
|
+
<xs:documentation>AddressFamilyType specifies address family types, via a union of the AddressFamilyTypeEnum 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>
|
191
|
+
</xs:annotation>
|
192
|
+
<xs:simpleContent>
|
193
|
+
<xs:restriction base="cyboxCommon:BaseObjectPropertyType">
|
194
|
+
<xs:simpleType>
|
195
|
+
<xs:union memberTypes="NetworkSocketObj:AddressFamilyTypeEnum xs:string"/>
|
196
|
+
</xs:simpleType>
|
197
|
+
<xs:attribute name="datatype" type="cyboxCommon:DatatypeEnum" fixed="string">
|
198
|
+
<xs:annotation>
|
199
|
+
<xs:documentation>This attribute is optional and specifies the expected type for the value of the specified property.</xs:documentation>
|
200
|
+
</xs:annotation>
|
201
|
+
</xs:attribute>
|
202
|
+
</xs:restriction>
|
203
|
+
</xs:simpleContent>
|
204
|
+
</xs:complexType>
|
205
|
+
<xs:complexType name="DomainFamilyType">
|
206
|
+
<xs:annotation>
|
207
|
+
<xs:documentation>DomainFamilyType specifies domain family types, via a union of the DomainTypeEnum 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>
|
208
|
+
</xs:annotation>
|
209
|
+
<xs:simpleContent>
|
210
|
+
<xs:restriction base="cyboxCommon:BaseObjectPropertyType">
|
211
|
+
<xs:simpleType>
|
212
|
+
<xs:union memberTypes="NetworkSocketObj:DomainTypeEnum xs:string"/>
|
213
|
+
</xs:simpleType>
|
214
|
+
<xs:attribute name="datatype" type="cyboxCommon:DatatypeEnum" fixed="string">
|
215
|
+
<xs:annotation>
|
216
|
+
<xs:documentation>This attribute is optional and specifies the expected type for the value of the specified property.</xs:documentation>
|
217
|
+
</xs:annotation>
|
218
|
+
</xs:attribute>
|
219
|
+
</xs:restriction>
|
220
|
+
</xs:simpleContent>
|
221
|
+
</xs:complexType>
|
222
|
+
<xs:complexType name="SocketType">
|
223
|
+
<xs:annotation>
|
224
|
+
<xs:documentation>SocketType specifies socket types, via a union of the SocketTypeEnum 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>
|
225
|
+
</xs:annotation>
|
226
|
+
<xs:simpleContent>
|
227
|
+
<xs:restriction base="cyboxCommon:BaseObjectPropertyType">
|
228
|
+
<xs:simpleType>
|
229
|
+
<xs:union memberTypes="NetworkSocketObj:SocketTypeEnum xs:string"/>
|
230
|
+
</xs:simpleType>
|
231
|
+
<xs:attribute name="datatype" type="cyboxCommon:DatatypeEnum" fixed="string">
|
232
|
+
<xs:annotation>
|
233
|
+
<xs:documentation>This attribute is optional and specifies the expected type for the value of the specified property.</xs:documentation>
|
234
|
+
</xs:annotation>
|
235
|
+
</xs:attribute>
|
236
|
+
</xs:restriction>
|
237
|
+
</xs:simpleContent>
|
238
|
+
</xs:complexType>
|
239
|
+
<xs:complexType name="ProtocolType">
|
240
|
+
<xs:annotation>
|
241
|
+
<xs:documentation>ProtocolType specifies protocol types, via a union of the ProtocolTypeEnum 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>
|
242
|
+
</xs:annotation>
|
243
|
+
<xs:simpleContent>
|
244
|
+
<xs:restriction base="cyboxCommon:BaseObjectPropertyType">
|
245
|
+
<xs:simpleType>
|
246
|
+
<xs:union memberTypes="NetworkSocketObj:ProtocolTypeEnum xs:string"/>
|
247
|
+
</xs:simpleType>
|
248
|
+
<xs:attribute name="datatype" type="cyboxCommon:DatatypeEnum" fixed="string">
|
249
|
+
<xs:annotation>
|
250
|
+
<xs:documentation>This attribute is optional and specifies the expected type for the value of the specified property.</xs:documentation>
|
251
|
+
</xs:annotation>
|
252
|
+
</xs:attribute>
|
253
|
+
</xs:restriction>
|
254
|
+
</xs:simpleContent>
|
255
|
+
</xs:complexType>
|
256
|
+
<xs:simpleType name="AddressFamilyTypeEnum">
|
257
|
+
<xs:annotation>
|
258
|
+
<xs:documentation>The AddressFamilyTypeEnum is an enumeration of address family (AF_*) types.</xs:documentation>
|
259
|
+
</xs:annotation>
|
260
|
+
<xs:restriction base="xs:string">
|
261
|
+
<xs:enumeration value="AF_UNSPEC">
|
262
|
+
<xs:annotation>
|
263
|
+
<xs:documentation>Specifies an unspecified address family.</xs:documentation>
|
264
|
+
</xs:annotation>
|
265
|
+
</xs:enumeration>
|
266
|
+
<xs:enumeration value="AF_INET">
|
267
|
+
<xs:annotation>
|
268
|
+
<xs:documentation>Specifies sockets using for the Internet when using Berkeley sockets.</xs:documentation>
|
269
|
+
</xs:annotation>
|
270
|
+
</xs:enumeration>
|
271
|
+
<xs:enumeration value="AF_IPX">
|
272
|
+
<xs:annotation>
|
273
|
+
<xs:documentation>Specifies the IPX (Novell Internet Protocol) address family.</xs:documentation>
|
274
|
+
</xs:annotation>
|
275
|
+
</xs:enumeration>
|
276
|
+
<xs:enumeration value="AF_APPLETALK">
|
277
|
+
<xs:annotation>
|
278
|
+
<xs:documentation>Specifies the APPLETALK DDP address family.</xs:documentation>
|
279
|
+
</xs:annotation>
|
280
|
+
</xs:enumeration>
|
281
|
+
<xs:enumeration value="AF_NETBIOS">
|
282
|
+
<xs:annotation>
|
283
|
+
<xs:documentation>Specifies the NETBIOS address family.</xs:documentation>
|
284
|
+
</xs:annotation>
|
285
|
+
</xs:enumeration>
|
286
|
+
<xs:enumeration value="AF_INET6">
|
287
|
+
<xs:annotation>
|
288
|
+
<xs:documentation>Specifies the IP version 6 address family.</xs:documentation>
|
289
|
+
</xs:annotation>
|
290
|
+
</xs:enumeration>
|
291
|
+
<xs:enumeration value="AF_IRDA">
|
292
|
+
<xs:annotation>
|
293
|
+
<xs:documentation>Specifies IRDA sockets.</xs:documentation>
|
294
|
+
</xs:annotation>
|
295
|
+
</xs:enumeration>
|
296
|
+
<xs:enumeration value="AF_BTH">
|
297
|
+
<xs:annotation>
|
298
|
+
<xs:documentation>Specifies BTH sockets.</xs:documentation>
|
299
|
+
</xs:annotation>
|
300
|
+
</xs:enumeration>
|
301
|
+
</xs:restriction>
|
302
|
+
</xs:simpleType>
|
303
|
+
<xs:simpleType name="DomainTypeEnum">
|
304
|
+
<xs:annotation>
|
305
|
+
<xs:documentation>The DomainTypeEnum is an enumeration of communication domain (PF_*) types.</xs:documentation>
|
306
|
+
</xs:annotation>
|
307
|
+
<xs:restriction base="xs:string">
|
308
|
+
<xs:enumeration value="PF_LOCAL">
|
309
|
+
<xs:annotation>
|
310
|
+
<xs:documentation>Specifies the communication domain from local to host.</xs:documentation>
|
311
|
+
</xs:annotation>
|
312
|
+
</xs:enumeration>
|
313
|
+
<xs:enumeration value="PF_UNIX">
|
314
|
+
<xs:annotation>
|
315
|
+
<xs:documentation>Specifies the communication domain from UNIX to host.</xs:documentation>
|
316
|
+
</xs:annotation>
|
317
|
+
</xs:enumeration>
|
318
|
+
<xs:enumeration value="PF_FILE">
|
319
|
+
<xs:annotation>
|
320
|
+
<xs:documentation>Specifies the communication domain from file to host.</xs:documentation>
|
321
|
+
</xs:annotation>
|
322
|
+
</xs:enumeration>
|
323
|
+
<xs:enumeration value="PF_INET">
|
324
|
+
<xs:annotation>
|
325
|
+
<xs:documentation>Specifies the IP protocol family.</xs:documentation>
|
326
|
+
</xs:annotation>
|
327
|
+
</xs:enumeration>
|
328
|
+
<xs:enumeration value="PF_AX25">
|
329
|
+
<xs:annotation>
|
330
|
+
<xs:documentation>Specifies the Amateur Radio AX.25 family.</xs:documentation>
|
331
|
+
</xs:annotation>
|
332
|
+
</xs:enumeration>
|
333
|
+
<xs:enumeration value="PF_IPX">
|
334
|
+
<xs:annotation>
|
335
|
+
<xs:documentation>Specifies the Novell Internet Protocol family.</xs:documentation>
|
336
|
+
</xs:annotation>
|
337
|
+
</xs:enumeration>
|
338
|
+
<xs:enumeration value="PF_INET6">
|
339
|
+
<xs:annotation>
|
340
|
+
<xs:documentation>Specifies the IP version 6 protocol family.</xs:documentation>
|
341
|
+
</xs:annotation>
|
342
|
+
</xs:enumeration>
|
343
|
+
<xs:enumeration value="PF_APPLETALK">
|
344
|
+
<xs:annotation>
|
345
|
+
<xs:documentation>Specifies the Appletalk DDP protocol family.</xs:documentation>
|
346
|
+
</xs:annotation>
|
347
|
+
</xs:enumeration>
|
348
|
+
<xs:enumeration value="PF_NETROM">
|
349
|
+
<xs:annotation>
|
350
|
+
<xs:documentation>Specifies the Amateur radio NetROM protocol family.</xs:documentation>
|
351
|
+
</xs:annotation>
|
352
|
+
</xs:enumeration>
|
353
|
+
<xs:enumeration value="PF_BRIDGE">
|
354
|
+
<xs:annotation>
|
355
|
+
<xs:documentation>Specifies the Multiprotocol bridge protocol family.</xs:documentation>
|
356
|
+
</xs:annotation>
|
357
|
+
</xs:enumeration>
|
358
|
+
<xs:enumeration value="PF_ATMPVC">
|
359
|
+
<xs:annotation>
|
360
|
+
<xs:documentation>Specifies the ATM PVCs protocol family.</xs:documentation>
|
361
|
+
</xs:annotation>
|
362
|
+
</xs:enumeration>
|
363
|
+
<xs:enumeration value="PF_X25">
|
364
|
+
<xs:annotation>
|
365
|
+
<xs:documentation>Specifies the protocol family reserved for the X.25 project.</xs:documentation>
|
366
|
+
</xs:annotation>
|
367
|
+
</xs:enumeration>
|
368
|
+
<xs:enumeration value="PF_ROSE">
|
369
|
+
<xs:annotation>
|
370
|
+
<xs:documentation>Specifies the PF_KEY key management API family.</xs:documentation>
|
371
|
+
</xs:annotation>
|
372
|
+
</xs:enumeration>
|
373
|
+
<xs:enumeration value="PF_DECnet">
|
374
|
+
<xs:annotation>
|
375
|
+
<xs:documentation>Specifies the protocol family reserved for the DECnet project.</xs:documentation>
|
376
|
+
</xs:annotation>
|
377
|
+
</xs:enumeration>
|
378
|
+
<xs:enumeration value="PF_NETBEUI">
|
379
|
+
<xs:annotation>
|
380
|
+
<xs:documentation>Specifies the protocol family reserved for the 802.2LLC project.</xs:documentation>
|
381
|
+
</xs:annotation>
|
382
|
+
</xs:enumeration>
|
383
|
+
<xs:enumeration value="PF_SECURITY">
|
384
|
+
<xs:annotation>
|
385
|
+
<xs:documentation>Specifies the Security callback pseudo AF protocol family.</xs:documentation>
|
386
|
+
</xs:annotation>
|
387
|
+
</xs:enumeration>
|
388
|
+
<xs:enumeration value="PF_KEY">
|
389
|
+
<xs:annotation>
|
390
|
+
<xs:documentation>Specifies the PF_KEY key management API protocol family.</xs:documentation>
|
391
|
+
</xs:annotation>
|
392
|
+
</xs:enumeration>
|
393
|
+
<xs:enumeration value="PF_NETLINK">
|
394
|
+
<xs:annotation>
|
395
|
+
<xs:documentation>Specifies the netlink routing API family.</xs:documentation>
|
396
|
+
</xs:annotation>
|
397
|
+
</xs:enumeration>
|
398
|
+
<xs:enumeration value="PF_ROUTE">
|
399
|
+
<xs:annotation>
|
400
|
+
<xs:documentation>Specifies the PF_ROUTE routing API family.</xs:documentation>
|
401
|
+
</xs:annotation>
|
402
|
+
</xs:enumeration>
|
403
|
+
<xs:enumeration value="PF_PACKET">
|
404
|
+
<xs:annotation>
|
405
|
+
<xs:documentation>Specifies the packet family.</xs:documentation>
|
406
|
+
</xs:annotation>
|
407
|
+
</xs:enumeration>
|
408
|
+
<xs:enumeration value="PF_ASH">
|
409
|
+
<xs:annotation>
|
410
|
+
<xs:documentation>Specifies the Ash family.</xs:documentation>
|
411
|
+
</xs:annotation>
|
412
|
+
</xs:enumeration>
|
413
|
+
<xs:enumeration value="PF_ECONET">
|
414
|
+
<xs:annotation>
|
415
|
+
<xs:documentation>Specifies the Acorn Econet family.</xs:documentation>
|
416
|
+
</xs:annotation>
|
417
|
+
</xs:enumeration>
|
418
|
+
<xs:enumeration value="PF_ATMSVC">
|
419
|
+
<xs:annotation>
|
420
|
+
<xs:documentation>Specifies the ATM SVCs protocol family.</xs:documentation>
|
421
|
+
</xs:annotation>
|
422
|
+
</xs:enumeration>
|
423
|
+
<xs:enumeration value="PF_SNA">
|
424
|
+
<xs:annotation>
|
425
|
+
<xs:documentation>Specifies the Linux SNA Project protocol family.</xs:documentation>
|
426
|
+
</xs:annotation>
|
427
|
+
</xs:enumeration>
|
428
|
+
<xs:enumeration value="PF_IRDA">
|
429
|
+
<xs:annotation>
|
430
|
+
<xs:documentation>Specifies IRDA sockets.</xs:documentation>
|
431
|
+
</xs:annotation>
|
432
|
+
</xs:enumeration>
|
433
|
+
<xs:enumeration value="PF_PPPOX">
|
434
|
+
<xs:annotation>
|
435
|
+
<xs:documentation>Specifies PPPoX sockets.</xs:documentation>
|
436
|
+
</xs:annotation>
|
437
|
+
</xs:enumeration>
|
438
|
+
<xs:enumeration value="PF_WANPIPE">
|
439
|
+
<xs:annotation>
|
440
|
+
<xs:documentation>Specifies Wanpipe API sockets.</xs:documentation>
|
441
|
+
</xs:annotation>
|
442
|
+
</xs:enumeration>
|
443
|
+
<xs:enumeration value="PF_BLUETOOTH">
|
444
|
+
<xs:annotation>
|
445
|
+
<xs:documentation>Specifies Bluetooth sockets.</xs:documentation>
|
446
|
+
</xs:annotation>
|
447
|
+
</xs:enumeration>
|
448
|
+
</xs:restriction>
|
449
|
+
</xs:simpleType>
|
450
|
+
<xs:simpleType name="SocketTypeEnum">
|
451
|
+
<xs:annotation>
|
452
|
+
<xs:documentation>The SocketTypeEnum is an enumeration of socket (SOCK_*) types.</xs:documentation>
|
453
|
+
</xs:annotation>
|
454
|
+
<xs:restriction base="xs:string">
|
455
|
+
<xs:enumeration value="SOCK_STREAM">
|
456
|
+
<xs:annotation>
|
457
|
+
<xs:documentation>Specifies a pipe-like socket which operates over a connection with a particular remote socket, and transmits data reliably as a stream of bytes.</xs:documentation>
|
458
|
+
</xs:annotation>
|
459
|
+
</xs:enumeration>
|
460
|
+
<xs:enumeration value="SOCK_DGRAM">
|
461
|
+
<xs:annotation>
|
462
|
+
<xs:documentation>Specifies a socket in which individually-addressed packets are sent (datagram).</xs:documentation>
|
463
|
+
</xs:annotation>
|
464
|
+
</xs:enumeration>
|
465
|
+
<xs:enumeration value="SOCK_RAW">
|
466
|
+
<xs:annotation>
|
467
|
+
<xs:documentation>Specifies raw sockets which allow new IP protocls to be implemented in user space. A raw socket receives or sends the raw datagram not including link level headers.</xs:documentation>
|
468
|
+
</xs:annotation>
|
469
|
+
</xs:enumeration>
|
470
|
+
<xs:enumeration value="SOCK_RDM">
|
471
|
+
<xs:annotation>
|
472
|
+
<xs:documentation>Specifies a socket indicating a reliably-delivered message..</xs:documentation>
|
473
|
+
</xs:annotation>
|
474
|
+
</xs:enumeration>
|
475
|
+
<xs:enumeration value="SOCK_SEQPACKET">
|
476
|
+
<xs:annotation>
|
477
|
+
<xs:documentation>Specifies a datagram congestion control Protocol socket.</xs:documentation>
|
478
|
+
</xs:annotation>
|
479
|
+
</xs:enumeration>
|
480
|
+
</xs:restriction>
|
481
|
+
</xs:simpleType>
|
482
|
+
<xs:simpleType name="ProtocolTypeEnum">
|
483
|
+
<xs:annotation>
|
484
|
+
<xs:documentation>The ProtocolTypeEnum is an enumeration of protocol types.</xs:documentation>
|
485
|
+
</xs:annotation>
|
486
|
+
<xs:restriction base="xs:string">
|
487
|
+
<xs:enumeration value="IPPROTO_ICMP">
|
488
|
+
<xs:annotation>
|
489
|
+
<xs:documentation>Indicates the ICMP protocol.</xs:documentation>
|
490
|
+
</xs:annotation>
|
491
|
+
</xs:enumeration>
|
492
|
+
<xs:enumeration value="IPPROTO_IGMP">
|
493
|
+
<xs:annotation>
|
494
|
+
<xs:documentation>Indicates the IGMP protocol.</xs:documentation>
|
495
|
+
</xs:annotation>
|
496
|
+
</xs:enumeration>
|
497
|
+
<xs:enumeration value="BTHPROTO_RFCOMM">
|
498
|
+
<xs:annotation>
|
499
|
+
<xs:documentation>Indicates the Bluetooth protocol.</xs:documentation>
|
500
|
+
</xs:annotation>
|
501
|
+
</xs:enumeration>
|
502
|
+
<xs:enumeration value="IPPROTO_TCP">
|
503
|
+
<xs:annotation>
|
504
|
+
<xs:documentation>Indicates the TCP protocol.</xs:documentation>
|
505
|
+
</xs:annotation>
|
506
|
+
</xs:enumeration>
|
507
|
+
<xs:enumeration value="IPPROTO_UDP">
|
508
|
+
<xs:annotation>
|
509
|
+
<xs:documentation>Indicates the UDP protocol.</xs:documentation>
|
510
|
+
</xs:annotation>
|
511
|
+
</xs:enumeration>
|
512
|
+
<xs:enumeration value="IPPROTO_ICMPV6">
|
513
|
+
<xs:annotation>
|
514
|
+
<xs:documentation>Indicates the ICMP v6 protocol.</xs:documentation>
|
515
|
+
</xs:annotation>
|
516
|
+
</xs:enumeration>
|
517
|
+
<xs:enumeration value="IPPROTO_RM">
|
518
|
+
<xs:annotation>
|
519
|
+
<xs:documentation>Indicates the Reliable Multicating protocol.</xs:documentation>
|
520
|
+
</xs:annotation>
|
521
|
+
</xs:enumeration>
|
522
|
+
</xs:restriction>
|
523
|
+
</xs:simpleType>
|
524
|
+
</xs:schema>
|