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.
Files changed (482) hide show
  1. checksums.yaml +15 -0
  2. data/.gitignore +17 -0
  3. data/Gemfile +4 -0
  4. data/LICENSE.txt +24 -0
  5. data/README.md +41 -0
  6. data/Rakefile +3 -0
  7. data/config/1.0.1/stix/README.md +20 -0
  8. data/config/1.0.1/stix/campaign.xsd +210 -0
  9. data/config/1.0.1/stix/course_of_action.xsd +166 -0
  10. data/config/1.0.1/stix/cybox/README.md +13 -0
  11. data/config/1.0.1/stix/cybox/cybox_common.xsd +2319 -0
  12. data/config/1.0.1/stix/cybox/cybox_core.xsd +1095 -0
  13. data/config/1.0.1/stix/cybox/cybox_default_vocabularies.xsd +3326 -0
  14. data/config/1.0.1/stix/cybox/extensions/platform/README.txt +1 -0
  15. data/config/1.0.1/stix/cybox/extensions/platform/cpe-language_2.3.xsd +234 -0
  16. data/config/1.0.1/stix/cybox/extensions/platform/cpe-naming_2.3.xsd +45 -0
  17. data/config/1.0.1/stix/cybox/extensions/platform/cpe2.3.xsd +40 -0
  18. data/config/1.0.1/stix/cybox/extensions/platform/xml.xsd +145 -0
  19. data/config/1.0.1/stix/cybox/objects/API_Object.xsd +55 -0
  20. data/config/1.0.1/stix/cybox/objects/Account_Object.xsd +50 -0
  21. data/config/1.0.1/stix/cybox/objects/Address_Object.xsd +122 -0
  22. data/config/1.0.1/stix/cybox/objects/Artifact_Object.xsd +206 -0
  23. data/config/1.0.1/stix/cybox/objects/Code_Object.xsd +417 -0
  24. data/config/1.0.1/stix/cybox/objects/Custom_Object.xsd +43 -0
  25. data/config/1.0.1/stix/cybox/objects/DNS_Cache_Object.xsd +53 -0
  26. data/config/1.0.1/stix/cybox/objects/DNS_Query_Object.xsd +159 -0
  27. data/config/1.0.1/stix/cybox/objects/DNS_Record_Object.xsd +87 -0
  28. data/config/1.0.1/stix/cybox/objects/Device_Object.xsd +55 -0
  29. data/config/1.0.1/stix/cybox/objects/Disk_Object.xsd +117 -0
  30. data/config/1.0.1/stix/cybox/objects/Disk_Partition_Object.xsd +199 -0
  31. data/config/1.0.1/stix/cybox/objects/Email_Message_Object.xsd +273 -0
  32. data/config/1.0.1/stix/cybox/objects/File_Object.xsd +359 -0
  33. data/config/1.0.1/stix/cybox/objects/GUI_Dialogbox_Object.xsd +41 -0
  34. data/config/1.0.1/stix/cybox/objects/GUI_Object.xsd +40 -0
  35. data/config/1.0.1/stix/cybox/objects/GUI_Window_Object.xsd +46 -0
  36. data/config/1.0.1/stix/cybox/objects/HTTP_Session_Object.xsd +623 -0
  37. data/config/1.0.1/stix/cybox/objects/Library_Object.xsd +114 -0
  38. data/config/1.0.1/stix/cybox/objects/Link_Object.xsd +36 -0
  39. data/config/1.0.1/stix/cybox/objects/Linux_Package_Object.xsd +119 -0
  40. data/config/1.0.1/stix/cybox/objects/Memory_Object.xsd +70 -0
  41. data/config/1.0.1/stix/cybox/objects/Mutex_Object.xsd +40 -0
  42. data/config/1.0.1/stix/cybox/objects/Network_Connection_Object.xsd +609 -0
  43. data/config/1.0.1/stix/cybox/objects/Network_Flow_Object.xsd +1559 -0
  44. data/config/1.0.1/stix/cybox/objects/Network_Packet_Object.xsd +2948 -0
  45. data/config/1.0.1/stix/cybox/objects/Network_Route_Entry_Object.xsd +155 -0
  46. data/config/1.0.1/stix/cybox/objects/Network_Route_Object.xsd +93 -0
  47. data/config/1.0.1/stix/cybox/objects/Network_Socket_Object.xsd +524 -0
  48. data/config/1.0.1/stix/cybox/objects/Network_Subnet_Object.xsd +64 -0
  49. data/config/1.0.1/stix/cybox/objects/PDF_File_Object.xsd +601 -0
  50. data/config/1.0.1/stix/cybox/objects/Pipe_Object.xsd +40 -0
  51. data/config/1.0.1/stix/cybox/objects/Port_Object.xsd +74 -0
  52. data/config/1.0.1/stix/cybox/objects/Process_Object.xsd +197 -0
  53. data/config/1.0.1/stix/cybox/objects/Product_Object.xsd +60 -0
  54. data/config/1.0.1/stix/cybox/objects/Semaphore_Object.xsd +50 -0
  55. data/config/1.0.1/stix/cybox/objects/Socket_Address_Object.xsd +42 -0
  56. data/config/1.0.1/stix/cybox/objects/System_Object.xsd +409 -0
  57. data/config/1.0.1/stix/cybox/objects/URI_Object.xsd +62 -0
  58. data/config/1.0.1/stix/cybox/objects/Unix_File_Object.xsd +164 -0
  59. data/config/1.0.1/stix/cybox/objects/Unix_Network_Route_Entry_Object.xsd +56 -0
  60. data/config/1.0.1/stix/cybox/objects/Unix_Pipe_Object.xsd +36 -0
  61. data/config/1.0.1/stix/cybox/objects/Unix_Process_Object.xsd +143 -0
  62. data/config/1.0.1/stix/cybox/objects/Unix_User_Account_Object.xsd +78 -0
  63. data/config/1.0.1/stix/cybox/objects/Unix_Volume_Object.xsd +41 -0
  64. data/config/1.0.1/stix/cybox/objects/User_Account_Object.xsd +110 -0
  65. data/config/1.0.1/stix/cybox/objects/User_Session_Object.xsd +60 -0
  66. data/config/1.0.1/stix/cybox/objects/Volume_Object.xsd +235 -0
  67. data/config/1.0.1/stix/cybox/objects/Whois_Object.xsd +456 -0
  68. data/config/1.0.1/stix/cybox/objects/Win_Computer_Account_Object.xsd +135 -0
  69. data/config/1.0.1/stix/cybox/objects/Win_Critical_Section_Object.xsd +40 -0
  70. data/config/1.0.1/stix/cybox/objects/Win_Driver_Object.xsd +269 -0
  71. data/config/1.0.1/stix/cybox/objects/Win_Event_Log_Object.xsd +137 -0
  72. data/config/1.0.1/stix/cybox/objects/Win_Event_Object.xsd +80 -0
  73. data/config/1.0.1/stix/cybox/objects/Win_Executable_File_Object.xsd +1333 -0
  74. data/config/1.0.1/stix/cybox/objects/Win_File_Object.xsd +269 -0
  75. data/config/1.0.1/stix/cybox/objects/Win_Handle_Object.xsd +186 -0
  76. data/config/1.0.1/stix/cybox/objects/Win_Kernel_Hook_Object.xsd +109 -0
  77. data/config/1.0.1/stix/cybox/objects/Win_Kernel_Object.xsd +128 -0
  78. data/config/1.0.1/stix/cybox/objects/Win_Mailslot_Object.xsd +56 -0
  79. data/config/1.0.1/stix/cybox/objects/Win_Memory_Page_Region_Object.xsd +198 -0
  80. data/config/1.0.1/stix/cybox/objects/Win_Mutex_Object.xsd +42 -0
  81. data/config/1.0.1/stix/cybox/objects/Win_Network_Route_Entry_Object.xsd +200 -0
  82. data/config/1.0.1/stix/cybox/objects/Win_Network_Share_Object.xsd +205 -0
  83. data/config/1.0.1/stix/cybox/objects/Win_Pipe_Object.xsd +73 -0
  84. data/config/1.0.1/stix/cybox/objects/Win_Prefetch_Object.xsd +113 -0
  85. data/config/1.0.1/stix/cybox/objects/Win_Process_Object.xsd +167 -0
  86. data/config/1.0.1/stix/cybox/objects/Win_Registry_Key_Object.xsd +290 -0
  87. data/config/1.0.1/stix/cybox/objects/Win_Semaphore_Object.xsd +42 -0
  88. data/config/1.0.1/stix/cybox/objects/Win_Service_Object.xsd +287 -0
  89. data/config/1.0.1/stix/cybox/objects/Win_System_Object.xsd +126 -0
  90. data/config/1.0.1/stix/cybox/objects/Win_System_Restore_Object.xsd +199 -0
  91. data/config/1.0.1/stix/cybox/objects/Win_Task_Object.xsd +755 -0
  92. data/config/1.0.1/stix/cybox/objects/Win_Thread_Object.xsd +146 -0
  93. data/config/1.0.1/stix/cybox/objects/Win_User_Account_Object.xsd +73 -0
  94. data/config/1.0.1/stix/cybox/objects/Win_Volume_Object.xsd +161 -0
  95. data/config/1.0.1/stix/cybox/objects/Win_Waitable_Timer_Object.xsd +90 -0
  96. data/config/1.0.1/stix/cybox/objects/X509_Certificate_Object.xsd +270 -0
  97. data/config/1.0.1/stix/data_marking.xsd +92 -0
  98. data/config/1.0.1/stix/exploit_target.xsd +224 -0
  99. data/config/1.0.1/stix/extensions/address/ciq_address_3.0.xsd +27 -0
  100. data/config/1.0.1/stix/extensions/address/readme.txt +1 -0
  101. data/config/1.0.1/stix/extensions/attack_pattern/capec_2.6.1.xsd +31 -0
  102. data/config/1.0.1/stix/extensions/attack_pattern/readme.txt +1 -0
  103. data/config/1.0.1/stix/extensions/identity/ciq_identity_3.0.xsd +108 -0
  104. data/config/1.0.1/stix/extensions/identity/readme.txt +1 -0
  105. data/config/1.0.1/stix/extensions/malware/maec_4.0.1.xsd +31 -0
  106. data/config/1.0.1/stix/extensions/malware/readme.txt +1 -0
  107. data/config/1.0.1/stix/extensions/marking/simple_marking.xsd +30 -0
  108. data/config/1.0.1/stix/extensions/marking/tlp.xsd +39 -0
  109. data/config/1.0.1/stix/extensions/structured_coa/generic.xsd +46 -0
  110. data/config/1.0.1/stix/extensions/test_mechanism/generic.xsd +46 -0
  111. data/config/1.0.1/stix/extensions/test_mechanism/open_ioc_2010.xsd +32 -0
  112. data/config/1.0.1/stix/extensions/test_mechanism/oval_5.10.xsd +37 -0
  113. data/config/1.0.1/stix/extensions/test_mechanism/snort.xsd +36 -0
  114. data/config/1.0.1/stix/extensions/test_mechanism/yara.xsd +36 -0
  115. data/config/1.0.1/stix/extensions/vulnerability/cvrf_1.1.xsd +33 -0
  116. data/config/1.0.1/stix/extensions/vulnerability/readme.txt +1 -0
  117. data/config/1.0.1/stix/external/capec_2.6.1/ap_schema_v2.6.1.xsd +3618 -0
  118. data/config/1.0.1/stix/external/cvrf_1.1/common.xsd +176 -0
  119. data/config/1.0.1/stix/external/cvrf_1.1/cpe-language_2.2a.xsd +182 -0
  120. data/config/1.0.1/stix/external/cvrf_1.1/cvrf.xsd +487 -0
  121. data/config/1.0.1/stix/external/cvrf_1.1/cvss-v2_0.9.xsd +415 -0
  122. data/config/1.0.1/stix/external/cvrf_1.1/dc.xsd +118 -0
  123. data/config/1.0.1/stix/external/cvrf_1.1/prod.xsd +292 -0
  124. data/config/1.0.1/stix/external/cvrf_1.1/scap-core_0.9.xsd +170 -0
  125. data/config/1.0.1/stix/external/cvrf_1.1/vuln.xsd +631 -0
  126. data/config/1.0.1/stix/external/cvrf_1.1/xml.xsd +287 -0
  127. data/config/1.0.1/stix/external/maec_4.0.1/maec_bundle_schema.xsd +1139 -0
  128. data/config/1.0.1/stix/external/maec_4.0.1/maec_package_schema.xsd +938 -0
  129. data/config/1.0.1/stix/external/maec_4.0.1/metadataSharing.xsd +1712 -0
  130. data/config/1.0.1/stix/external/oasis_ciq_3.0/CommonTypes.xsd +104 -0
  131. data/config/1.0.1/stix/external/oasis_ciq_3.0/xAL-types.xsd +511 -0
  132. data/config/1.0.1/stix/external/oasis_ciq_3.0/xAL.xsd +672 -0
  133. data/config/1.0.1/stix/external/oasis_ciq_3.0/xNAL-types.xsd +36 -0
  134. data/config/1.0.1/stix/external/oasis_ciq_3.0/xNAL.xsd +126 -0
  135. data/config/1.0.1/stix/external/oasis_ciq_3.0/xNL-types.xsd +222 -0
  136. data/config/1.0.1/stix/external/oasis_ciq_3.0/xNL.xsd +284 -0
  137. data/config/1.0.1/stix/external/oasis_ciq_3.0/xPIL-types.xsd +854 -0
  138. data/config/1.0.1/stix/external/oasis_ciq_3.0/xPIL.xsd +1621 -0
  139. data/config/1.0.1/stix/external/oasis_ciq_3.0/xlink-2003-12-31.xsd +90 -0
  140. data/config/1.0.1/stix/external/open_ioc_2010/ioc-TR.xsd +25 -0
  141. data/config/1.0.1/stix/external/open_ioc_2010/ioc.xsd +105 -0
  142. data/config/1.0.1/stix/external/oval_5.10/oval-common-schema.xsd +781 -0
  143. data/config/1.0.1/stix/external/oval_5.10/oval-definitions-schema.xsd +1608 -0
  144. data/config/1.0.1/stix/external/oval_5.10/oval-variables-schema.xsd +84 -0
  145. data/config/1.0.1/stix/external/oval_5.10/xmldsig-core-schema.xsd +309 -0
  146. data/config/1.0.1/stix/incident.xsd +787 -0
  147. data/config/1.0.1/stix/indicator.xsd +310 -0
  148. data/config/1.0.1/stix/stix_common.xsd +762 -0
  149. data/config/1.0.1/stix/stix_core.xsd +218 -0
  150. data/config/1.0.1/stix/stix_default_vocabularies.xsd +1684 -0
  151. data/config/1.0.1/stix/threat_actor.xsd +174 -0
  152. data/config/1.0.1/stix/ttp.xsd +341 -0
  153. data/config/1.0/stix/campaign.xsd +209 -0
  154. data/config/1.0/stix/course_of_action.xsd +165 -0
  155. data/config/1.0/stix/cybox/cybox_common.xsd +2319 -0
  156. data/config/1.0/stix/cybox/cybox_core.xsd +1090 -0
  157. data/config/1.0/stix/cybox/cybox_default_vocabularies.xsd +3106 -0
  158. data/config/1.0/stix/cybox/extensions/platform/README.txt +1 -0
  159. data/config/1.0/stix/cybox/extensions/platform/cpe2.3.xsd +40 -0
  160. data/config/1.0/stix/cybox/objects/API_Object.xsd +55 -0
  161. data/config/1.0/stix/cybox/objects/Account_Object.xsd +50 -0
  162. data/config/1.0/stix/cybox/objects/Address_Object.xsd +122 -0
  163. data/config/1.0/stix/cybox/objects/Artifact_Object.xsd +206 -0
  164. data/config/1.0/stix/cybox/objects/Code_Object.xsd +417 -0
  165. data/config/1.0/stix/cybox/objects/Custom_Object.xsd +43 -0
  166. data/config/1.0/stix/cybox/objects/DNS_Cache_Object.xsd +53 -0
  167. data/config/1.0/stix/cybox/objects/DNS_Query_Object.xsd +159 -0
  168. data/config/1.0/stix/cybox/objects/DNS_Record_Object.xsd +87 -0
  169. data/config/1.0/stix/cybox/objects/Device_Object.xsd +55 -0
  170. data/config/1.0/stix/cybox/objects/Disk_Object.xsd +117 -0
  171. data/config/1.0/stix/cybox/objects/Disk_Partition_Object.xsd +199 -0
  172. data/config/1.0/stix/cybox/objects/Email_Message_Object.xsd +273 -0
  173. data/config/1.0/stix/cybox/objects/File_Object.xsd +359 -0
  174. data/config/1.0/stix/cybox/objects/GUI_Dialogbox_Object.xsd +41 -0
  175. data/config/1.0/stix/cybox/objects/GUI_Object.xsd +40 -0
  176. data/config/1.0/stix/cybox/objects/GUI_Window_Object.xsd +46 -0
  177. data/config/1.0/stix/cybox/objects/HTTP_Session_Object.xsd +623 -0
  178. data/config/1.0/stix/cybox/objects/Library_Object.xsd +114 -0
  179. data/config/1.0/stix/cybox/objects/Link_Object.xsd +24 -0
  180. data/config/1.0/stix/cybox/objects/Linux_Package_Object.xsd +119 -0
  181. data/config/1.0/stix/cybox/objects/Memory_Object.xsd +70 -0
  182. data/config/1.0/stix/cybox/objects/Mutex_Object.xsd +40 -0
  183. data/config/1.0/stix/cybox/objects/Network_Connection_Object.xsd +609 -0
  184. data/config/1.0/stix/cybox/objects/Network_Flow_Object.xsd +1559 -0
  185. data/config/1.0/stix/cybox/objects/Network_Packet_Object.xsd +2948 -0
  186. data/config/1.0/stix/cybox/objects/Network_Route_Entry_Object.xsd +155 -0
  187. data/config/1.0/stix/cybox/objects/Network_Route_Object.xsd +93 -0
  188. data/config/1.0/stix/cybox/objects/Network_Socket_Object.xsd +524 -0
  189. data/config/1.0/stix/cybox/objects/Network_Subnet_Object.xsd +64 -0
  190. data/config/1.0/stix/cybox/objects/PDF_File_Object.xsd +601 -0
  191. data/config/1.0/stix/cybox/objects/Pipe_Object.xsd +40 -0
  192. data/config/1.0/stix/cybox/objects/Port_Object.xsd +74 -0
  193. data/config/1.0/stix/cybox/objects/Process_Object.xsd +197 -0
  194. data/config/1.0/stix/cybox/objects/Product_Object.xsd +60 -0
  195. data/config/1.0/stix/cybox/objects/Semaphore_Object.xsd +50 -0
  196. data/config/1.0/stix/cybox/objects/Socket_Address_Object.xsd +42 -0
  197. data/config/1.0/stix/cybox/objects/System_Object.xsd +409 -0
  198. data/config/1.0/stix/cybox/objects/URI_Object.xsd +62 -0
  199. data/config/1.0/stix/cybox/objects/Unix_File_Object.xsd +164 -0
  200. data/config/1.0/stix/cybox/objects/Unix_Network_Route_Entry_Object.xsd +56 -0
  201. data/config/1.0/stix/cybox/objects/Unix_Pipe_Object.xsd +36 -0
  202. data/config/1.0/stix/cybox/objects/Unix_Process_Object.xsd +143 -0
  203. data/config/1.0/stix/cybox/objects/Unix_User_Account_Object.xsd +78 -0
  204. data/config/1.0/stix/cybox/objects/Unix_Volume_Object.xsd +41 -0
  205. data/config/1.0/stix/cybox/objects/User_Account_Object.xsd +110 -0
  206. data/config/1.0/stix/cybox/objects/User_Session_Object.xsd +60 -0
  207. data/config/1.0/stix/cybox/objects/Volume_Object.xsd +235 -0
  208. data/config/1.0/stix/cybox/objects/Whois_Object.xsd +456 -0
  209. data/config/1.0/stix/cybox/objects/Win_Computer_Account_Object.xsd +135 -0
  210. data/config/1.0/stix/cybox/objects/Win_Critical_Section_Object.xsd +40 -0
  211. data/config/1.0/stix/cybox/objects/Win_Driver_Object.xsd +269 -0
  212. data/config/1.0/stix/cybox/objects/Win_Event_Log_Object.xsd +137 -0
  213. data/config/1.0/stix/cybox/objects/Win_Event_Object.xsd +80 -0
  214. data/config/1.0/stix/cybox/objects/Win_Executable_File_Object.xsd +1333 -0
  215. data/config/1.0/stix/cybox/objects/Win_File_Object.xsd +269 -0
  216. data/config/1.0/stix/cybox/objects/Win_Handle_Object.xsd +186 -0
  217. data/config/1.0/stix/cybox/objects/Win_Kernel_Hook_Object.xsd +109 -0
  218. data/config/1.0/stix/cybox/objects/Win_Kernel_Object.xsd +128 -0
  219. data/config/1.0/stix/cybox/objects/Win_Mailslot_Object.xsd +56 -0
  220. data/config/1.0/stix/cybox/objects/Win_Memory_Page_Region_Object.xsd +198 -0
  221. data/config/1.0/stix/cybox/objects/Win_Mutex_Object.xsd +42 -0
  222. data/config/1.0/stix/cybox/objects/Win_Network_Route_Entry_Object.xsd +200 -0
  223. data/config/1.0/stix/cybox/objects/Win_Network_Share_Object.xsd +205 -0
  224. data/config/1.0/stix/cybox/objects/Win_Pipe_Object.xsd +73 -0
  225. data/config/1.0/stix/cybox/objects/Win_Prefetch_Object.xsd +113 -0
  226. data/config/1.0/stix/cybox/objects/Win_Process_Object.xsd +167 -0
  227. data/config/1.0/stix/cybox/objects/Win_Registry_Key_Object.xsd +290 -0
  228. data/config/1.0/stix/cybox/objects/Win_Semaphore_Object.xsd +42 -0
  229. data/config/1.0/stix/cybox/objects/Win_Service_Object.xsd +287 -0
  230. data/config/1.0/stix/cybox/objects/Win_System_Object.xsd +126 -0
  231. data/config/1.0/stix/cybox/objects/Win_System_Restore_Object.xsd +199 -0
  232. data/config/1.0/stix/cybox/objects/Win_Task_Object.xsd +755 -0
  233. data/config/1.0/stix/cybox/objects/Win_Thread_Object.xsd +146 -0
  234. data/config/1.0/stix/cybox/objects/Win_User_Account_Object.xsd +73 -0
  235. data/config/1.0/stix/cybox/objects/Win_Volume_Object.xsd +161 -0
  236. data/config/1.0/stix/cybox/objects/Win_Waitable_Timer_Object.xsd +90 -0
  237. data/config/1.0/stix/cybox/objects/X509_Certificate_Object.xsd +270 -0
  238. data/config/1.0/stix/data_marking.xsd +92 -0
  239. data/config/1.0/stix/exploit_target.xsd +223 -0
  240. data/config/1.0/stix/extensions/address/ciq_address_3.0.xsd +27 -0
  241. data/config/1.0/stix/extensions/address/readme.txt +1 -0
  242. data/config/1.0/stix/extensions/attack_pattern/capec_2.5.xsd +31 -0
  243. data/config/1.0/stix/extensions/identity/ciq_identity_3.0.xsd +108 -0
  244. data/config/1.0/stix/extensions/identity/readme.txt +1 -0
  245. data/config/1.0/stix/extensions/malware/maec_4.0.xsd +32 -0
  246. data/config/1.0/stix/extensions/malware/readme.txt +3 -0
  247. data/config/1.0/stix/extensions/marking/simple_marking.xsd +30 -0
  248. data/config/1.0/stix/extensions/marking/tlp.xsd +39 -0
  249. data/config/1.0/stix/extensions/structured_coa/generic.xsd +46 -0
  250. data/config/1.0/stix/extensions/test_mechanism/generic.xsd +46 -0
  251. data/config/1.0/stix/extensions/test_mechanism/open_ioc_2010.xsd +32 -0
  252. data/config/1.0/stix/extensions/test_mechanism/oval_5.10.xsd +37 -0
  253. data/config/1.0/stix/extensions/test_mechanism/snort.xsd +36 -0
  254. data/config/1.0/stix/extensions/test_mechanism/yara.xsd +36 -0
  255. data/config/1.0/stix/extensions/vulnerability/cvrf_1.1.xsd +33 -0
  256. data/config/1.0/stix/extensions/vulnerability/readme.txt +1 -0
  257. data/config/1.0/stix/external/capec_2.5/ap_schema_v2.5.xsd +2671 -0
  258. data/config/1.0/stix/external/cvrf_1.1/common.xsd +176 -0
  259. data/config/1.0/stix/external/cvrf_1.1/cpe-language_2.2a.xsd +182 -0
  260. data/config/1.0/stix/external/cvrf_1.1/cvrf.xsd +487 -0
  261. data/config/1.0/stix/external/cvrf_1.1/cvss-v2_0.9.xsd +415 -0
  262. data/config/1.0/stix/external/cvrf_1.1/dc.xsd +118 -0
  263. data/config/1.0/stix/external/cvrf_1.1/prod.xsd +292 -0
  264. data/config/1.0/stix/external/cvrf_1.1/scap-core_0.9.xsd +170 -0
  265. data/config/1.0/stix/external/cvrf_1.1/vuln.xsd +631 -0
  266. data/config/1.0/stix/external/cvrf_1.1/xml.xsd +287 -0
  267. data/config/1.0/stix/external/oasis_ciq_3.0/CommonTypes.xsd +104 -0
  268. data/config/1.0/stix/external/oasis_ciq_3.0/xAL-types.xsd +511 -0
  269. data/config/1.0/stix/external/oasis_ciq_3.0/xAL.xsd +672 -0
  270. data/config/1.0/stix/external/oasis_ciq_3.0/xNAL-types.xsd +36 -0
  271. data/config/1.0/stix/external/oasis_ciq_3.0/xNAL.xsd +126 -0
  272. data/config/1.0/stix/external/oasis_ciq_3.0/xNL-types.xsd +222 -0
  273. data/config/1.0/stix/external/oasis_ciq_3.0/xNL.xsd +284 -0
  274. data/config/1.0/stix/external/oasis_ciq_3.0/xPIL-types.xsd +854 -0
  275. data/config/1.0/stix/external/oasis_ciq_3.0/xPIL.xsd +1621 -0
  276. data/config/1.0/stix/external/oasis_ciq_3.0/xlink-2003-12-31.xsd +90 -0
  277. data/config/1.0/stix/external/open_ioc_2010/ioc-TR.xsd +25 -0
  278. data/config/1.0/stix/external/open_ioc_2010/ioc.xsd +105 -0
  279. data/config/1.0/stix/external/oval_5.10/oval-common-schema.xsd +781 -0
  280. data/config/1.0/stix/external/oval_5.10/oval-definitions-schema.xsd +1608 -0
  281. data/config/1.0/stix/external/oval_5.10/oval-variables-schema.xsd +84 -0
  282. data/config/1.0/stix/external/oval_5.10/xmldsig-core-schema.xsd +309 -0
  283. data/config/1.0/stix/incident.xsd +786 -0
  284. data/config/1.0/stix/indicator.xsd +309 -0
  285. data/config/1.0/stix/stix_common.xsd +762 -0
  286. data/config/1.0/stix/stix_core.xsd +217 -0
  287. data/config/1.0/stix/stix_default_vocabularies.xsd +1578 -0
  288. data/config/1.0/stix/threat_actor.xsd +173 -0
  289. data/config/1.0/stix/ttp.xsd +340 -0
  290. data/config/1.1/stix/campaign.xsd +223 -0
  291. data/config/1.1/stix/course_of_action.xsd +190 -0
  292. data/config/1.1/stix/cybox/cybox_common.xsd +2700 -0
  293. data/config/1.1/stix/cybox/cybox_core.xsd +1145 -0
  294. data/config/1.1/stix/cybox/cybox_default_vocabularies.xsd +5180 -0
  295. data/config/1.1/stix/cybox/extensions/location/ciq_address_3.0.xsd +27 -0
  296. data/config/1.1/stix/cybox/extensions/platform/README.txt +1 -0
  297. data/config/1.1/stix/cybox/extensions/platform/cpe2.3.xsd +34 -0
  298. data/config/1.1/stix/cybox/external/cpe_2.3/cpe-language_2.3.xsd +234 -0
  299. data/config/1.1/stix/cybox/external/cpe_2.3/cpe-naming_2.3.xsd +45 -0
  300. data/config/1.1/stix/cybox/external/cpe_2.3/xml.xsd +145 -0
  301. data/config/1.1/stix/cybox/external/oasis_ciq_3.0/CommonTypes.xsd +104 -0
  302. data/config/1.1/stix/cybox/external/oasis_ciq_3.0/xAL-types.xsd +511 -0
  303. data/config/1.1/stix/cybox/external/oasis_ciq_3.0/xAL.xsd +672 -0
  304. data/config/1.1/stix/cybox/external/oasis_ciq_3.0/xNAL-types.xsd +36 -0
  305. data/config/1.1/stix/cybox/external/oasis_ciq_3.0/xNAL.xsd +126 -0
  306. data/config/1.1/stix/cybox/external/oasis_ciq_3.0/xNL-types.xsd +222 -0
  307. data/config/1.1/stix/cybox/external/oasis_ciq_3.0/xNL.xsd +284 -0
  308. data/config/1.1/stix/cybox/external/oasis_ciq_3.0/xPIL-types.xsd +854 -0
  309. data/config/1.1/stix/cybox/external/oasis_ciq_3.0/xPIL.xsd +1621 -0
  310. data/config/1.1/stix/cybox/external/oasis_ciq_3.0/xlink-2003-12-31.xsd +90 -0
  311. data/config/1.1/stix/cybox/objects/API_Object.xsd +55 -0
  312. data/config/1.1/stix/cybox/objects/ARP_Cache_Object.xsd +98 -0
  313. data/config/1.1/stix/cybox/objects/AS_Object.xsd +50 -0
  314. data/config/1.1/stix/cybox/objects/Account_Object.xsd +501 -0
  315. data/config/1.1/stix/cybox/objects/Address_Object.xsd +127 -0
  316. data/config/1.1/stix/cybox/objects/Archive_File_Object.xsd +134 -0
  317. data/config/1.1/stix/cybox/objects/Artifact_Object.xsd +212 -0
  318. data/config/1.1/stix/cybox/objects/Code_Object.xsd +417 -0
  319. data/config/1.1/stix/cybox/objects/Custom_Object.xsd +42 -0
  320. data/config/1.1/stix/cybox/objects/DNS_Cache_Object.xsd +53 -0
  321. data/config/1.1/stix/cybox/objects/DNS_Query_Object.xsd +164 -0
  322. data/config/1.1/stix/cybox/objects/DNS_Record_Object.xsd +92 -0
  323. data/config/1.1/stix/cybox/objects/Device_Object.xsd +65 -0
  324. data/config/1.1/stix/cybox/objects/Disk_Object.xsd +117 -0
  325. data/config/1.1/stix/cybox/objects/Disk_Partition_Object.xsd +199 -0
  326. data/config/1.1/stix/cybox/objects/Domain_Name_Object.xsd +57 -0
  327. data/config/1.1/stix/cybox/objects/Email_Message_Object.xsd +278 -0
  328. data/config/1.1/stix/cybox/objects/File_Object.xsd +397 -0
  329. data/config/1.1/stix/cybox/objects/GUI_Dialogbox_Object.xsd +41 -0
  330. data/config/1.1/stix/cybox/objects/GUI_Object.xsd +40 -0
  331. data/config/1.1/stix/cybox/objects/GUI_Window_Object.xsd +46 -0
  332. data/config/1.1/stix/cybox/objects/HTTP_Session_Object.xsd +633 -0
  333. data/config/1.1/stix/cybox/objects/Hostname_Object.xsd +45 -0
  334. data/config/1.1/stix/cybox/objects/Image_File_Object.xsd +124 -0
  335. data/config/1.1/stix/cybox/objects/Library_Object.xsd +114 -0
  336. data/config/1.1/stix/cybox/objects/Link_Object.xsd +36 -0
  337. data/config/1.1/stix/cybox/objects/Linux_Package_Object.xsd +75 -0
  338. data/config/1.1/stix/cybox/objects/Memory_Object.xsd +141 -0
  339. data/config/1.1/stix/cybox/objects/Mutex_Object.xsd +40 -0
  340. data/config/1.1/stix/cybox/objects/Network_Connection_Object.xsd +540 -0
  341. data/config/1.1/stix/cybox/objects/Network_Flow_Object.xsd +1559 -0
  342. data/config/1.1/stix/cybox/objects/Network_Packet_Object.xsd +2934 -0
  343. data/config/1.1/stix/cybox/objects/Network_Route_Entry_Object.xsd +155 -0
  344. data/config/1.1/stix/cybox/objects/Network_Route_Object.xsd +93 -0
  345. data/config/1.1/stix/cybox/objects/Network_Socket_Object.xsd +529 -0
  346. data/config/1.1/stix/cybox/objects/Network_Subnet_Object.xsd +64 -0
  347. data/config/1.1/stix/cybox/objects/PDF_File_Object.xsd +595 -0
  348. data/config/1.1/stix/cybox/objects/Pipe_Object.xsd +40 -0
  349. data/config/1.1/stix/cybox/objects/Port_Object.xsd +40 -0
  350. data/config/1.1/stix/cybox/objects/Process_Object.xsd +199 -0
  351. data/config/1.1/stix/cybox/objects/Product_Object.xsd +65 -0
  352. data/config/1.1/stix/cybox/objects/SMS_Message_Object.xsd +79 -0
  353. data/config/1.1/stix/cybox/objects/Semaphore_Object.xsd +50 -0
  354. data/config/1.1/stix/cybox/objects/Socket_Address_Object.xsd +50 -0
  355. data/config/1.1/stix/cybox/objects/System_Object.xsd +410 -0
  356. data/config/1.1/stix/cybox/objects/URI_Object.xsd +62 -0
  357. data/config/1.1/stix/cybox/objects/URL_History_Object.xsd +104 -0
  358. data/config/1.1/stix/cybox/objects/Unix_File_Object.xsd +164 -0
  359. data/config/1.1/stix/cybox/objects/Unix_Network_Route_Entry_Object.xsd +56 -0
  360. data/config/1.1/stix/cybox/objects/Unix_Pipe_Object.xsd +36 -0
  361. data/config/1.1/stix/cybox/objects/Unix_Process_Object.xsd +143 -0
  362. data/config/1.1/stix/cybox/objects/Unix_User_Account_Object.xsd +78 -0
  363. data/config/1.1/stix/cybox/objects/Unix_Volume_Object.xsd +41 -0
  364. data/config/1.1/stix/cybox/objects/User_Account_Object.xsd +110 -0
  365. data/config/1.1/stix/cybox/objects/User_Session_Object.xsd +60 -0
  366. data/config/1.1/stix/cybox/objects/Volume_Object.xsd +235 -0
  367. data/config/1.1/stix/cybox/objects/Whois_Object.xsd +430 -0
  368. data/config/1.1/stix/cybox/objects/Win_Computer_Account_Object.xsd +135 -0
  369. data/config/1.1/stix/cybox/objects/Win_Critical_Section_Object.xsd +40 -0
  370. data/config/1.1/stix/cybox/objects/Win_Driver_Object.xsd +270 -0
  371. data/config/1.1/stix/cybox/objects/Win_Event_Log_Object.xsd +137 -0
  372. data/config/1.1/stix/cybox/objects/Win_Event_Object.xsd +80 -0
  373. data/config/1.1/stix/cybox/objects/Win_Executable_File_Object.xsd +1311 -0
  374. data/config/1.1/stix/cybox/objects/Win_File_Object.xsd +269 -0
  375. data/config/1.1/stix/cybox/objects/Win_Filemapping_Object.xsd +175 -0
  376. data/config/1.1/stix/cybox/objects/Win_Handle_Object.xsd +351 -0
  377. data/config/1.1/stix/cybox/objects/Win_Hook_Object.xsd +152 -0
  378. data/config/1.1/stix/cybox/objects/Win_Kernel_Hook_Object.xsd +109 -0
  379. data/config/1.1/stix/cybox/objects/Win_Kernel_Object.xsd +128 -0
  380. data/config/1.1/stix/cybox/objects/Win_Mailslot_Object.xsd +56 -0
  381. data/config/1.1/stix/cybox/objects/Win_Memory_Page_Region_Object.xsd +198 -0
  382. data/config/1.1/stix/cybox/objects/Win_Mutex_Object.xsd +42 -0
  383. data/config/1.1/stix/cybox/objects/Win_Network_Route_Entry_Object.xsd +200 -0
  384. data/config/1.1/stix/cybox/objects/Win_Network_Share_Object.xsd +205 -0
  385. data/config/1.1/stix/cybox/objects/Win_Pipe_Object.xsd +73 -0
  386. data/config/1.1/stix/cybox/objects/Win_Prefetch_Object.xsd +113 -0
  387. data/config/1.1/stix/cybox/objects/Win_Process_Object.xsd +174 -0
  388. data/config/1.1/stix/cybox/objects/Win_Registry_Key_Object.xsd +290 -0
  389. data/config/1.1/stix/cybox/objects/Win_Semaphore_Object.xsd +42 -0
  390. data/config/1.1/stix/cybox/objects/Win_Service_Object.xsd +287 -0
  391. data/config/1.1/stix/cybox/objects/Win_System_Object.xsd +126 -0
  392. data/config/1.1/stix/cybox/objects/Win_System_Restore_Object.xsd +207 -0
  393. data/config/1.1/stix/cybox/objects/Win_Task_Object.xsd +755 -0
  394. data/config/1.1/stix/cybox/objects/Win_Thread_Object.xsd +146 -0
  395. data/config/1.1/stix/cybox/objects/Win_User_Account_Object.xsd +73 -0
  396. data/config/1.1/stix/cybox/objects/Win_Volume_Object.xsd +161 -0
  397. data/config/1.1/stix/cybox/objects/Win_Waitable_Timer_Object.xsd +90 -0
  398. data/config/1.1/stix/cybox/objects/X509_Certificate_Object.xsd +275 -0
  399. data/config/1.1/stix/data_marking.xsd +96 -0
  400. data/config/1.1/stix/exploit_target.xsd +323 -0
  401. data/config/1.1/stix/extensions/address/ciq_3.0_address.xsd +27 -0
  402. data/config/1.1/stix/extensions/address/readme.txt +1 -0
  403. data/config/1.1/stix/extensions/attack_pattern/capec_2.7_attack_pattern.xsd +31 -0
  404. data/config/1.1/stix/extensions/attack_pattern/readme.txt +1 -0
  405. data/config/1.1/stix/extensions/identity/ciq_3.0_identity.xsd +113 -0
  406. data/config/1.1/stix/extensions/identity/readme.txt +1 -0
  407. data/config/1.1/stix/extensions/malware/maec_4.1_malware.xsd +31 -0
  408. data/config/1.1/stix/extensions/malware/readme.txt +1 -0
  409. data/config/1.1/stix/extensions/marking/simple_marking.xsd +31 -0
  410. data/config/1.1/stix/extensions/marking/terms_of_use_marking.xsd +31 -0
  411. data/config/1.1/stix/extensions/marking/tlp_marking.xsd +40 -0
  412. data/config/1.1/stix/extensions/structured_coa/generic_structured_coa.xsd +46 -0
  413. data/config/1.1/stix/extensions/test_mechanism/generic_test_mechanism.xsd +46 -0
  414. data/config/1.1/stix/extensions/test_mechanism/open_ioc_2010_test_mechanism.xsd +32 -0
  415. data/config/1.1/stix/extensions/test_mechanism/oval_5.10_test_mechanism.xsd +37 -0
  416. data/config/1.1/stix/extensions/test_mechanism/snort_test_mechanism.xsd +56 -0
  417. data/config/1.1/stix/extensions/test_mechanism/yara_test_mechanism.xsd +36 -0
  418. data/config/1.1/stix/extensions/vulnerability/cvrf_1.1_vulnerability.xsd +33 -0
  419. data/config/1.1/stix/extensions/vulnerability/readme.txt +1 -0
  420. data/config/1.1/stix/external/capec_2.7/ap_schema_v2.7.xsd +3618 -0
  421. data/config/1.1/stix/external/cvrf_1.1/common.xsd +176 -0
  422. data/config/1.1/stix/external/cvrf_1.1/cpe-language_2.2a.xsd +182 -0
  423. data/config/1.1/stix/external/cvrf_1.1/cvrf.xsd +487 -0
  424. data/config/1.1/stix/external/cvrf_1.1/cvss-v2_0.9.xsd +415 -0
  425. data/config/1.1/stix/external/cvrf_1.1/dc.xsd +118 -0
  426. data/config/1.1/stix/external/cvrf_1.1/prod.xsd +292 -0
  427. data/config/1.1/stix/external/cvrf_1.1/scap-core_0.9.xsd +170 -0
  428. data/config/1.1/stix/external/cvrf_1.1/vuln.xsd +631 -0
  429. data/config/1.1/stix/external/cvrf_1.1/xml.xsd +287 -0
  430. data/config/1.1/stix/external/maec_4.1/maec_bundle_schema.xsd +1228 -0
  431. data/config/1.1/stix/external/maec_4.1/maec_container_schema.xsd +62 -0
  432. data/config/1.1/stix/external/maec_4.1/maec_default_vocabularies.xsd +5325 -0
  433. data/config/1.1/stix/external/maec_4.1/maec_package_schema.xsd +1095 -0
  434. data/config/1.1/stix/external/maec_4.1/metadataSharing.xsd +1712 -0
  435. data/config/1.1/stix/external/oasis_ciq_3.0/CommonTypes.xsd +104 -0
  436. data/config/1.1/stix/external/oasis_ciq_3.0/xAL-types.xsd +511 -0
  437. data/config/1.1/stix/external/oasis_ciq_3.0/xAL.xsd +672 -0
  438. data/config/1.1/stix/external/oasis_ciq_3.0/xNAL-types.xsd +36 -0
  439. data/config/1.1/stix/external/oasis_ciq_3.0/xNAL.xsd +126 -0
  440. data/config/1.1/stix/external/oasis_ciq_3.0/xNL-types.xsd +222 -0
  441. data/config/1.1/stix/external/oasis_ciq_3.0/xNL.xsd +284 -0
  442. data/config/1.1/stix/external/oasis_ciq_3.0/xPIL-types.xsd +854 -0
  443. data/config/1.1/stix/external/oasis_ciq_3.0/xPIL.xsd +1621 -0
  444. data/config/1.1/stix/external/oasis_ciq_3.0/xlink-2003-12-31.xsd +90 -0
  445. data/config/1.1/stix/external/open_ioc_2010/ioc-TR.xsd +25 -0
  446. data/config/1.1/stix/external/open_ioc_2010/ioc.xsd +105 -0
  447. data/config/1.1/stix/external/oval_5.10/oval-common-schema.xsd +781 -0
  448. data/config/1.1/stix/external/oval_5.10/oval-definitions-schema.xsd +1608 -0
  449. data/config/1.1/stix/external/oval_5.10/oval-variables-schema.xsd +84 -0
  450. data/config/1.1/stix/external/oval_5.10/xmldsig-core-schema.xsd +309 -0
  451. data/config/1.1/stix/incident.xsd +759 -0
  452. data/config/1.1/stix/indicator.xsd +367 -0
  453. data/config/1.1/stix/stix_common.xsd +932 -0
  454. data/config/1.1/stix/stix_core.xsd +253 -0
  455. data/config/1.1/stix/stix_default_vocabularies.xsd +2015 -0
  456. data/config/1.1/stix/threat_actor.xsd +181 -0
  457. data/config/1.1/stix/ttp.xsd +429 -0
  458. data/config/1.1/uber_schema.xsd +149 -0
  459. data/config/mappings.json +30 -0
  460. data/lib/stix_schema_spy.rb +18 -0
  461. data/lib/stix_schema_spy/models/attribute.rb +20 -0
  462. data/lib/stix_schema_spy/models/complex_type.rb +50 -0
  463. data/lib/stix_schema_spy/models/element.rb +26 -0
  464. data/lib/stix_schema_spy/models/external_type.rb +48 -0
  465. data/lib/stix_schema_spy/models/has_children.rb +83 -0
  466. data/lib/stix_schema_spy/models/node.rb +71 -0
  467. data/lib/stix_schema_spy/models/schema.rb +217 -0
  468. data/lib/stix_schema_spy/models/simple_type.rb +47 -0
  469. data/lib/stix_schema_spy/models/special_field.rb +21 -0
  470. data/lib/stix_schema_spy/models/type.rb +106 -0
  471. data/lib/stix_schema_spy/util/schema_naming.rb +106 -0
  472. data/lib/stix_schema_spy/util/tasks.rb +69 -0
  473. data/lib/stix_schema_spy/version.rb +3 -0
  474. data/spec/lib/schema_naming_spec.rb +190 -0
  475. data/spec/models/complex_type_spec.rb +68 -0
  476. data/spec/models/node_spec.rb +47 -0
  477. data/spec/models/schema_spec.rb +63 -0
  478. data/spec/models/simple_type_spec.rb +38 -0
  479. data/spec/models/type_spec.rb +43 -0
  480. data/spec/spec_helper.rb +8 -0
  481. data/stix_schema_spy.gemspec +27 -0
  482. metadata +602 -0
@@ -0,0 +1,3106 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:cyboxCommon="http://cybox.mitre.org/common-2" xmlns:cyboxVocabs="http://cybox.mitre.org/default_vocabularies-2" targetNamespace="http://cybox.mitre.org/default_vocabularies-2" elementFormDefault="qualified" version="2.0.0">
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>cybox_default_vocabularies</schema>
7
+ <version>2.0.0</version>
8
+ <date>04/05/2013 9:00:00 AM</date>
9
+ <short_description>The following defines types for default controlled vocabularies used within CybOX. An individual vocabulary may be revised at any time. Revisions to vocabularies will result in the creation of new types with the new version number embedded in the name of those types. Vocabularies can be reference from CybOX elements through the use of xsi:Type. The individual elements where this may be done indicate the expected default vocabulary.</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:complexType name="ActionTypeVocab-1.0">
15
+ <xs:annotation>
16
+ <xs:documentation>The ActionTypeVocab is the default CybOX vocabulary for Action Types, captured via the ActionType/Type element in CybOX Core.</xs:documentation>
17
+ </xs:annotation>
18
+ <xs:simpleContent>
19
+ <xs:restriction base="cyboxCommon:ControlledVocabularyStringType">
20
+ <xs:simpleType>
21
+ <xs:union memberTypes="cyboxVocabs:ActionTypeEnum-1.0"/>
22
+ </xs:simpleType>
23
+ <xs:attribute name="vocab_name" type="xs:string" use="optional" fixed="CybOX Default Action Types"/>
24
+ <xs:attribute name="vocab_reference" type="xs:anyURI" use="optional" fixed="http://cybox.mitre.org/XMLSchema/default_vocabularies/2.0/cybox_default_vocabularies.xsd#ActionTypeVocab-1.0"/>
25
+ </xs:restriction>
26
+ </xs:simpleContent>
27
+ </xs:complexType>
28
+ <xs:simpleType name="ActionTypeEnum-1.0">
29
+ <xs:annotation>
30
+ <xs:documentation>ActionTypeEnum is a (non-exhaustive) enumeration of cyber observable action types.</xs:documentation>
31
+ </xs:annotation>
32
+ <xs:restriction base="xs:string">
33
+ <xs:enumeration value="Accept">
34
+ <xs:annotation>
35
+ <xs:documentation>Specifies the atomic action of accepting an object or value.</xs:documentation>
36
+ </xs:annotation>
37
+ </xs:enumeration>
38
+ <xs:enumeration value="Access">
39
+ <xs:annotation>
40
+ <xs:documentation>Specifies the atomic action of accessing an object.</xs:documentation>
41
+ </xs:annotation>
42
+ </xs:enumeration>
43
+ <xs:enumeration value="Add">
44
+ <xs:annotation>
45
+ <xs:documentation>Specifies the atomic action of adding an object.</xs:documentation>
46
+ </xs:annotation>
47
+ </xs:enumeration>
48
+ <xs:enumeration value="Alert">
49
+ <xs:annotation>
50
+ <xs:documentation>Specifies the atomic action of issuing an alert.</xs:documentation>
51
+ </xs:annotation>
52
+ </xs:enumeration>
53
+ <xs:enumeration value="Allocate">
54
+ <xs:annotation>
55
+ <xs:documentation>Specifies the atomic action of allocating an object.</xs:documentation>
56
+ </xs:annotation>
57
+ </xs:enumeration>
58
+ <xs:enumeration value="Archive">
59
+ <xs:annotation>
60
+ <xs:documentation>Specifies the atomic action of archiving an object or data.</xs:documentation>
61
+ </xs:annotation>
62
+ </xs:enumeration>
63
+ <xs:enumeration value="Assign">
64
+ <xs:annotation>
65
+ <xs:documentation>Specifies the atomic action of assigning a value to an object.</xs:documentation>
66
+ </xs:annotation>
67
+ </xs:enumeration>
68
+ <xs:enumeration value="Audit">
69
+ <xs:annotation>
70
+ <xs:documentation>Specifies the atomic action of auditing an object or data.</xs:documentation>
71
+ </xs:annotation>
72
+ </xs:enumeration>
73
+ <xs:enumeration value="Backup">
74
+ <xs:annotation>
75
+ <xs:documentation>Specifies the atomic action of backing up an object or data.</xs:documentation>
76
+ </xs:annotation>
77
+ </xs:enumeration>
78
+ <xs:enumeration value="Bind">
79
+ <xs:annotation>
80
+ <xs:documentation>Specifies the atomic action of binding two objects.</xs:documentation>
81
+ </xs:annotation>
82
+ </xs:enumeration>
83
+ <xs:enumeration value="Block">
84
+ <xs:annotation>
85
+ <xs:documentation>Specifies the atomic action of blocking access to an object or resource.</xs:documentation>
86
+ </xs:annotation>
87
+ </xs:enumeration>
88
+ <xs:enumeration value="Call">
89
+ <xs:annotation>
90
+ <xs:documentation>Specifies the atomic action of calling an object or resource.</xs:documentation>
91
+ </xs:annotation>
92
+ </xs:enumeration>
93
+ <xs:enumeration value="Change">
94
+ <xs:annotation>
95
+ <xs:documentation>Specifies the atomic action of changing an object.</xs:documentation>
96
+ </xs:annotation>
97
+ </xs:enumeration>
98
+ <xs:enumeration value="Check">
99
+ <xs:annotation>
100
+ <xs:documentation>Specifies the atomic action of checking an object.</xs:documentation>
101
+ </xs:annotation>
102
+ </xs:enumeration>
103
+ <xs:enumeration value="Clean">
104
+ <xs:annotation>
105
+ <xs:documentation>Specifies the atomic action of cleaning an object, such as a file system.</xs:documentation>
106
+ </xs:annotation>
107
+ </xs:enumeration>
108
+ <xs:enumeration value="Click">
109
+ <xs:annotation>
110
+ <xs:documentation>Specifies the atomic action of clicking an object, as with a mouse.</xs:documentation>
111
+ </xs:annotation>
112
+ </xs:enumeration>
113
+ <xs:enumeration value="Close">
114
+ <xs:annotation>
115
+ <xs:documentation>Specifies the atomic action of closing an object, such as a window handle.</xs:documentation>
116
+ </xs:annotation>
117
+ </xs:enumeration>
118
+ <xs:enumeration value="Compare">
119
+ <xs:annotation>
120
+ <xs:documentation>Specifies the atomic action of comparing two objects.</xs:documentation>
121
+ </xs:annotation>
122
+ </xs:enumeration>
123
+ <xs:enumeration value="Compress">
124
+ <xs:annotation>
125
+ <xs:documentation>Specifies the atomic action of compressing an object.</xs:documentation>
126
+ </xs:annotation>
127
+ </xs:enumeration>
128
+ <xs:enumeration value="Configure">
129
+ <xs:annotation>
130
+ <xs:documentation>Specifies the atomic action of configuring a resource.</xs:documentation>
131
+ </xs:annotation>
132
+ </xs:enumeration>
133
+ <xs:enumeration value="Connect">
134
+ <xs:annotation>
135
+ <xs:documentation>Specifies the atomic action of connecting to an object, such as a service or resource.</xs:documentation>
136
+ </xs:annotation>
137
+ </xs:enumeration>
138
+ <xs:enumeration value="Control">
139
+ <xs:annotation>
140
+ <xs:documentation>Specifies the atomic action of controlling an object or data.</xs:documentation>
141
+ </xs:annotation>
142
+ </xs:enumeration>
143
+ <xs:enumeration value="Copy/Duplicate">
144
+ <xs:annotation>
145
+ <xs:documentation>Specifies the atomic action of copying or duplicating an object or data EXCEPT in cases where the object is considered a thread or process as a whole.</xs:documentation>
146
+ </xs:annotation>
147
+ </xs:enumeration>
148
+ <xs:enumeration value="Create">
149
+ <xs:annotation>
150
+ <xs:documentation>Specifies the atomic action of creating an object or data.</xs:documentation>
151
+ </xs:annotation>
152
+ </xs:enumeration>
153
+ <xs:enumeration value="Decode">
154
+ <xs:annotation>
155
+ <xs:documentation>Specifies the atomic action of decoding an object or data.</xs:documentation>
156
+ </xs:annotation>
157
+ </xs:enumeration>
158
+ <xs:enumeration value="Decompress">
159
+ <xs:annotation>
160
+ <xs:documentation>Specifies the atomic action of decompressing an object, such as an archive.</xs:documentation>
161
+ </xs:annotation>
162
+ </xs:enumeration>
163
+ <xs:enumeration value="Decrypt">
164
+ <xs:annotation>
165
+ <xs:documentation>Specifies the atomic action of decrypting an object.</xs:documentation>
166
+ </xs:annotation>
167
+ </xs:enumeration>
168
+ <xs:enumeration value="Deny">
169
+ <xs:annotation>
170
+ <xs:documentation>Specifies the atomic action of denying access to a object or resource.</xs:documentation>
171
+ </xs:annotation>
172
+ </xs:enumeration>
173
+ <xs:enumeration value="Depress">
174
+ <xs:annotation>
175
+ <xs:documentation>Specifies the atomic action of depressing an object that has been pressed, such a button.</xs:documentation>
176
+ </xs:annotation>
177
+ </xs:enumeration>
178
+ <xs:enumeration value="Detect">
179
+ <xs:annotation>
180
+ <xs:documentation>Specifies the atomic action of detecting an object.</xs:documentation>
181
+ </xs:annotation>
182
+ </xs:enumeration>
183
+ <xs:enumeration value="Disconnect">
184
+ <xs:annotation>
185
+ <xs:documentation>Specifies the atomic action of disconnecting from a service or resource.</xs:documentation>
186
+ </xs:annotation>
187
+ </xs:enumeration>
188
+ <xs:enumeration value="Download">
189
+ <xs:annotation>
190
+ <xs:documentation>Specifies the atomic action of downloading an object or data.</xs:documentation>
191
+ </xs:annotation>
192
+ </xs:enumeration>
193
+ <xs:enumeration value="Draw">
194
+ <xs:annotation>
195
+ <xs:documentation>Specifies the atomic action of drawing an object.</xs:documentation>
196
+ </xs:annotation>
197
+ </xs:enumeration>
198
+ <xs:enumeration value="Drop">
199
+ <xs:annotation>
200
+ <xs:documentation>Specifies the atomic action of dropping an object, such as a connection.</xs:documentation>
201
+ </xs:annotation>
202
+ </xs:enumeration>
203
+ <xs:enumeration value="Encode">
204
+ <xs:annotation>
205
+ <xs:documentation>Specifies the atomic action of encoding an object or data.</xs:documentation>
206
+ </xs:annotation>
207
+ </xs:enumeration>
208
+ <xs:enumeration value="Encrypt">
209
+ <xs:annotation>
210
+ <xs:documentation>Specifies the atomic action of encrypting an object or data.</xs:documentation>
211
+ </xs:annotation>
212
+ </xs:enumeration>
213
+ <xs:enumeration value="Enumerate">
214
+ <xs:annotation>
215
+ <xs:documentation>Specifies the atomic action of enumerating a list of objects.</xs:documentation>
216
+ </xs:annotation>
217
+ </xs:enumeration>
218
+ <xs:enumeration value="Execute">
219
+ <xs:annotation>
220
+ <xs:documentation>Specifies the atomic action of executing an object, such as an executable file.</xs:documentation>
221
+ </xs:annotation>
222
+ </xs:enumeration>
223
+ <xs:enumeration value="Extract">
224
+ <xs:annotation>
225
+ <xs:documentation>Specifies the atomic action of extracting an object.</xs:documentation>
226
+ </xs:annotation>
227
+ </xs:enumeration>
228
+ <xs:enumeration value="Filter">
229
+ <xs:annotation>
230
+ <xs:documentation>Specifies the atomic action of filtering an object or data.</xs:documentation>
231
+ </xs:annotation>
232
+ </xs:enumeration>
233
+ <xs:enumeration value="Find">
234
+ <xs:annotation>
235
+ <xs:documentation>Specifies the atomic action of finding an object or data.</xs:documentation>
236
+ </xs:annotation>
237
+ </xs:enumeration>
238
+ <xs:enumeration value="Flush">
239
+ <xs:annotation>
240
+ <xs:documentation>Specifies the atomic action of flushing an object or data, such as a cache.</xs:documentation>
241
+ </xs:annotation>
242
+ </xs:enumeration>
243
+ <xs:enumeration value="Fork">
244
+ <xs:annotation>
245
+ <xs:documentation>Specifies the atomic action of forking, as with a process. Because this is usually associated with processes and threads and does not generalize to objects, it is DIFFERENT from Copy/Duplicate.</xs:documentation>
246
+ </xs:annotation>
247
+ </xs:enumeration>
248
+ <xs:enumeration value="Free">
249
+ <xs:annotation>
250
+ <xs:documentation>Specifies the atomic action of freeing an object.</xs:documentation>
251
+ </xs:annotation>
252
+ </xs:enumeration>
253
+ <xs:enumeration value="Get">
254
+ <xs:annotation>
255
+ <xs:documentation>Specifies the atomic action of getting a value from an object.</xs:documentation>
256
+ </xs:annotation>
257
+ </xs:enumeration>
258
+ <xs:enumeration value="Hook">
259
+ <xs:annotation>
260
+ <xs:documentation>Specifies the atomic action of hooking an object to another object.</xs:documentation>
261
+ </xs:annotation>
262
+ </xs:enumeration>
263
+ <xs:enumeration value="Hide">
264
+ <xs:annotation>
265
+ <xs:documentation>Specifies the atomic action of hiding an object.</xs:documentation>
266
+ </xs:annotation>
267
+ </xs:enumeration>
268
+ <xs:enumeration value="Impersonate">
269
+ <xs:annotation>
270
+ <xs:documentation>Specifies the atomic action of impersonation, in which an object performs actions that assume the character or appearance of another object.</xs:documentation>
271
+ </xs:annotation>
272
+ </xs:enumeration>
273
+ <xs:enumeration value="Initialize">
274
+ <xs:annotation>
275
+ <xs:documentation>Specifies the atomic action of initializing an object.</xs:documentation>
276
+ </xs:annotation>
277
+ </xs:enumeration>
278
+ <xs:enumeration value="Inject">
279
+ <xs:annotation>
280
+ <xs:documentation>Specifies the atomic action of injecting an object.</xs:documentation>
281
+ </xs:annotation>
282
+ </xs:enumeration>
283
+ <xs:enumeration value="Install">
284
+ <xs:annotation>
285
+ <xs:documentation>Specifies the atomic action of installing an object, such as an application, program, patch, or other resource.</xs:documentation>
286
+ </xs:annotation>
287
+ </xs:enumeration>
288
+ <xs:enumeration value="Interleave">
289
+ <xs:annotation>
290
+ <xs:documentation>Specifies the atomic action of interleaving an object, i.e. the action of arranging data in a non-contiguous way to increase performance.</xs:documentation>
291
+ </xs:annotation>
292
+ </xs:enumeration>
293
+ <xs:enumeration value="Join">
294
+ <xs:annotation>
295
+ <xs:documentation>Specifies the atomic action of joining one object to another object. </xs:documentation>
296
+ </xs:annotation>
297
+ </xs:enumeration>
298
+ <xs:enumeration value="Kill">
299
+ <xs:annotation>
300
+ <xs:documentation>Specifies the atomic action of killing an object, as with a thread or program.</xs:documentation>
301
+ </xs:annotation>
302
+ </xs:enumeration>
303
+ <xs:enumeration value="Listen">
304
+ <xs:annotation>
305
+ <xs:documentation>Specifies the atomic action of listening to an object, such as to a port on a network connection.</xs:documentation>
306
+ </xs:annotation>
307
+ </xs:enumeration>
308
+ <xs:enumeration value="Load">
309
+ <xs:annotation>
310
+ <xs:documentation>Specifies the atomic action of loading an object. </xs:documentation>
311
+ </xs:annotation>
312
+ </xs:enumeration>
313
+ <xs:enumeration value="Lock">
314
+ <xs:annotation>
315
+ <xs:documentation>Specifies the atomic action of locking an object. </xs:documentation>
316
+ </xs:annotation>
317
+ </xs:enumeration>
318
+ <xs:enumeration value="Login/Logon">
319
+ <xs:annotation>
320
+ <xs:documentation>Specifies the atomic action of logging into an object, such as into a system or application. </xs:documentation>
321
+ </xs:annotation>
322
+ </xs:enumeration>
323
+ <xs:enumeration value="Logout/Logoff">
324
+ <xs:annotation>
325
+ <xs:documentation>Specifies the atomic action of logging out of an object, such as a system or application. </xs:documentation>
326
+ </xs:annotation>
327
+ </xs:enumeration>
328
+ <xs:enumeration value="Map">
329
+ <xs:annotation>
330
+ <xs:documentation>Specifies the atomic action of mapping an object to another object or data. </xs:documentation>
331
+ </xs:annotation>
332
+ </xs:enumeration>
333
+ <xs:enumeration value="Merge">
334
+ <xs:annotation>
335
+ <xs:documentation>Specifies the atomic action of merging one object to another object. </xs:documentation>
336
+ </xs:annotation>
337
+ </xs:enumeration>
338
+ <xs:enumeration value="Modify">
339
+ <xs:annotation>
340
+ <xs:documentation>Specifies the atomic action of modifying an object. </xs:documentation>
341
+ </xs:annotation>
342
+ </xs:enumeration>
343
+ <xs:enumeration value="Monitor">
344
+ <xs:annotation>
345
+ <xs:documentation>Specifies the atomic action of monitoring the state of an object.</xs:documentation>
346
+ </xs:annotation>
347
+ </xs:enumeration>
348
+ <xs:enumeration value="Move">
349
+ <xs:annotation>
350
+ <xs:documentation>Specifies the atomic action of moving an object.</xs:documentation>
351
+ </xs:annotation>
352
+ </xs:enumeration>
353
+ <xs:enumeration value="Open">
354
+ <xs:annotation>
355
+ <xs:documentation>Specifies the atomic action of opening an object.</xs:documentation>
356
+ </xs:annotation>
357
+ </xs:enumeration>
358
+ <xs:enumeration value="Pack">
359
+ <xs:annotation>
360
+ <xs:documentation>Specifies the atomic action of packing an object.</xs:documentation>
361
+ </xs:annotation>
362
+ </xs:enumeration>
363
+ <xs:enumeration value="Pause">
364
+ <xs:annotation>
365
+ <xs:documentation>Specifies the atomic action of pausing an object, such as a thread or process.</xs:documentation>
366
+ </xs:annotation>
367
+ </xs:enumeration>
368
+ <xs:enumeration value="Press">
369
+ <xs:annotation>
370
+ <xs:documentation>Specifies the atomic action of pressing an object, such as a button.</xs:documentation>
371
+ </xs:annotation>
372
+ </xs:enumeration>
373
+ <xs:enumeration value="Protect">
374
+ <xs:annotation>
375
+ <xs:documentation>Specifies the atomic action of protecting an object.</xs:documentation>
376
+ </xs:annotation>
377
+ </xs:enumeration>
378
+ <xs:enumeration value="Quarantine">
379
+ <xs:annotation>
380
+ <xs:documentation>Specifies the atomic action of placing an object in quarantine, that is, to store the object in an isolated area away from other objects it can operate on.</xs:documentation>
381
+ </xs:annotation>
382
+ </xs:enumeration>
383
+ <xs:enumeration value="Query">
384
+ <xs:annotation>
385
+ <xs:documentation>Specifies the atomic action of querying an object.</xs:documentation>
386
+ </xs:annotation>
387
+ </xs:enumeration>
388
+ <xs:enumeration value="Queue">
389
+ <xs:annotation>
390
+ <xs:documentation>Specifies the atomic action of queueing an object.</xs:documentation>
391
+ </xs:annotation>
392
+ </xs:enumeration>
393
+ <xs:enumeration value="Raise">
394
+ <xs:annotation>
395
+ <xs:documentation>Specifies the atomic action of raising an object.</xs:documentation>
396
+ </xs:annotation>
397
+ </xs:enumeration>
398
+ <xs:enumeration value="Read">
399
+ <xs:annotation>
400
+ <xs:documentation>Specifies the atomic action of reading an object.</xs:documentation>
401
+ </xs:annotation>
402
+ </xs:enumeration>
403
+ <xs:enumeration value="Receive">
404
+ <xs:annotation>
405
+ <xs:documentation>Specifies the atomic action of receiving an object.</xs:documentation>
406
+ </xs:annotation>
407
+ </xs:enumeration>
408
+ <xs:enumeration value="Release">
409
+ <xs:annotation>
410
+ <xs:documentation>Specifies the atomic action of releasing an object.</xs:documentation>
411
+ </xs:annotation>
412
+ </xs:enumeration>
413
+ <xs:enumeration value="Rename">
414
+ <xs:annotation>
415
+ <xs:documentation>Specifies the atomic action of renaming an object.</xs:documentation>
416
+ </xs:annotation>
417
+ </xs:enumeration>
418
+ <xs:enumeration value="Remove/Delete">
419
+ <xs:annotation>
420
+ <xs:documentation>Specifies the atomic action of removing or deleting an object.</xs:documentation>
421
+ </xs:annotation>
422
+ </xs:enumeration>
423
+ <xs:enumeration value="Replicate">
424
+ <xs:annotation>
425
+ <xs:documentation>Specifies the atomic action of replicating an object.</xs:documentation>
426
+ </xs:annotation>
427
+ </xs:enumeration>
428
+ <xs:enumeration value="Restore">
429
+ <xs:annotation>
430
+ <xs:documentation>Specifies the atomic action of restoring an object.</xs:documentation>
431
+ </xs:annotation>
432
+ </xs:enumeration>
433
+ <xs:enumeration value="Resume">
434
+ <xs:annotation>
435
+ <xs:documentation>Specifies the atomic action of resuming an object, as with a process or thread.</xs:documentation>
436
+ </xs:annotation>
437
+ </xs:enumeration>
438
+ <xs:enumeration value="Revert">
439
+ <xs:annotation>
440
+ <xs:documentation>Specifies the atomic action of reverting an object.</xs:documentation>
441
+ </xs:annotation>
442
+ </xs:enumeration>
443
+ <xs:enumeration value="Run">
444
+ <xs:annotation>
445
+ <xs:documentation>Specifies the atomic action of running an object, such as an application.</xs:documentation>
446
+ </xs:annotation>
447
+ </xs:enumeration>
448
+ <xs:enumeration value="Save">
449
+ <xs:annotation>
450
+ <xs:documentation>Specifies the atomic action of saving an object.</xs:documentation>
451
+ </xs:annotation>
452
+ </xs:enumeration>
453
+ <xs:enumeration value="Scan">
454
+ <xs:annotation>
455
+ <xs:documentation>Specifies the atomic action of scanning for an object or data.</xs:documentation>
456
+ </xs:annotation>
457
+ </xs:enumeration>
458
+ <xs:enumeration value="Schedule">
459
+ <xs:annotation>
460
+ <xs:documentation>Specifies the atomic action of scheduling an object, such as an event.</xs:documentation>
461
+ </xs:annotation>
462
+ </xs:enumeration>
463
+ <xs:enumeration value="Search">
464
+ <xs:annotation>
465
+ <xs:documentation>Specifies the atomic action of searching for an object.</xs:documentation>
466
+ </xs:annotation>
467
+ </xs:enumeration>
468
+ <xs:enumeration value="Send">
469
+ <xs:annotation>
470
+ <xs:documentation>Specifies the atomic action of sending an object.</xs:documentation>
471
+ </xs:annotation>
472
+ </xs:enumeration>
473
+ <xs:enumeration value="Set">
474
+ <xs:annotation>
475
+ <xs:documentation>Specifies the atomic action of setting an object to a value.</xs:documentation>
476
+ </xs:annotation>
477
+ </xs:enumeration>
478
+ <xs:enumeration value="Shutdown">
479
+ <xs:annotation>
480
+ <xs:documentation>Specifies the atomic action of shutting down an object.</xs:documentation>
481
+ </xs:annotation>
482
+ </xs:enumeration>
483
+ <xs:enumeration value="Sleep">
484
+ <xs:annotation>
485
+ <xs:documentation>Specifies the atomic action of putting to sleep an object.</xs:documentation>
486
+ </xs:annotation>
487
+ </xs:enumeration>
488
+ <xs:enumeration value="Snapshot">
489
+ <xs:annotation>
490
+ <xs:documentation>Specifies the atomic action taking a snapshot of an object.</xs:documentation>
491
+ </xs:annotation>
492
+ </xs:enumeration>
493
+ <xs:enumeration value="Start">
494
+ <xs:annotation>
495
+ <xs:documentation>Specifies the atomic action of starting an object, such as a thread or process.</xs:documentation>
496
+ </xs:annotation>
497
+ </xs:enumeration>
498
+ <xs:enumeration value="Stop">
499
+ <xs:annotation>
500
+ <xs:documentation>Specifies the atomic action of stopping an object, such as a thread or process.</xs:documentation>
501
+ </xs:annotation>
502
+ </xs:enumeration>
503
+ <xs:enumeration value="Suspend">
504
+ <xs:annotation>
505
+ <xs:documentation>Specifies the atomic action of suspending an object, such an account or privileges for an account.</xs:documentation>
506
+ </xs:annotation>
507
+ </xs:enumeration>
508
+ <xs:enumeration value="Synchronize">
509
+ <xs:annotation>
510
+ <xs:documentation>Specifies the atomic action of synchronizing an object.</xs:documentation>
511
+ </xs:annotation>
512
+ </xs:enumeration>
513
+ <xs:enumeration value="Throw">
514
+ <xs:annotation>
515
+ <xs:documentation>Specifies the atomic action of throwing an object, such as an exception in a programming language.</xs:documentation>
516
+ </xs:annotation>
517
+ </xs:enumeration>
518
+ <xs:enumeration value="Transmit">
519
+ <xs:annotation>
520
+ <xs:documentation>Specifies the atomic action of transmitting an object.</xs:documentation>
521
+ </xs:annotation>
522
+ </xs:enumeration>
523
+ <xs:enumeration value="Unblock">
524
+ <xs:annotation>
525
+ <xs:documentation>Specifies the atomic action of unblocking an object.</xs:documentation>
526
+ </xs:annotation>
527
+ </xs:enumeration>
528
+ <xs:enumeration value="Unhide">
529
+ <xs:annotation>
530
+ <xs:documentation>Specifies the atomic action of unhiding an object.</xs:documentation>
531
+ </xs:annotation>
532
+ </xs:enumeration>
533
+ <xs:enumeration value="Unhook">
534
+ <xs:annotation>
535
+ <xs:documentation>Specifies the atomic action of unhooking an object from another object, that is, to detach.</xs:documentation>
536
+ </xs:annotation>
537
+ </xs:enumeration>
538
+ <xs:enumeration value="Uninstall">
539
+ <xs:annotation>
540
+ <xs:documentation>Specifies the atomic action of uninstalling an object.</xs:documentation>
541
+ </xs:annotation>
542
+ </xs:enumeration>
543
+ <xs:enumeration value="Unload">
544
+ <xs:annotation>
545
+ <xs:documentation>Specifies the atomic action of unloading an object.</xs:documentation>
546
+ </xs:annotation>
547
+ </xs:enumeration>
548
+ <xs:enumeration value="Unlock">
549
+ <xs:annotation>
550
+ <xs:documentation>Specifies the atomic action of unlocking an object.</xs:documentation>
551
+ </xs:annotation>
552
+ </xs:enumeration>
553
+ <xs:enumeration value="Unmap">
554
+ <xs:annotation>
555
+ <xs:documentation>Specifies the atomic action of unmapping an object from another object or data.</xs:documentation>
556
+ </xs:annotation>
557
+ </xs:enumeration>
558
+ <xs:enumeration value="Unpack">
559
+ <xs:annotation>
560
+ <xs:documentation>Specifies the atomic action of unpacking an object, such as an archive.</xs:documentation>
561
+ </xs:annotation>
562
+ </xs:enumeration>
563
+ <xs:enumeration value="Update">
564
+ <xs:annotation>
565
+ <xs:documentation>Specifies the atomic action of updating an object.</xs:documentation>
566
+ </xs:annotation>
567
+ </xs:enumeration>
568
+ <xs:enumeration value="Upgrade">
569
+ <xs:annotation>
570
+ <xs:documentation>Specifies the atomic action of upgrading an object.</xs:documentation>
571
+ </xs:annotation>
572
+ </xs:enumeration>
573
+ <xs:enumeration value="Upload">
574
+ <xs:annotation>
575
+ <xs:documentation>Specifies the atomic action of uploading an object.</xs:documentation>
576
+ </xs:annotation>
577
+ </xs:enumeration>
578
+ <xs:enumeration value="Wipe/Destroy/Purge">
579
+ <xs:annotation>
580
+ <xs:documentation>Specifies the atomic action of wiping, destroying, or purging an object.</xs:documentation>
581
+ </xs:annotation>
582
+ </xs:enumeration>
583
+ <xs:enumeration value="Write">
584
+ <xs:annotation>
585
+ <xs:documentation>Specifies the atomic action of writing an object.</xs:documentation>
586
+ </xs:annotation>
587
+ </xs:enumeration>
588
+ </xs:restriction>
589
+ </xs:simpleType>
590
+ <xs:complexType name="ActionNameVocab-1.0">
591
+ <xs:annotation>
592
+ <xs:documentation>The ActionNameVocab is the default CybOX vocabulary for Action Types, captured via the ActionType/Name element in CybOX Core.</xs:documentation>
593
+ </xs:annotation>
594
+ <xs:simpleContent>
595
+ <xs:restriction base="cyboxCommon:ControlledVocabularyStringType">
596
+ <xs:simpleType>
597
+ <xs:union memberTypes="cyboxVocabs:ActionNameEnum-1.0"/>
598
+ </xs:simpleType>
599
+ <xs:attribute name="vocab_name" type="xs:string" use="optional" fixed="CybOX Default Action Names"/>
600
+ <xs:attribute name="vocab_reference" type="xs:anyURI" use="optional" fixed="http://cybox.mitre.org/XMLSchema/default_vocabularies/2.0/cybox_default_vocabularies.xsd#DefinedActionNameVocab-1.0"/>
601
+ </xs:restriction>
602
+ </xs:simpleContent>
603
+ </xs:complexType>
604
+ <xs:simpleType name="ActionNameEnum-1.0">
605
+ <xs:annotation>
606
+ <xs:documentation>The ActionNameEnum type is an enumeration of defined action names.</xs:documentation>
607
+ </xs:annotation>
608
+ <xs:restriction base="xs:string">
609
+ <xs:enumeration value="Accept Socket Connection">
610
+ <xs:annotation>
611
+ <xs:documentation>Specifies the defined action of accepting a socket connection.</xs:documentation>
612
+ </xs:annotation>
613
+ </xs:enumeration>
614
+ <xs:enumeration value="Add Connection to Network Share">
615
+ <xs:annotation>
616
+ <xs:documentation>Specifies the defined action of adding a connection to an existing network share.</xs:documentation>
617
+ </xs:annotation>
618
+ </xs:enumeration>
619
+ <xs:enumeration value="Add Network Share">
620
+ <xs:annotation>
621
+ <xs:documentation>Specifies the defined action of adding a new network share.</xs:documentation>
622
+ </xs:annotation>
623
+ </xs:enumeration>
624
+ <xs:enumeration value="Add System Call Hook">
625
+ <xs:annotation>
626
+ <xs:documentation>Specifies the defined action of adding a new system call hook.</xs:documentation>
627
+ </xs:annotation>
628
+ </xs:enumeration>
629
+ <xs:enumeration value="Add User">
630
+ <xs:annotation>
631
+ <xs:documentation>Specifies the defined action of adding a new user.</xs:documentation>
632
+ </xs:annotation>
633
+ </xs:enumeration>
634
+ <xs:enumeration value="Add Windows Hook">
635
+ <xs:annotation>
636
+ <xs:documentation>Specifies the defined action of adding a new Windows hook.</xs:documentation>
637
+ </xs:annotation>
638
+ </xs:enumeration>
639
+ <xs:enumeration value="Add Scheduled Task">
640
+ <xs:annotation>
641
+ <xs:documentation>Specifies the defined action of adding a scheduled task.</xs:documentation>
642
+ </xs:annotation>
643
+ </xs:enumeration>
644
+ <xs:enumeration value="Allocate Virtual Memory in Process">
645
+ <xs:annotation>
646
+ <xs:documentation>Specifies the defined action of allocating virtual memory in a process.</xs:documentation>
647
+ </xs:annotation>
648
+ </xs:enumeration>
649
+ <xs:enumeration value="Bind Address to Socket">
650
+ <xs:annotation>
651
+ <xs:documentation>Specifies the defined action of binding an address to a socket.</xs:documentation>
652
+ </xs:annotation>
653
+ </xs:enumeration>
654
+ <xs:enumeration value="Change Service Configuration">
655
+ <xs:annotation>
656
+ <xs:documentation>Specifies the defined action of changing the service configuration.</xs:documentation>
657
+ </xs:annotation>
658
+ </xs:enumeration>
659
+ <xs:enumeration value="Check for Remote Debugger">
660
+ <xs:annotation>
661
+ <xs:documentation>Specifies the defined action of checking for a remote debugger.</xs:documentation>
662
+ </xs:annotation>
663
+ </xs:enumeration>
664
+ <xs:enumeration value="Close Port">
665
+ <xs:annotation>
666
+ <xs:documentation>Specifies the defined action of closing a port.</xs:documentation>
667
+ </xs:annotation>
668
+ </xs:enumeration>
669
+ <xs:enumeration value="Close Registry Key">
670
+ <xs:annotation>
671
+ <xs:documentation>Specifies the defined action of closing a registry key.</xs:documentation>
672
+ </xs:annotation>
673
+ </xs:enumeration>
674
+ <xs:enumeration value="Close Socket">
675
+ <xs:annotation>
676
+ <xs:documentation>Specifies the defined action of closing a socket.</xs:documentation>
677
+ </xs:annotation>
678
+ </xs:enumeration>
679
+ <xs:enumeration value="Configure Service">
680
+ <xs:annotation>
681
+ <xs:documentation>Specifies the defined action of configuring a service.</xs:documentation>
682
+ </xs:annotation>
683
+ </xs:enumeration>
684
+ <xs:enumeration value="Connect to IP">
685
+ <xs:annotation>
686
+ <xs:documentation>Specifies the defined action of connecting to an IP address.</xs:documentation>
687
+ </xs:annotation>
688
+ </xs:enumeration>
689
+ <xs:enumeration value="Connect to Named Pipe">
690
+ <xs:annotation>
691
+ <xs:documentation>Specifies the defined action of connecting to a named pipe.</xs:documentation>
692
+ </xs:annotation>
693
+ </xs:enumeration>
694
+ <xs:enumeration value="Connect to Network Share">
695
+ <xs:annotation>
696
+ <xs:documentation>Specifies the defined action of connecting to a network share.</xs:documentation>
697
+ </xs:annotation>
698
+ </xs:enumeration>
699
+ <xs:enumeration value="Connect to Socket">
700
+ <xs:annotation>
701
+ <xs:documentation>Specifies the defined action of connecting to a socket.</xs:documentation>
702
+ </xs:annotation>
703
+ </xs:enumeration>
704
+ <xs:enumeration value="Connect to URL">
705
+ <xs:annotation>
706
+ <xs:documentation>Specifies the defined action of connecting to a URL.</xs:documentation>
707
+ </xs:annotation>
708
+ </xs:enumeration>
709
+ <xs:enumeration value="Control Driver">
710
+ <xs:annotation>
711
+ <xs:documentation>Specifies the defined action of controlling a driver.</xs:documentation>
712
+ </xs:annotation>
713
+ </xs:enumeration>
714
+ <xs:enumeration value="Control Service">
715
+ <xs:annotation>
716
+ <xs:documentation>Specifies the defined action of controlling a service.</xs:documentation>
717
+ </xs:annotation>
718
+ </xs:enumeration>
719
+ <xs:enumeration value="Copy File">
720
+ <xs:annotation>
721
+ <xs:documentation>Specifies the defined action of copying a file.</xs:documentation>
722
+ </xs:annotation>
723
+ </xs:enumeration>
724
+ <xs:enumeration value="Create Dialog Box">
725
+ <xs:annotation>
726
+ <xs:documentation>Specifies the defined action of creating a dialog box.</xs:documentation>
727
+ </xs:annotation>
728
+ </xs:enumeration>
729
+ <xs:enumeration value="Create Directory">
730
+ <xs:annotation>
731
+ <xs:documentation>Specifies the defined action of creating a new directory.</xs:documentation>
732
+ </xs:annotation>
733
+ </xs:enumeration>
734
+ <xs:enumeration value="Create Event">
735
+ <xs:annotation>
736
+ <xs:documentation>Specifies the defined action of creating an event.</xs:documentation>
737
+ </xs:annotation>
738
+ </xs:enumeration>
739
+ <xs:enumeration value="Create File">
740
+ <xs:annotation>
741
+ <xs:documentation>Specifies the defined action of creating a file.</xs:documentation>
742
+ </xs:annotation>
743
+ </xs:enumeration>
744
+ <xs:enumeration value="Create File Alternate Data Stream">
745
+ <xs:annotation>
746
+ <xs:documentation>Specifies the defined action of creating an alternate data stream in a file.</xs:documentation>
747
+ </xs:annotation>
748
+ </xs:enumeration>
749
+ <xs:enumeration value="Create File Mapping">
750
+ <xs:annotation>
751
+ <xs:documentation>Specifies the defined action of creating a new file mapping.</xs:documentation>
752
+ </xs:annotation>
753
+ </xs:enumeration>
754
+ <xs:enumeration value="Create File Symbolic Link">
755
+ <xs:annotation>
756
+ <xs:documentation>Specifies the defined action of creating a file symbolic link.</xs:documentation>
757
+ </xs:annotation>
758
+ </xs:enumeration>
759
+ <xs:enumeration value="Create Hidden File">
760
+ <xs:annotation>
761
+ <xs:documentation>Specifies the defined action of creating a hidden file.</xs:documentation>
762
+ </xs:annotation>
763
+ </xs:enumeration>
764
+ <xs:enumeration value="Create Mailslot">
765
+ <xs:annotation>
766
+ <xs:documentation>Specifies the defined action of creating a mailslot.</xs:documentation>
767
+ </xs:annotation>
768
+ </xs:enumeration>
769
+ <xs:enumeration value="Create Module">
770
+ <xs:annotation>
771
+ <xs:documentation>Specifies the defined action of creating a module.</xs:documentation>
772
+ </xs:annotation>
773
+ </xs:enumeration>
774
+ <xs:enumeration value="Create Mutex">
775
+ <xs:annotation>
776
+ <xs:documentation>Specifies the defined action of creating a mutex.</xs:documentation>
777
+ </xs:annotation>
778
+ </xs:enumeration>
779
+ <xs:enumeration value="Create Named Pipe">
780
+ <xs:annotation>
781
+ <xs:documentation>Specifies the defined action of creating a named pipe.</xs:documentation>
782
+ </xs:annotation>
783
+ </xs:enumeration>
784
+ <xs:enumeration value="Create Process">
785
+ <xs:annotation>
786
+ <xs:documentation>Specifies the defined action of creating a process.</xs:documentation>
787
+ </xs:annotation>
788
+ </xs:enumeration>
789
+ <xs:enumeration value="Create Process as User">
790
+ <xs:annotation>
791
+ <xs:documentation>Specifies the defined action of creating a process as user.</xs:documentation>
792
+ </xs:annotation>
793
+ </xs:enumeration>
794
+ <xs:enumeration value="Create Registry Key">
795
+ <xs:annotation>
796
+ <xs:documentation>Specifies the defined action of creating a registry key.</xs:documentation>
797
+ </xs:annotation>
798
+ </xs:enumeration>
799
+ <xs:enumeration value="Create Registry Key Value">
800
+ <xs:annotation>
801
+ <xs:documentation>Specifies the defined action of creating a registry key value.</xs:documentation>
802
+ </xs:annotation>
803
+ </xs:enumeration>
804
+ <xs:enumeration value="Create Remote Thread in Process">
805
+ <xs:annotation>
806
+ <xs:documentation>Specifies the defined action of creating a remote thread in a process.</xs:documentation>
807
+ </xs:annotation>
808
+ </xs:enumeration>
809
+ <xs:enumeration value="Create Service">
810
+ <xs:annotation>
811
+ <xs:documentation>Specifies the defined action of creating a service.</xs:documentation>
812
+ </xs:annotation>
813
+ </xs:enumeration>
814
+ <xs:enumeration value="Create Socket">
815
+ <xs:annotation>
816
+ <xs:documentation>Specifies the defined action of creating a socket.</xs:documentation>
817
+ </xs:annotation>
818
+ </xs:enumeration>
819
+ <xs:enumeration value="Create Symbolic Link">
820
+ <xs:annotation>
821
+ <xs:documentation>Specifies the defined action of creating a symbolic link.</xs:documentation>
822
+ </xs:annotation>
823
+ </xs:enumeration>
824
+ <xs:enumeration value="Create Thread">
825
+ <xs:annotation>
826
+ <xs:documentation>Specifies the defined action of creating a thread.</xs:documentation>
827
+ </xs:annotation>
828
+ </xs:enumeration>
829
+ <xs:enumeration value="Create Window">
830
+ <xs:annotation>
831
+ <xs:documentation>Specifies the defined action of creating a window.</xs:documentation>
832
+ </xs:annotation>
833
+ </xs:enumeration>
834
+ <xs:enumeration value="Delete Directory">
835
+ <xs:annotation>
836
+ <xs:documentation>Specifies the defined action of deleting a directory.</xs:documentation>
837
+ </xs:annotation>
838
+ </xs:enumeration>
839
+ <xs:enumeration value="Delete File">
840
+ <xs:annotation>
841
+ <xs:documentation>Specifies the defined action of deleting a file.</xs:documentation>
842
+ </xs:annotation>
843
+ </xs:enumeration>
844
+ <xs:enumeration value="Delete Named Pipe">
845
+ <xs:annotation>
846
+ <xs:documentation>Specifies the defined action of deleting a named pipe.</xs:documentation>
847
+ </xs:annotation>
848
+ </xs:enumeration>
849
+ <xs:enumeration value="Delete Network Share">
850
+ <xs:annotation>
851
+ <xs:documentation>Specifies the defined action of deleting a network share.</xs:documentation>
852
+ </xs:annotation>
853
+ </xs:enumeration>
854
+ <xs:enumeration value="Delete Registry Key">
855
+ <xs:annotation>
856
+ <xs:documentation>Specifies the defined action of deleting a registry key.</xs:documentation>
857
+ </xs:annotation>
858
+ </xs:enumeration>
859
+ <xs:enumeration value="Delete Registry Key Value">
860
+ <xs:annotation>
861
+ <xs:documentation>Specifies the defined action of deleting a registry key value.</xs:documentation>
862
+ </xs:annotation>
863
+ </xs:enumeration>
864
+ <xs:enumeration value="Delete Service">
865
+ <xs:annotation>
866
+ <xs:documentation>Specifies the defined action of deleting a service.</xs:documentation>
867
+ </xs:annotation>
868
+ </xs:enumeration>
869
+ <xs:enumeration value="Delete User">
870
+ <xs:annotation>
871
+ <xs:documentation>Specifies the defined action of deleting a user.</xs:documentation>
872
+ </xs:annotation>
873
+ </xs:enumeration>
874
+ <xs:enumeration value="Disconnect from Named Pipe">
875
+ <xs:annotation>
876
+ <xs:documentation>Specifies the defined action of disconnecting from a named pipe.</xs:documentation>
877
+ </xs:annotation>
878
+ </xs:enumeration>
879
+ <xs:enumeration value="Disconnect from Network Share">
880
+ <xs:annotation>
881
+ <xs:documentation>Specifies the defined action of disconnecting from a network share.</xs:documentation>
882
+ </xs:annotation>
883
+ </xs:enumeration>
884
+ <xs:enumeration value="Disconnect from Socket">
885
+ <xs:annotation>
886
+ <xs:documentation>Specifies the defined action of disconnecting from a socket.</xs:documentation>
887
+ </xs:annotation>
888
+ </xs:enumeration>
889
+ <xs:enumeration value="Download File">
890
+ <xs:annotation>
891
+ <xs:documentation>Specifies the defined action of downloading a file.</xs:documentation>
892
+ </xs:annotation>
893
+ </xs:enumeration>
894
+ <xs:enumeration value="Enumerate DLLs">
895
+ <xs:annotation>
896
+ <xs:documentation>Specifies the defined action of enumerating DLLs.</xs:documentation>
897
+ </xs:annotation>
898
+ </xs:enumeration>
899
+ <xs:enumeration value="Enumerate Network Shares">
900
+ <xs:annotation>
901
+ <xs:documentation>Specifies the defined action of enumerating network shares.</xs:documentation>
902
+ </xs:annotation>
903
+ </xs:enumeration>
904
+ <xs:enumeration value="Enumerate Protocols">
905
+ <xs:annotation>
906
+ <xs:documentation>Specifies the defined action of enumerating protocols.</xs:documentation>
907
+ </xs:annotation>
908
+ </xs:enumeration>
909
+ <xs:enumeration value="Enumerate Registry Key Subkeys">
910
+ <xs:annotation>
911
+ <xs:documentation>Specifies the defined action of enumerating registry key subkeys.</xs:documentation>
912
+ </xs:annotation>
913
+ </xs:enumeration>
914
+ <xs:enumeration value="Enumerate Registry Key Values">
915
+ <xs:annotation>
916
+ <xs:documentation>Specifies the defined action of enumerating registry key values.</xs:documentation>
917
+ </xs:annotation>
918
+ </xs:enumeration>
919
+ <xs:enumeration value="Enumerate Threads in Process">
920
+ <xs:annotation>
921
+ <xs:documentation>Specifies the defined action of enumerating threads in a process.</xs:documentation>
922
+ </xs:annotation>
923
+ </xs:enumeration>
924
+ <xs:enumeration value="Enumerate Processes">
925
+ <xs:annotation>
926
+ <xs:documentation>Specifies the defined action of enumerating processes.</xs:documentation>
927
+ </xs:annotation>
928
+ </xs:enumeration>
929
+ <xs:enumeration value="Enumerate Services">
930
+ <xs:annotation>
931
+ <xs:documentation>Specifies the defined action of enumerating services.</xs:documentation>
932
+ </xs:annotation>
933
+ </xs:enumeration>
934
+ <xs:enumeration value="Enumerate System Handles">
935
+ <xs:annotation>
936
+ <xs:documentation>Specifies the defined action of enumerating system handles.</xs:documentation>
937
+ </xs:annotation>
938
+ </xs:enumeration>
939
+ <xs:enumeration value="Enumerate Threads">
940
+ <xs:annotation>
941
+ <xs:documentation>Specifies the defined action of enumerating threads.</xs:documentation>
942
+ </xs:annotation>
943
+ </xs:enumeration>
944
+ <xs:enumeration value="Enumerate Users">
945
+ <xs:annotation>
946
+ <xs:documentation>Specifies the defined action of enumerating users.</xs:documentation>
947
+ </xs:annotation>
948
+ </xs:enumeration>
949
+ <xs:enumeration value="Enumerate Windows">
950
+ <xs:annotation>
951
+ <xs:documentation>Specifies the defined action of enumerating windows.</xs:documentation>
952
+ </xs:annotation>
953
+ </xs:enumeration>
954
+ <xs:enumeration value="Find File">
955
+ <xs:annotation>
956
+ <xs:documentation>Specifies the defined action of finding a file.</xs:documentation>
957
+ </xs:annotation>
958
+ </xs:enumeration>
959
+ <xs:enumeration value="Find Window">
960
+ <xs:annotation>
961
+ <xs:documentation>Specifies the defined action of finding a window.</xs:documentation>
962
+ </xs:annotation>
963
+ </xs:enumeration>
964
+ <xs:enumeration value="Flush Process Instruction Cache">
965
+ <xs:annotation>
966
+ <xs:documentation>Specifies the defined action of flushing the Process Instruction Cache.</xs:documentation>
967
+ </xs:annotation>
968
+ </xs:enumeration>
969
+ <xs:enumeration value="Free Library">
970
+ <xs:annotation>
971
+ <xs:documentation>Specifies the defined action of freeing a library.</xs:documentation>
972
+ </xs:annotation>
973
+ </xs:enumeration>
974
+ <xs:enumeration value="Free Process Virtual Memory">
975
+ <xs:annotation>
976
+ <xs:documentation>Specifies the defined action of freeing virtual memory from a process.</xs:documentation>
977
+ </xs:annotation>
978
+ </xs:enumeration>
979
+ <xs:enumeration value="Get Disk Free Space">
980
+ <xs:annotation>
981
+ <xs:documentation>Specifies the defined action of getting the amount of free space available on a disk.</xs:documentation>
982
+ </xs:annotation>
983
+ </xs:enumeration>
984
+ <xs:enumeration value="Get Disk Type">
985
+ <xs:annotation>
986
+ <xs:documentation>Specifies the defined action of getting the disk type.</xs:documentation>
987
+ </xs:annotation>
988
+ </xs:enumeration>
989
+ <xs:enumeration value="Get Elapsed System Up Time">
990
+ <xs:annotation>
991
+ <xs:documentation>Specifies the defined action of getting the elapsed system up-time.</xs:documentation>
992
+ </xs:annotation>
993
+ </xs:enumeration>
994
+ <xs:enumeration value="Get File Attributes">
995
+ <xs:annotation>
996
+ <xs:documentation>Specifies the defined action of getting file attributes.</xs:documentation>
997
+ </xs:annotation>
998
+ </xs:enumeration>
999
+ <xs:enumeration value="Get Function Address">
1000
+ <xs:annotation>
1001
+ <xs:documentation>Specifies the defined action of getting the function address.</xs:documentation>
1002
+ </xs:annotation>
1003
+ </xs:enumeration>
1004
+ <xs:enumeration value="Get System Global Flags">
1005
+ <xs:annotation>
1006
+ <xs:documentation>Specifies the defined action of getting system global flags.</xs:documentation>
1007
+ </xs:annotation>
1008
+ </xs:enumeration>
1009
+ <xs:enumeration value="Get Host By Address">
1010
+ <xs:annotation>
1011
+ <xs:documentation>Specifies the defined action of getting host by address.</xs:documentation>
1012
+ </xs:annotation>
1013
+ </xs:enumeration>
1014
+ <xs:enumeration value="Get Host By Name">
1015
+ <xs:annotation>
1016
+ <xs:documentation>Specifies the defined action of getting host by name.</xs:documentation>
1017
+ </xs:annotation>
1018
+ </xs:enumeration>
1019
+ <xs:enumeration value="Get Host Name">
1020
+ <xs:annotation>
1021
+ <xs:documentation>Specifies the defined action of getting the host name.</xs:documentation>
1022
+ </xs:annotation>
1023
+ </xs:enumeration>
1024
+ <xs:enumeration value="Get Library File Name">
1025
+ <xs:annotation>
1026
+ <xs:documentation>Specifies the defined action of getting the library file name.</xs:documentation>
1027
+ </xs:annotation>
1028
+ </xs:enumeration>
1029
+ <xs:enumeration value="Get Library Handle">
1030
+ <xs:annotation>
1031
+ <xs:documentation>Specifies the defined action of getting the library handle.</xs:documentation>
1032
+ </xs:annotation>
1033
+ </xs:enumeration>
1034
+ <xs:enumeration value="Get NetBIOS Name">
1035
+ <xs:annotation>
1036
+ <xs:documentation>Specifies the defined action of getting the NetBIOS name.</xs:documentation>
1037
+ </xs:annotation>
1038
+ </xs:enumeration>
1039
+ <xs:enumeration value="Get Process Current Directory">
1040
+ <xs:annotation>
1041
+ <xs:documentation>Specifies the defined action of getting the process's current directory.</xs:documentation>
1042
+ </xs:annotation>
1043
+ </xs:enumeration>
1044
+ <xs:enumeration value="Get Process Environment Variable">
1045
+ <xs:annotation>
1046
+ <xs:documentation>Specifies the defined action of getting the process environment variable.</xs:documentation>
1047
+ </xs:annotation>
1048
+ </xs:enumeration>
1049
+ <xs:enumeration value="Get Process Startup Information">
1050
+ <xs:annotation>
1051
+ <xs:documentation>Specifies the defined action of getting the process startup information.</xs:documentation>
1052
+ </xs:annotation>
1053
+ </xs:enumeration>
1054
+ <xs:enumeration value="Get Processes Snapshot">
1055
+ <xs:annotation>
1056
+ <xs:documentation>Specifies the defined action of getting the processes snapshot.</xs:documentation>
1057
+ </xs:annotation>
1058
+ </xs:enumeration>
1059
+ <xs:enumeration value="Get Registry Key Attributes">
1060
+ <xs:annotation>
1061
+ <xs:documentation>Specifies the defined action of getting the attributes of a registry key.</xs:documentation>
1062
+ </xs:annotation>
1063
+ </xs:enumeration>
1064
+ <xs:enumeration value="Get Service Status">
1065
+ <xs:annotation>
1066
+ <xs:documentation>Specifies the defined action of getting the service status.</xs:documentation>
1067
+ </xs:annotation>
1068
+ </xs:enumeration>
1069
+ <xs:enumeration value="Get System Global Flags">
1070
+ <xs:annotation>
1071
+ <xs:documentation>Specifies the defined action of getting the system global flags.</xs:documentation>
1072
+ </xs:annotation>
1073
+ </xs:enumeration>
1074
+ <xs:enumeration value="Get System Local Time">
1075
+ <xs:annotation>
1076
+ <xs:documentation>Specifies the defined action of getting the local time on a system.</xs:documentation>
1077
+ </xs:annotation>
1078
+ </xs:enumeration>
1079
+ <xs:enumeration value="Get System Host Name">
1080
+ <xs:annotation>
1081
+ <xs:documentation>Specifies the defined action of getting the system host name.</xs:documentation>
1082
+ </xs:annotation>
1083
+ </xs:enumeration>
1084
+ <xs:enumeration value="Get System NetBIOS Name">
1085
+ <xs:annotation>
1086
+ <xs:documentation>Specifies the defined action of getting the NetBIOS name of a system.</xs:documentation>
1087
+ </xs:annotation>
1088
+ </xs:enumeration>
1089
+ <xs:enumeration value="Get System Network Parameters">
1090
+ <xs:annotation>
1091
+ <xs:documentation>Specifies the defined action of getting the system network parameters.</xs:documentation>
1092
+ </xs:annotation>
1093
+ </xs:enumeration>
1094
+ <xs:enumeration value="Get System Time">
1095
+ <xs:annotation>
1096
+ <xs:documentation>Specifies the defined action of getting the system time.</xs:documentation>
1097
+ </xs:annotation>
1098
+ </xs:enumeration>
1099
+ <xs:enumeration value="Get Thread Context">
1100
+ <xs:annotation>
1101
+ <xs:documentation>Specifies the defined action of getting the thread context.</xs:documentation>
1102
+ </xs:annotation>
1103
+ </xs:enumeration>
1104
+ <xs:enumeration value="Get Thread Username">
1105
+ <xs:annotation>
1106
+ <xs:documentation>Specifies the defined action of getting the thread username.</xs:documentation>
1107
+ </xs:annotation>
1108
+ </xs:enumeration>
1109
+ <xs:enumeration value="Get User Attributes">
1110
+ <xs:annotation>
1111
+ <xs:documentation>Specifies the defined action of getting the attributes of a user.</xs:documentation>
1112
+ </xs:annotation>
1113
+ </xs:enumeration>
1114
+ <xs:enumeration value="Get Username">
1115
+ <xs:annotation>
1116
+ <xs:documentation>Specifies the defined action of getting a username.</xs:documentation>
1117
+ </xs:annotation>
1118
+ </xs:enumeration>
1119
+ <xs:enumeration value="Get Windows Directory">
1120
+ <xs:annotation>
1121
+ <xs:documentation>Specifies the defined action of getting a windows directory.</xs:documentation>
1122
+ </xs:annotation>
1123
+ </xs:enumeration>
1124
+ <xs:enumeration value="Get Windows System Directory">
1125
+ <xs:annotation>
1126
+ <xs:documentation>Specifies the defined action of getting a windows System directory.</xs:documentation>
1127
+ </xs:annotation>
1128
+ </xs:enumeration>
1129
+ <xs:enumeration value="Get Windows Temporary Files Directory">
1130
+ <xs:annotation>
1131
+ <xs:documentation>Specifies the defined action of getting the Windows Temporary Files Directory.</xs:documentation>
1132
+ </xs:annotation>
1133
+ </xs:enumeration>
1134
+ <xs:enumeration value="Hide Window">
1135
+ <xs:annotation>
1136
+ <xs:documentation>Specifies the defined action of hiding a window.</xs:documentation>
1137
+ </xs:annotation>
1138
+ </xs:enumeration>
1139
+ <xs:enumeration value="Impersonate Process">
1140
+ <xs:annotation>
1141
+ <xs:documentation>Specifies the defined action of impersonating a process.</xs:documentation>
1142
+ </xs:annotation>
1143
+ </xs:enumeration>
1144
+ <xs:enumeration value="Impersonate Thread">
1145
+ <xs:annotation>
1146
+ <xs:documentation>Specifies the defined action of impersonating a thread.</xs:documentation>
1147
+ </xs:annotation>
1148
+ </xs:enumeration>
1149
+ <xs:enumeration value="Inject Memory Page">
1150
+ <xs:annotation>
1151
+ <xs:documentation>Specifies the defined action of injecting a memory page into a process.</xs:documentation>
1152
+ </xs:annotation>
1153
+ </xs:enumeration>
1154
+ <xs:enumeration value="Kill Process">
1155
+ <xs:annotation>
1156
+ <xs:documentation>Specifies the defined action of killing a process.</xs:documentation>
1157
+ </xs:annotation>
1158
+ </xs:enumeration>
1159
+ <xs:enumeration value="Kill Thread">
1160
+ <xs:annotation>
1161
+ <xs:documentation>Specifies the defined action of killing a thread.</xs:documentation>
1162
+ </xs:annotation>
1163
+ </xs:enumeration>
1164
+ <xs:enumeration value="Kill Window">
1165
+ <xs:annotation>
1166
+ <xs:documentation>Specifies the defined action of killing a window.</xs:documentation>
1167
+ </xs:annotation>
1168
+ </xs:enumeration>
1169
+ <xs:enumeration value="Listen on Port">
1170
+ <xs:annotation>
1171
+ <xs:documentation>Specifies the defined action of listening on a specific port.</xs:documentation>
1172
+ </xs:annotation>
1173
+ </xs:enumeration>
1174
+ <xs:enumeration value="Listen on Socket">
1175
+ <xs:annotation>
1176
+ <xs:documentation>Specifies the defined action of listening on a socket.</xs:documentation>
1177
+ </xs:annotation>
1178
+ </xs:enumeration>
1179
+ <xs:enumeration value="Load and Call Driver">
1180
+ <xs:annotation>
1181
+ <xs:documentation>Specifies the defined action of loading and calling a driver.</xs:documentation>
1182
+ </xs:annotation>
1183
+ </xs:enumeration>
1184
+ <xs:enumeration value="Load Driver">
1185
+ <xs:annotation>
1186
+ <xs:documentation>Specifies the defined action of loading a driver.</xs:documentation>
1187
+ </xs:annotation>
1188
+ </xs:enumeration>
1189
+ <xs:enumeration value="Load Library">
1190
+ <xs:annotation>
1191
+ <xs:documentation>Specifies the defined action of loading a library.</xs:documentation>
1192
+ </xs:annotation>
1193
+ </xs:enumeration>
1194
+ <xs:enumeration value="Load Module">
1195
+ <xs:annotation>
1196
+ <xs:documentation>Specifies the defined action of loading a module.</xs:documentation>
1197
+ </xs:annotation>
1198
+ </xs:enumeration>
1199
+ <xs:enumeration value="Lock File">
1200
+ <xs:annotation>
1201
+ <xs:documentation>Specifies the defined action of locking a file.</xs:documentation>
1202
+ </xs:annotation>
1203
+ </xs:enumeration>
1204
+ <xs:enumeration value="Logon as User">
1205
+ <xs:annotation>
1206
+ <xs:documentation>Specifies the defined action of logging on as a user.</xs:documentation>
1207
+ </xs:annotation>
1208
+ </xs:enumeration>
1209
+ <xs:enumeration value="Map File">
1210
+ <xs:annotation>
1211
+ <xs:documentation>Specifies the defined action of mapping a file.</xs:documentation>
1212
+ </xs:annotation>
1213
+ </xs:enumeration>
1214
+ <xs:enumeration value="Map Library">
1215
+ <xs:annotation>
1216
+ <xs:documentation>Specifies the defined action of mapping a library.</xs:documentation>
1217
+ </xs:annotation>
1218
+ </xs:enumeration>
1219
+ <xs:enumeration value="Map View of File">
1220
+ <xs:annotation>
1221
+ <xs:documentation>Specifies the defined action of mapping a view of a file.</xs:documentation>
1222
+ </xs:annotation>
1223
+ </xs:enumeration>
1224
+ <xs:enumeration value="Modify File">
1225
+ <xs:annotation>
1226
+ <xs:documentation>Specifies the defined action of modifying a file.</xs:documentation>
1227
+ </xs:annotation>
1228
+ </xs:enumeration>
1229
+ <xs:enumeration value="Modify Named Pipe">
1230
+ <xs:annotation>
1231
+ <xs:documentation>Specifies the defined action of modifying a named pipe.</xs:documentation>
1232
+ </xs:annotation>
1233
+ </xs:enumeration>
1234
+ <xs:enumeration value="Modify Process">
1235
+ <xs:annotation>
1236
+ <xs:documentation>Specifies the defined action of modifying a process.</xs:documentation>
1237
+ </xs:annotation>
1238
+ </xs:enumeration>
1239
+ <xs:enumeration value="Modify Service">
1240
+ <xs:annotation>
1241
+ <xs:documentation>Specifies the defined action of modifying a service.</xs:documentation>
1242
+ </xs:annotation>
1243
+ </xs:enumeration>
1244
+ <xs:enumeration value="Modify Registry Key">
1245
+ <xs:annotation>
1246
+ <xs:documentation>Specifies the defined action of modifying a registry key.</xs:documentation>
1247
+ </xs:annotation>
1248
+ </xs:enumeration>
1249
+ <xs:enumeration value="Modify Registry Key Value">
1250
+ <xs:annotation>
1251
+ <xs:documentation>Specifies the defined action of modifying a registry key value.</xs:documentation>
1252
+ </xs:annotation>
1253
+ </xs:enumeration>
1254
+ <xs:enumeration value="Monitor Registry Key">
1255
+ <xs:annotation>
1256
+ <xs:documentation>Specifies the defined action of monitoring a registry key.</xs:documentation>
1257
+ </xs:annotation>
1258
+ </xs:enumeration>
1259
+ <xs:enumeration value="Move File">
1260
+ <xs:annotation>
1261
+ <xs:documentation>Specifies the defined action of moving a file.</xs:documentation>
1262
+ </xs:annotation>
1263
+ </xs:enumeration>
1264
+ <xs:enumeration value="Open File">
1265
+ <xs:annotation>
1266
+ <xs:documentation>Specifies the defined action of opening a file.</xs:documentation>
1267
+ </xs:annotation>
1268
+ </xs:enumeration>
1269
+ <xs:enumeration value="Open File Mapping">
1270
+ <xs:annotation>
1271
+ <xs:documentation>Specifies the defined action of opening a file mapping.</xs:documentation>
1272
+ </xs:annotation>
1273
+ </xs:enumeration>
1274
+ <xs:enumeration value="Open Mutex">
1275
+ <xs:annotation>
1276
+ <xs:documentation>Specifies the defined action of opening a mutex.</xs:documentation>
1277
+ </xs:annotation>
1278
+ </xs:enumeration>
1279
+ <xs:enumeration value="Open Port">
1280
+ <xs:annotation>
1281
+ <xs:documentation>Specifies the defined action of opening a port.</xs:documentation>
1282
+ </xs:annotation>
1283
+ </xs:enumeration>
1284
+ <xs:enumeration value="Open Process">
1285
+ <xs:annotation>
1286
+ <xs:documentation>Specifies the defined action of opening a process.</xs:documentation>
1287
+ </xs:annotation>
1288
+ </xs:enumeration>
1289
+ <xs:enumeration value="Open Registry Key">
1290
+ <xs:annotation>
1291
+ <xs:documentation>Specifies the defined action of opening a registry key.</xs:documentation>
1292
+ </xs:annotation>
1293
+ </xs:enumeration>
1294
+ <xs:enumeration value="Open Service">
1295
+ <xs:annotation>
1296
+ <xs:documentation>Specifies the defined action of opening a service.</xs:documentation>
1297
+ </xs:annotation>
1298
+ </xs:enumeration>
1299
+ <xs:enumeration value="Open Service Control Manager">
1300
+ <xs:annotation>
1301
+ <xs:documentation>Specifies the defined action of opening a service control manager.</xs:documentation>
1302
+ </xs:annotation>
1303
+ </xs:enumeration>
1304
+ <xs:enumeration value="Protect Virtual Memory">
1305
+ <xs:annotation>
1306
+ <xs:documentation>Specifies the defined action of protecting virtual memory.</xs:documentation>
1307
+ </xs:annotation>
1308
+ </xs:enumeration>
1309
+ <xs:enumeration value="Query Disk Attributes">
1310
+ <xs:annotation>
1311
+ <xs:documentation>Specifies the defined action of querying disk attributes.</xs:documentation>
1312
+ </xs:annotation>
1313
+ </xs:enumeration>
1314
+ <xs:enumeration value="Query DNS">
1315
+ <xs:annotation>
1316
+ <xs:documentation>Specifies the defined action of querying DNS.</xs:documentation>
1317
+ </xs:annotation>
1318
+ </xs:enumeration>
1319
+ <xs:enumeration value="Query Process Virtual Memory">
1320
+ <xs:annotation>
1321
+ <xs:documentation>Specifies the defined action of querying process virtual memory.</xs:documentation>
1322
+ </xs:annotation>
1323
+ </xs:enumeration>
1324
+ <xs:enumeration value="Queue APC in Thread">
1325
+ <xs:annotation>
1326
+ <xs:documentation>Specifies the defined action of querying the Asynchronized Procedure Call (APC) in the context of a thread.</xs:documentation>
1327
+ </xs:annotation>
1328
+ </xs:enumeration>
1329
+ <xs:enumeration value="Read File">
1330
+ <xs:annotation>
1331
+ <xs:documentation>Specifies the defined action of reading a file.</xs:documentation>
1332
+ </xs:annotation>
1333
+ </xs:enumeration>
1334
+ <xs:enumeration value="Read From Named Pipe">
1335
+ <xs:annotation>
1336
+ <xs:documentation>Specifies the defined action of reading from a named pipe.</xs:documentation>
1337
+ </xs:annotation>
1338
+ </xs:enumeration>
1339
+ <xs:enumeration value="Read From Process Memory">
1340
+ <xs:annotation>
1341
+ <xs:documentation>Specifies the defined action of reading from process memory.</xs:documentation>
1342
+ </xs:annotation>
1343
+ </xs:enumeration>
1344
+ <xs:enumeration value="Read Registry Key Value">
1345
+ <xs:annotation>
1346
+ <xs:documentation>Specifies the defined action of reading a registry key value.</xs:documentation>
1347
+ </xs:annotation>
1348
+ </xs:enumeration>
1349
+ <xs:enumeration value="Receive Data on Socket">
1350
+ <xs:annotation>
1351
+ <xs:documentation>Specifies the defined action of receiving data on a socket.</xs:documentation>
1352
+ </xs:annotation>
1353
+ </xs:enumeration>
1354
+ <xs:enumeration value="Release Mutex">
1355
+ <xs:annotation>
1356
+ <xs:documentation>Specifies the defined action of releasing a mutex.</xs:documentation>
1357
+ </xs:annotation>
1358
+ </xs:enumeration>
1359
+ <xs:enumeration value="Rename File">
1360
+ <xs:annotation>
1361
+ <xs:documentation>Specifies the defined action of renaming a file.</xs:documentation>
1362
+ </xs:annotation>
1363
+ </xs:enumeration>
1364
+ <xs:enumeration value="Revert Thread to Self">
1365
+ <xs:annotation>
1366
+ <xs:documentation>Specifies the defined action of reverting a thread to its self.</xs:documentation>
1367
+ </xs:annotation>
1368
+ </xs:enumeration>
1369
+ <xs:enumeration value="Send Control Code to File">
1370
+ <xs:annotation>
1371
+ <xs:documentation>Specifies the defined action of sending a control code to a file.</xs:documentation>
1372
+ </xs:annotation>
1373
+ </xs:enumeration>
1374
+ <xs:enumeration value="Send Control Code to Pipe">
1375
+ <xs:annotation>
1376
+ <xs:documentation>Specifies the defined action of sending a control code to a pipe.</xs:documentation>
1377
+ </xs:annotation>
1378
+ </xs:enumeration>
1379
+ <xs:enumeration value="Send Control Code to Service">
1380
+ <xs:annotation>
1381
+ <xs:documentation>Specifies the defined action of sending control code to a service.</xs:documentation>
1382
+ </xs:annotation>
1383
+ </xs:enumeration>
1384
+ <xs:enumeration value="Send Data on Socket">
1385
+ <xs:annotation>
1386
+ <xs:documentation>Specifies the defined action of sending data on a socket.</xs:documentation>
1387
+ </xs:annotation>
1388
+ </xs:enumeration>
1389
+ <xs:enumeration value="Send Data to Address on Socket">
1390
+ <xs:annotation>
1391
+ <xs:documentation>Specifies the defined action of sending data to the address on a socket.</xs:documentation>
1392
+ </xs:annotation>
1393
+ </xs:enumeration>
1394
+ <xs:enumeration value="Send DNS Query">
1395
+ <xs:annotation>
1396
+ <xs:documentation>Specifies the defined action of sending a DNS query.</xs:documentation>
1397
+ </xs:annotation>
1398
+ </xs:enumeration>
1399
+ <xs:enumeration value="Send Email Message">
1400
+ <xs:annotation>
1401
+ <xs:documentation>Specifies the defined action of sending an email message.</xs:documentation>
1402
+ </xs:annotation>
1403
+ </xs:enumeration>
1404
+ <xs:enumeration value="Send ICMP Request">
1405
+ <xs:annotation>
1406
+ <xs:documentation>Specifies the defined action of sending an ICMP request.</xs:documentation>
1407
+ </xs:annotation>
1408
+ </xs:enumeration>
1409
+ <xs:enumeration value="Send Reverse DNS Query">
1410
+ <xs:annotation>
1411
+ <xs:documentation>Specifies the defined action of sending a reverse DNS query.</xs:documentation>
1412
+ </xs:annotation>
1413
+ </xs:enumeration>
1414
+ <xs:enumeration value="Set File Attributes">
1415
+ <xs:annotation>
1416
+ <xs:documentation>Specifies the defined action of setting file attributes.</xs:documentation>
1417
+ </xs:annotation>
1418
+ </xs:enumeration>
1419
+ <xs:enumeration value="Set NetBIOS Name">
1420
+ <xs:annotation>
1421
+ <xs:documentation>Specifies the defined action of setting the NetBIOS name.</xs:documentation>
1422
+ </xs:annotation>
1423
+ </xs:enumeration>
1424
+ <xs:enumeration value="Set Process Current Directory">
1425
+ <xs:annotation>
1426
+ <xs:documentation>Specifies the defined action of setting the process current directory.</xs:documentation>
1427
+ </xs:annotation>
1428
+ </xs:enumeration>
1429
+ <xs:enumeration value="Set Process Environment Variable">
1430
+ <xs:annotation>
1431
+ <xs:documentation>Specifies the defined action of setting the process environment variable.</xs:documentation>
1432
+ </xs:annotation>
1433
+ </xs:enumeration>
1434
+ <xs:enumeration value="Set System Global Flags">
1435
+ <xs:annotation>
1436
+ <xs:documentation>Specifies the defined action of setting system global flags.</xs:documentation>
1437
+ </xs:annotation>
1438
+ </xs:enumeration>
1439
+ <xs:enumeration value="Set System Host Name">
1440
+ <xs:annotation>
1441
+ <xs:documentation>Specifies the defined action of setting the system host name.</xs:documentation>
1442
+ </xs:annotation>
1443
+ </xs:enumeration>
1444
+ <xs:enumeration value="Set System Time">
1445
+ <xs:annotation>
1446
+ <xs:documentation>Specifies the defined action of setting the system time.</xs:documentation>
1447
+ </xs:annotation>
1448
+ </xs:enumeration>
1449
+ <xs:enumeration value="Set Thread Context">
1450
+ <xs:annotation>
1451
+ <xs:documentation>Specifies the defined action of setting the thread context.</xs:documentation>
1452
+ </xs:annotation>
1453
+ </xs:enumeration>
1454
+ <xs:enumeration value="Show Window">
1455
+ <xs:annotation>
1456
+ <xs:documentation>Specifies the defined action of showing a window.</xs:documentation>
1457
+ </xs:annotation>
1458
+ </xs:enumeration>
1459
+ <xs:enumeration value="Shutdown System">
1460
+ <xs:annotation>
1461
+ <xs:documentation>Specifies the defined action of shutting down a system.</xs:documentation>
1462
+ </xs:annotation>
1463
+ </xs:enumeration>
1464
+ <xs:enumeration value="Sleep Process">
1465
+ <xs:annotation>
1466
+ <xs:documentation>Specifies the defined action of sleeping a process.</xs:documentation>
1467
+ </xs:annotation>
1468
+ </xs:enumeration>
1469
+ <xs:enumeration value="Sleep System">
1470
+ <xs:annotation>
1471
+ <xs:documentation>Specifies the defined action of sleeping a system.</xs:documentation>
1472
+ </xs:annotation>
1473
+ </xs:enumeration>
1474
+ <xs:enumeration value="Start Service">
1475
+ <xs:annotation>
1476
+ <xs:documentation>Specifies the defined action of starting a service.</xs:documentation>
1477
+ </xs:annotation>
1478
+ </xs:enumeration>
1479
+ <xs:enumeration value="Unload Driver">
1480
+ <xs:annotation>
1481
+ <xs:documentation>Specifies the defined action of unloading a driver.</xs:documentation>
1482
+ </xs:annotation>
1483
+ </xs:enumeration>
1484
+ <xs:enumeration value="Unlock File">
1485
+ <xs:annotation>
1486
+ <xs:documentation>Specifies the defined action of unlocking a file.</xs:documentation>
1487
+ </xs:annotation>
1488
+ </xs:enumeration>
1489
+ <xs:enumeration value="Unmap File">
1490
+ <xs:annotation>
1491
+ <xs:documentation>Specifies the defined action of unmapping a file.</xs:documentation>
1492
+ </xs:annotation>
1493
+ </xs:enumeration>
1494
+ <xs:enumeration value="Unload Module">
1495
+ <xs:annotation>
1496
+ <xs:documentation>Specifies the defined action of unloading a module.</xs:documentation>
1497
+ </xs:annotation>
1498
+ </xs:enumeration>
1499
+ <xs:enumeration value="Upload File">
1500
+ <xs:annotation>
1501
+ <xs:documentation>Specifies the defined action of uploading a file.</xs:documentation>
1502
+ </xs:annotation>
1503
+ </xs:enumeration>
1504
+ <xs:enumeration value="Write to File">
1505
+ <xs:annotation>
1506
+ <xs:documentation>Specifies the defined action of writing to a file.</xs:documentation>
1507
+ </xs:annotation>
1508
+ </xs:enumeration>
1509
+ <xs:enumeration value="Write to Process Virtual Memory">
1510
+ <xs:annotation>
1511
+ <xs:documentation>Specifies the defined action of writing to process virtual memory.</xs:documentation>
1512
+ </xs:annotation>
1513
+ </xs:enumeration>
1514
+ </xs:restriction>
1515
+ </xs:simpleType>
1516
+ <xs:complexType name="ActionArgumentNameVocab-1.0">
1517
+ <xs:annotation>
1518
+ <xs:documentation>The ActionArgumentNameVocab is the default CybOX vocabulary for Action Argument Names, captured via the ActionArgumentType/Argument_Name element in CybOX Core.</xs:documentation>
1519
+ </xs:annotation>
1520
+ <xs:simpleContent>
1521
+ <xs:restriction base="cyboxCommon:ControlledVocabularyStringType">
1522
+ <xs:simpleType>
1523
+ <xs:union memberTypes="cyboxVocabs:ActionArgumentNameEnum-1.0"/>
1524
+ </xs:simpleType>
1525
+ <xs:attribute name="vocab_name" type="xs:string" use="optional" fixed="CybOX Default Action Argument Names"/>
1526
+ <xs:attribute name="vocab_reference" type="xs:anyURI" use="optional" fixed="http://cybox.mitre.org/XMLSchema/default_vocabularies/2.0/cybox_default_vocabularies.xsd#DefinedArgumentNameVocab-1.0"/>
1527
+ </xs:restriction>
1528
+ </xs:simpleContent>
1529
+ </xs:complexType>
1530
+ <xs:simpleType name="ActionArgumentNameEnum-1.0">
1531
+ <xs:annotation>
1532
+ <xs:documentation>The ActionArgumentNameEnum type is an enumeration of defined argument names.</xs:documentation>
1533
+ </xs:annotation>
1534
+ <xs:restriction base="xs:string">
1535
+ <xs:enumeration value="API">
1536
+ <xs:annotation>
1537
+ <xs:documentation>Specifies an argument called API.</xs:documentation>
1538
+ </xs:annotation>
1539
+ </xs:enumeration>
1540
+ <xs:enumeration value="Creation Flags">
1541
+ <xs:annotation>
1542
+ <xs:documentation>Specifies an argument called Creation Flags.</xs:documentation>
1543
+ </xs:annotation>
1544
+ </xs:enumeration>
1545
+ <xs:enumeration value="Access Mode">
1546
+ <xs:annotation>
1547
+ <xs:documentation>Specifies an argument called Access Mode.</xs:documentation>
1548
+ </xs:annotation>
1549
+ </xs:enumeration>
1550
+ <xs:enumeration value="Share Mode">
1551
+ <xs:annotation>
1552
+ <xs:documentation>Specifies an argument called Share Mode.</xs:documentation>
1553
+ </xs:annotation>
1554
+ </xs:enumeration>
1555
+ <xs:enumeration value="Callback Address">
1556
+ <xs:annotation>
1557
+ <xs:documentation>Specifies an argument called Callback Address.</xs:documentation>
1558
+ </xs:annotation>
1559
+ </xs:enumeration>
1560
+ <xs:enumeration value="Source Address">
1561
+ <xs:annotation>
1562
+ <xs:documentation>Specifies an argument called Source Address.</xs:documentation>
1563
+ </xs:annotation>
1564
+ </xs:enumeration>
1565
+ <xs:enumeration value="Destination Address">
1566
+ <xs:annotation>
1567
+ <xs:documentation>Specifies an argument called Destination Address.</xs:documentation>
1568
+ </xs:annotation>
1569
+ </xs:enumeration>
1570
+ <xs:enumeration value="Starting Address">
1571
+ <xs:annotation>
1572
+ <xs:documentation>Specifies an argument called Starting Address.</xs:documentation>
1573
+ </xs:annotation>
1574
+ </xs:enumeration>
1575
+ <xs:enumeration value="Size (bytes)">
1576
+ <xs:annotation>
1577
+ <xs:documentation>Specifies an argument called Size (bytes).</xs:documentation>
1578
+ </xs:annotation>
1579
+ </xs:enumeration>
1580
+ <xs:enumeration value="Control Parameter">
1581
+ <xs:annotation>
1582
+ <xs:documentation>Specifies an argument called Control Parameter.</xs:documentation>
1583
+ </xs:annotation>
1584
+ </xs:enumeration>
1585
+ <xs:enumeration value="Host Name">
1586
+ <xs:annotation>
1587
+ <xs:documentation>Specifies an argument called Host Name.</xs:documentation>
1588
+ </xs:annotation>
1589
+ </xs:enumeration>
1590
+ <xs:enumeration value="Function Name">
1591
+ <xs:annotation>
1592
+ <xs:documentation>Specifies an argument called Function Name.</xs:documentation>
1593
+ </xs:annotation>
1594
+ </xs:enumeration>
1595
+ <xs:enumeration value="Function Address">
1596
+ <xs:annotation>
1597
+ <xs:documentation>Specifies an argument called Function Address.</xs:documentation>
1598
+ </xs:annotation>
1599
+ </xs:enumeration>
1600
+ <xs:enumeration value="Options">
1601
+ <xs:annotation>
1602
+ <xs:documentation>Specifies an argument called Options.</xs:documentation>
1603
+ </xs:annotation>
1604
+ </xs:enumeration>
1605
+ <xs:enumeration value="Transfer Flags">
1606
+ <xs:annotation>
1607
+ <xs:documentation>Specifies an argument called Transfer Flags.</xs:documentation>
1608
+ </xs:annotation>
1609
+ </xs:enumeration>
1610
+ <xs:enumeration value="Control Code">
1611
+ <xs:annotation>
1612
+ <xs:documentation>Specifies an argument called Control Code.</xs:documentation>
1613
+ </xs:annotation>
1614
+ </xs:enumeration>
1615
+ <xs:enumeration value="APC Mode">
1616
+ <xs:annotation>
1617
+ <xs:documentation>Specifies an argument called APC Mode.</xs:documentation>
1618
+ </xs:annotation>
1619
+ </xs:enumeration>
1620
+ <xs:enumeration value="APC Address">
1621
+ <xs:annotation>
1622
+ <xs:documentation>Specifies an argument called APC Address.</xs:documentation>
1623
+ </xs:annotation>
1624
+ </xs:enumeration>
1625
+ <xs:enumeration value="Base Address">
1626
+ <xs:annotation>
1627
+ <xs:documentation>Specifies an argument called Base Address.</xs:documentation>
1628
+ </xs:annotation>
1629
+ </xs:enumeration>
1630
+ <xs:enumeration value="Protection">
1631
+ <xs:annotation>
1632
+ <xs:documentation>Specifies an argument called Protection.</xs:documentation>
1633
+ </xs:annotation>
1634
+ </xs:enumeration>
1635
+ <xs:enumeration value="Target PID">
1636
+ <xs:annotation>
1637
+ <xs:documentation>Specifies an argument called Target PID.</xs:documentation>
1638
+ </xs:annotation>
1639
+ </xs:enumeration>
1640
+ <xs:enumeration value="Mapping Offset">
1641
+ <xs:annotation>
1642
+ <xs:documentation>Specifies an argument called Mapping Offset.</xs:documentation>
1643
+ </xs:annotation>
1644
+ </xs:enumeration>
1645
+ <xs:enumeration value="File Information Class">
1646
+ <xs:annotation>
1647
+ <xs:documentation>Specifies an argument called File Information Class.</xs:documentation>
1648
+ </xs:annotation>
1649
+ </xs:enumeration>
1650
+ <xs:enumeration value="Function Ordinal">
1651
+ <xs:annotation>
1652
+ <xs:documentation>Specifies an argument called Function Ordinal.</xs:documentation>
1653
+ </xs:annotation>
1654
+ </xs:enumeration>
1655
+ <xs:enumeration value="Function Name">
1656
+ <xs:annotation>
1657
+ <xs:documentation>Specifies an argument called Function Name.</xs:documentation>
1658
+ </xs:annotation>
1659
+ </xs:enumeration>
1660
+ <xs:enumeration value="Hook Type">
1661
+ <xs:annotation>
1662
+ <xs:documentation>Specifies an argument called Hook Type.</xs:documentation>
1663
+ </xs:annotation>
1664
+ </xs:enumeration>
1665
+ <xs:enumeration value="Request Size">
1666
+ <xs:annotation>
1667
+ <xs:documentation>Specifies an argument called Request Size.</xs:documentation>
1668
+ </xs:annotation>
1669
+ </xs:enumeration>
1670
+ <xs:enumeration value="Service Type">
1671
+ <xs:annotation>
1672
+ <xs:documentation>Specifies an argument called Service Type.</xs:documentation>
1673
+ </xs:annotation>
1674
+ </xs:enumeration>
1675
+ <xs:enumeration value="Service State">
1676
+ <xs:annotation>
1677
+ <xs:documentation>Specifies an argument called Service State.</xs:documentation>
1678
+ </xs:annotation>
1679
+ </xs:enumeration>
1680
+ <xs:enumeration value="Group Name">
1681
+ <xs:annotation>
1682
+ <xs:documentation>Specifies an argument called Group Name.</xs:documentation>
1683
+ </xs:annotation>
1684
+ </xs:enumeration>
1685
+ <xs:enumeration value="Hostname">
1686
+ <xs:annotation>
1687
+ <xs:documentation>Specifies an argument called Hostname.</xs:documentation>
1688
+ </xs:annotation>
1689
+ </xs:enumeration>
1690
+ <xs:enumeration value="Shutdown Flag">
1691
+ <xs:annotation>
1692
+ <xs:documentation>Specifies an argument called Shutdown Flag.</xs:documentation>
1693
+ </xs:annotation>
1694
+ </xs:enumeration>
1695
+ <xs:enumeration value="Sleep Time (ms)">
1696
+ <xs:annotation>
1697
+ <xs:documentation>Specifies an argument called Sleep Time (ms).</xs:documentation>
1698
+ </xs:annotation>
1699
+ </xs:enumeration>
1700
+ <xs:enumeration value="Code Address">
1701
+ <xs:annotation>
1702
+ <xs:documentation>Specifies an argument called Code Address.</xs:documentation>
1703
+ </xs:annotation>
1704
+ </xs:enumeration>
1705
+ <xs:enumeration value="Parameter Address">
1706
+ <xs:annotation>
1707
+ <xs:documentation>Specifies an argument called Parameter Address.</xs:documentation>
1708
+ </xs:annotation>
1709
+ </xs:enumeration>
1710
+ <xs:enumeration value="Server">
1711
+ <xs:annotation>
1712
+ <xs:documentation>Specifies an argument called Server.</xs:documentation>
1713
+ </xs:annotation>
1714
+ </xs:enumeration>
1715
+ </xs:restriction>
1716
+ </xs:simpleType>
1717
+ <xs:complexType name="ActionObjectAssociationTypeVocab-1.0">
1718
+ <xs:annotation>
1719
+ <xs:documentation>The ActionObjectAssocationVocab is the default CybOX vocabulary for Action-Object association types, captured via the AssociatedObjectType/Association_Type element in CybOX Core.</xs:documentation>
1720
+ </xs:annotation>
1721
+ <xs:simpleContent>
1722
+ <xs:restriction base="cyboxCommon:ControlledVocabularyStringType">
1723
+ <xs:simpleType>
1724
+ <xs:union memberTypes="cyboxVocabs:ActionObjectAssociationTypeEnum-1.0"/>
1725
+ </xs:simpleType>
1726
+ <xs:attribute name="vocab_name" type="xs:string" use="optional" fixed="CybOX Default Action-Object Association Names"/>
1727
+ <xs:attribute name="vocab_reference" type="xs:anyURI" use="optional" fixed="http://cybox.mitre.org/XMLSchema/default_vocabularies/2.0/cybox_default_vocabularies.xsd#ActionObjectAssociationTypeVocab-1.0"/>
1728
+ </xs:restriction>
1729
+ </xs:simpleContent>
1730
+ </xs:complexType>
1731
+ <xs:simpleType name="ActionObjectAssociationTypeEnum-1.0">
1732
+ <xs:annotation>
1733
+ <xs:documentation>ActionObjectAssociationTypeEnum is a (non-exhaustive) enumeration of types of action-object associations.</xs:documentation>
1734
+ </xs:annotation>
1735
+ <xs:restriction base="xs:string">
1736
+ <xs:enumeration value="Initiating">
1737
+ <xs:annotation>
1738
+ <xs:documentation>Specifies that the associated object initiated the action.</xs:documentation>
1739
+ </xs:annotation>
1740
+ </xs:enumeration>
1741
+ <xs:enumeration value="Affected">
1742
+ <xs:annotation>
1743
+ <xs:documentation>Specifies that the associated object was affected by the action.</xs:documentation>
1744
+ </xs:annotation>
1745
+ </xs:enumeration>
1746
+ <xs:enumeration value="Utilized">
1747
+ <xs:annotation>
1748
+ <xs:documentation>Specifies that the associated object was utilized by the action.</xs:documentation>
1749
+ </xs:annotation>
1750
+ </xs:enumeration>
1751
+ <xs:enumeration value="Returned">
1752
+ <xs:annotation>
1753
+ <xs:documentation>Specifies that the associated object was the result of the action.</xs:documentation>
1754
+ </xs:annotation>
1755
+ </xs:enumeration>
1756
+ </xs:restriction>
1757
+ </xs:simpleType>
1758
+ <xs:complexType name="ActionRelationshipTypeVocab-1.0">
1759
+ <xs:annotation>
1760
+ <xs:documentation>The ActionObjectAssocationVocab is the default CybOX vocabulary for Action-Action relationships, captured via the ActionRelationshipType/Type element in the CybOX Core.</xs:documentation>
1761
+ </xs:annotation>
1762
+ <xs:simpleContent>
1763
+ <xs:restriction base="cyboxCommon:ControlledVocabularyStringType">
1764
+ <xs:simpleType>
1765
+ <xs:union memberTypes="cyboxVocabs:ActionRelationshipTypeEnum-1.0"/>
1766
+ </xs:simpleType>
1767
+ <xs:attribute name="vocab_name" type="xs:string" use="optional" fixed="CybOX Default Action-Action Relationships"/>
1768
+ <xs:attribute name="vocab_reference" type="xs:anyURI" use="optional" fixed="http://cybox.mitre.org/XMLSchema/default_vocabularies/2.0/cybox_default_vocabularies.xsd#ActionRelationshipTypeVocab-1.0"/>
1769
+ </xs:restriction>
1770
+ </xs:simpleContent>
1771
+ </xs:complexType>
1772
+ <xs:simpleType name="ActionRelationshipTypeEnum-1.0">
1773
+ <xs:annotation>
1774
+ <xs:documentation>The ActionRelationshipTypeEnum is an enumeration of types of relationships between actions.</xs:documentation>
1775
+ </xs:annotation>
1776
+ <xs:restriction base="xs:string">
1777
+ <xs:enumeration value="Preceded_By">
1778
+ <xs:annotation>
1779
+ <xs:documentation>Specifies that this action is preceded by the related action.</xs:documentation>
1780
+ </xs:annotation>
1781
+ </xs:enumeration>
1782
+ <xs:enumeration value="Followed_By">
1783
+ <xs:annotation>
1784
+ <xs:documentation>Specifies that this action is followed by the related action.</xs:documentation>
1785
+ </xs:annotation>
1786
+ </xs:enumeration>
1787
+ <xs:enumeration value="Equivalent_To">
1788
+ <xs:annotation>
1789
+ <xs:documentation>Specifies that this entity (e.g. Action) is equivalent to the associated entity.</xs:documentation>
1790
+ </xs:annotation>
1791
+ </xs:enumeration>
1792
+ <xs:enumeration value="Related_To">
1793
+ <xs:annotation>
1794
+ <xs:documentation>Specifies that this action is simply related to the related action in some way.</xs:documentation>
1795
+ </xs:annotation>
1796
+ </xs:enumeration>
1797
+ <xs:enumeration value="Dependent_On">
1798
+ <xs:annotation>
1799
+ <xs:documentation>Specifies that this action is dependent on the related action.</xs:documentation>
1800
+ </xs:annotation>
1801
+ </xs:enumeration>
1802
+ <xs:enumeration value="Initiated_By">
1803
+ <xs:annotation>
1804
+ <xs:documentation>Specifies that this action was initiated by the related action.</xs:documentation>
1805
+ </xs:annotation>
1806
+ </xs:enumeration>
1807
+ <xs:enumeration value="Initiated">
1808
+ <xs:annotation>
1809
+ <xs:documentation>Specifies that this action initiated the related action.</xs:documentation>
1810
+ </xs:annotation>
1811
+ </xs:enumeration>
1812
+ </xs:restriction>
1813
+ </xs:simpleType>
1814
+ <xs:complexType name="EventTypeVocab-1.0">
1815
+ <xs:annotation>
1816
+ <xs:documentation>The EventTypeVocab is the default CybOX vocabulary for Event types, captured via the EventType/Type element in the CybOX Core.</xs:documentation>
1817
+ </xs:annotation>
1818
+ <xs:simpleContent>
1819
+ <xs:restriction base="cyboxCommon:ControlledVocabularyStringType">
1820
+ <xs:simpleType>
1821
+ <xs:union memberTypes="cyboxVocabs:EventTypeEnum-1.0"/>
1822
+ </xs:simpleType>
1823
+ <xs:attribute name="vocab_name" type="xs:string" use="optional" fixed="CybOX Default Event Types"/>
1824
+ <xs:attribute name="vocab_reference" type="xs:anyURI" use="optional" fixed="http://cybox.mitre.org/XMLSchema/default_vocabularies/2.0/cybox_default_vocabularies.xsd#EventTypeVocab-1.0"/>
1825
+ </xs:restriction>
1826
+ </xs:simpleContent>
1827
+ </xs:complexType>
1828
+ <xs:simpleType name="EventTypeEnum-1.0">
1829
+ <xs:annotation>
1830
+ <xs:documentation>EventTypeEnum is a (non-exhaustive) enumeration of cyber observable event types.</xs:documentation>
1831
+ </xs:annotation>
1832
+ <xs:restriction base="xs:string">
1833
+ <xs:enumeration value="File Ops (CRUD)">
1834
+ <xs:annotation>
1835
+ <xs:documentation>Specifies the class of events dealing with file operations.</xs:documentation>
1836
+ </xs:annotation>
1837
+ </xs:enumeration>
1838
+ <xs:enumeration value="Registry Ops">
1839
+ <xs:annotation>
1840
+ <xs:documentation>Specifies the class of events dealing with registry operations.</xs:documentation>
1841
+ </xs:annotation>
1842
+ </xs:enumeration>
1843
+ <xs:enumeration value="Memory Ops">
1844
+ <xs:annotation>
1845
+ <xs:documentation>Specifies the class of events dealing with memory operations.</xs:documentation>
1846
+ </xs:annotation>
1847
+ </xs:enumeration>
1848
+ <xs:enumeration value="Process Mgt">
1849
+ <xs:annotation>
1850
+ <xs:documentation>Specifies the class of events dealing with process management.</xs:documentation>
1851
+ </xs:annotation>
1852
+ </xs:enumeration>
1853
+ <xs:enumeration value="Thread Mgt">
1854
+ <xs:annotation>
1855
+ <xs:documentation>Specifies the class of events dealing with thread management.</xs:documentation>
1856
+ </xs:annotation>
1857
+ </xs:enumeration>
1858
+ <xs:enumeration value="Service Mgt">
1859
+ <xs:annotation>
1860
+ <xs:documentation>Specifies the class of events dealing with service management.</xs:documentation>
1861
+ </xs:annotation>
1862
+ </xs:enumeration>
1863
+ <xs:enumeration value="Session Mgt">
1864
+ <xs:annotation>
1865
+ <xs:documentation>Specifies the class of events dealing with session management.</xs:documentation>
1866
+ </xs:annotation>
1867
+ </xs:enumeration>
1868
+ <xs:enumeration value="API Calls">
1869
+ <xs:annotation>
1870
+ <xs:documentation>Specifies the class of events dealing with API calls.</xs:documentation>
1871
+ </xs:annotation>
1872
+ </xs:enumeration>
1873
+ <xs:enumeration value="Port Scan">
1874
+ <xs:annotation>
1875
+ <xs:documentation>Specifies the class of events dealing with port scanning.</xs:documentation>
1876
+ </xs:annotation>
1877
+ </xs:enumeration>
1878
+ <xs:enumeration value="IP Ops">
1879
+ <xs:annotation>
1880
+ <xs:documentation>Specifies the class of events dealing with IP Operations.</xs:documentation>
1881
+ </xs:annotation>
1882
+ </xs:enumeration>
1883
+ <xs:enumeration value="DNS Lookup Ops">
1884
+ <xs:annotation>
1885
+ <xs:documentation>Specifies the class of events dealing with DNS Lookup operations.</xs:documentation>
1886
+ </xs:annotation>
1887
+ </xs:enumeration>
1888
+ <xs:enumeration value="Socket Ops">
1889
+ <xs:annotation>
1890
+ <xs:documentation>Specifies the class of events dealing with thread management.</xs:documentation>
1891
+ </xs:annotation>
1892
+ </xs:enumeration>
1893
+ <xs:enumeration value="IPC">
1894
+ <xs:annotation>
1895
+ <xs:documentation>Specifies the class of events dealing with thread management.</xs:documentation>
1896
+ </xs:annotation>
1897
+ </xs:enumeration>
1898
+ <xs:enumeration value="Configuration Management">
1899
+ <xs:annotation>
1900
+ <xs:documentation>Specifies the class of events dealing with configuration management.</xs:documentation>
1901
+ </xs:annotation>
1902
+ </xs:enumeration>
1903
+ <xs:enumeration value="User/Password Mgt">
1904
+ <xs:annotation>
1905
+ <xs:documentation>Specifies the class of events dealing with user/password management.</xs:documentation>
1906
+ </xs:annotation>
1907
+ </xs:enumeration>
1908
+ <xs:enumeration value="Account Ops (App Layer)">
1909
+ <xs:annotation>
1910
+ <xs:documentation>Specifies the class of events dealing with account operations at the application layer.</xs:documentation>
1911
+ </xs:annotation>
1912
+ </xs:enumeration>
1913
+ <xs:enumeration value="HTTP Traffic">
1914
+ <xs:annotation>
1915
+ <xs:documentation>Specifies the class of events dealing with HTTP traffic.</xs:documentation>
1916
+ </xs:annotation>
1917
+ </xs:enumeration>
1918
+ <xs:enumeration value="App Layer Traffic">
1919
+ <xs:annotation>
1920
+ <xs:documentation>Specifies the class of events dealing with Application Layer traffic.</xs:documentation>
1921
+ </xs:annotation>
1922
+ </xs:enumeration>
1923
+ <xs:enumeration value="Packet Traffic">
1924
+ <xs:annotation>
1925
+ <xs:documentation>Specifies the class of events dealing with packet traffic.</xs:documentation>
1926
+ </xs:annotation>
1927
+ </xs:enumeration>
1928
+ <xs:enumeration value="Data Flow">
1929
+ <xs:annotation>
1930
+ <xs:documentation>Specifies the class of events dealing with data flow.</xs:documentation>
1931
+ </xs:annotation>
1932
+ </xs:enumeration>
1933
+ <xs:enumeration value="Anomoly Events">
1934
+ <xs:annotation>
1935
+ <xs:documentation>Specifies the class of events dealing with anomoly events.</xs:documentation>
1936
+ </xs:annotation>
1937
+ </xs:enumeration>
1938
+ <xs:enumeration value="Technical Compliance">
1939
+ <xs:annotation>
1940
+ <xs:documentation>Specifies the class of events dealing with Technical compliance.</xs:documentation>
1941
+ </xs:annotation>
1942
+ </xs:enumeration>
1943
+ <xs:enumeration value="Procedural Compliance">
1944
+ <xs:annotation>
1945
+ <xs:documentation>Specifies the class of events dealing with procedural compliance.</xs:documentation>
1946
+ </xs:annotation>
1947
+ </xs:enumeration>
1948
+ <xs:enumeration value="GUI/KVM">
1949
+ <xs:annotation>
1950
+ <xs:documentation>Specifies the class of events dealing with the GUI/Kernel-based Virtual Machine (KVM).</xs:documentation>
1951
+ </xs:annotation>
1952
+ </xs:enumeration>
1953
+ <xs:enumeration value="Autorun">
1954
+ <xs:annotation>
1955
+ <xs:documentation>Specifies the class of events dealing with Autorun.</xs:documentation>
1956
+ </xs:annotation>
1957
+ </xs:enumeration>
1958
+ <xs:enumeration value="USB/Media Detection">
1959
+ <xs:annotation>
1960
+ <xs:documentation>Specifies the class of events dealing with USB and/or Media detection.</xs:documentation>
1961
+ </xs:annotation>
1962
+ </xs:enumeration>
1963
+ <xs:enumeration value="SQL">
1964
+ <xs:annotation>
1965
+ <xs:documentation>Specifies the class of events dealing with the SQL language.</xs:documentation>
1966
+ </xs:annotation>
1967
+ </xs:enumeration>
1968
+ <xs:enumeration value="DHCP">
1969
+ <xs:annotation>
1970
+ <xs:documentation>Specifies the class of events dealing with the Dynamic Host Configuration Protocol (DHCP).</xs:documentation>
1971
+ </xs:annotation>
1972
+ </xs:enumeration>
1973
+ <xs:enumeration value="Redirection">
1974
+ <xs:annotation>
1975
+ <xs:documentation>Specifies the class of events dealing with redirection.</xs:documentation>
1976
+ </xs:annotation>
1977
+ </xs:enumeration>
1978
+ <xs:enumeration value="Authentication Ops">
1979
+ <xs:annotation>
1980
+ <xs:documentation>Specifies the class of events dealing with authentication operations.</xs:documentation>
1981
+ </xs:annotation>
1982
+ </xs:enumeration>
1983
+ <xs:enumeration value="Authorization (ACL)">
1984
+ <xs:annotation>
1985
+ <xs:documentation>Specifies the class of events dealing with authorization via Access Control Lists (ACL).</xs:documentation>
1986
+ </xs:annotation>
1987
+ </xs:enumeration>
1988
+ <xs:enumeration value="Privilege Ops">
1989
+ <xs:annotation>
1990
+ <xs:documentation>Specifies the class of events dealing with privilege operations.</xs:documentation>
1991
+ </xs:annotation>
1992
+ </xs:enumeration>
1993
+ <xs:enumeration value="Basic System Ops">
1994
+ <xs:annotation>
1995
+ <xs:documentation>Specifies the class of events dealing with basic system operations.</xs:documentation>
1996
+ </xs:annotation>
1997
+ </xs:enumeration>
1998
+ <xs:enumeration value="Signature Detection">
1999
+ <xs:annotation>
2000
+ <xs:documentation>Specifies the class of events dealing with signature detection.</xs:documentation>
2001
+ </xs:annotation>
2002
+ </xs:enumeration>
2003
+ <xs:enumeration value="Auto-update Ops">
2004
+ <xs:annotation>
2005
+ <xs:documentation>Specifies the class of events dealing with auto-update operations.</xs:documentation>
2006
+ </xs:annotation>
2007
+ </xs:enumeration>
2008
+ <xs:enumeration value="Application Logic">
2009
+ <xs:annotation>
2010
+ <xs:documentation>Specifies the class of events dealing with application logic.</xs:documentation>
2011
+ </xs:annotation>
2012
+ </xs:enumeration>
2013
+ <xs:enumeration value="Email Ops">
2014
+ <xs:annotation>
2015
+ <xs:documentation>Specifies the class of events dealing with e-mail operations.</xs:documentation>
2016
+ </xs:annotation>
2017
+ </xs:enumeration>
2018
+ </xs:restriction>
2019
+ </xs:simpleType>
2020
+ <xs:complexType name="ObjectRelationshipVocab-1.0">
2021
+ <xs:annotation>
2022
+ <xs:documentation>The ObjectRelationshipVocab is the default CybOX vocabulary for Object-Object relationships, captured via the RelatedObjectType/Relationship element in CybOX Core.</xs:documentation>
2023
+ </xs:annotation>
2024
+ <xs:simpleContent>
2025
+ <xs:restriction base="cyboxCommon:ControlledVocabularyStringType">
2026
+ <xs:simpleType>
2027
+ <xs:union memberTypes="cyboxVocabs:ObjectRelationshipEnum-1.0"/>
2028
+ </xs:simpleType>
2029
+ <xs:attribute name="vocab_name" type="xs:string" use="optional" fixed="CybOX Default Object-Object Relationships"/>
2030
+ <xs:attribute name="vocab_reference" type="xs:anyURI" use="optional" fixed="http://cybox.mitre.org/XMLSchema/default_vocabularies/2.0/cybox_default_vocabularies.xsd#ObjectRelationshipVocab-1.0"/>
2031
+ </xs:restriction>
2032
+ </xs:simpleContent>
2033
+ </xs:complexType>
2034
+ <xs:simpleType name="ObjectRelationshipEnum-1.0">
2035
+ <xs:annotation>
2036
+ <xs:documentation>ObjectRelationshipEnum is a (non-exhaustive) enumeration of interobject relationships.</xs:documentation>
2037
+ </xs:annotation>
2038
+ <xs:restriction base="xs:string">
2039
+ <xs:enumeration value="Created">
2040
+ <xs:annotation>
2041
+ <xs:documentation>Specifies that this object created the related object.</xs:documentation>
2042
+ </xs:annotation>
2043
+ </xs:enumeration>
2044
+ <xs:enumeration value="Created_By">
2045
+ <xs:annotation>
2046
+ <xs:documentation>Specifies that this object was created by the related object.</xs:documentation>
2047
+ </xs:annotation>
2048
+ </xs:enumeration>
2049
+ <xs:enumeration value="Deleted">
2050
+ <xs:annotation>
2051
+ <xs:documentation>Specifies that this object deleted the related object.</xs:documentation>
2052
+ </xs:annotation>
2053
+ </xs:enumeration>
2054
+ <xs:enumeration value="Deleted_By">
2055
+ <xs:annotation>
2056
+ <xs:documentation>Specifies that this object was deleted by the related object.</xs:documentation>
2057
+ </xs:annotation>
2058
+ </xs:enumeration>
2059
+ <xs:enumeration value="Modified_Properties_Of">
2060
+ <xs:annotation>
2061
+ <xs:documentation>Specifies that this object modified the properties of the related object.</xs:documentation>
2062
+ </xs:annotation>
2063
+ </xs:enumeration>
2064
+ <xs:enumeration value="Properties_Modified_By">
2065
+ <xs:annotation>
2066
+ <xs:documentation>Specifies that the properties of this object were modified by the related object.</xs:documentation>
2067
+ </xs:annotation>
2068
+ </xs:enumeration>
2069
+ <xs:enumeration value="Read_From">
2070
+ <xs:annotation>
2071
+ <xs:documentation>Specifies that this object was read from the related object.</xs:documentation>
2072
+ </xs:annotation>
2073
+ </xs:enumeration>
2074
+ <xs:enumeration value="Read_From_By">
2075
+ <xs:annotation>
2076
+ <xs:documentation>Specifies that this object was read from by the related object.</xs:documentation>
2077
+ </xs:annotation>
2078
+ </xs:enumeration>
2079
+ <xs:enumeration value="Wrote_To">
2080
+ <xs:annotation>
2081
+ <xs:documentation>Specifies that this object wrote to the related object.</xs:documentation>
2082
+ </xs:annotation>
2083
+ </xs:enumeration>
2084
+ <xs:enumeration value="Written_To_By">
2085
+ <xs:annotation>
2086
+ <xs:documentation>Specifies that this object was written to by the related object.</xs:documentation>
2087
+ </xs:annotation>
2088
+ </xs:enumeration>
2089
+ <xs:enumeration value="Downloaded_From">
2090
+ <xs:annotation>
2091
+ <xs:documentation>Specifies that this object was downloaded from the related object.</xs:documentation>
2092
+ </xs:annotation>
2093
+ </xs:enumeration>
2094
+ <xs:enumeration value="Downloaded_To">
2095
+ <xs:annotation>
2096
+ <xs:documentation>Specifies that this object downloaded the related object.</xs:documentation>
2097
+ </xs:annotation>
2098
+ </xs:enumeration>
2099
+ <xs:enumeration value="Downloaded">
2100
+ <xs:annotation>
2101
+ <xs:documentation>Specifies that this object downloaded the related object.</xs:documentation>
2102
+ </xs:annotation>
2103
+ </xs:enumeration>
2104
+ <xs:enumeration value="Downloaded_By">
2105
+ <xs:annotation>
2106
+ <xs:documentation>Specifies that this object was downloaded by the related object.</xs:documentation>
2107
+ </xs:annotation>
2108
+ </xs:enumeration>
2109
+ <xs:enumeration value="Uploaded">
2110
+ <xs:annotation>
2111
+ <xs:documentation>Specifies that this object uploaded the related object.</xs:documentation>
2112
+ </xs:annotation>
2113
+ </xs:enumeration>
2114
+ <xs:enumeration value="Uploaded_By">
2115
+ <xs:annotation>
2116
+ <xs:documentation>Specifies that this object was uploaded by the related object.</xs:documentation>
2117
+ </xs:annotation>
2118
+ </xs:enumeration>
2119
+ <xs:enumeration value="Uploaded_To">
2120
+ <xs:annotation>
2121
+ <xs:documentation>Specifies that this object was uploaded to the related object.</xs:documentation>
2122
+ </xs:annotation>
2123
+ </xs:enumeration>
2124
+ <xs:enumeration value="Received_Via_Upload">
2125
+ <xs:annotation>
2126
+ <xs:documentation>Specifies that this object received the related object via upload.</xs:documentation>
2127
+ </xs:annotation>
2128
+ </xs:enumeration>
2129
+ <xs:enumeration value="Uploaded_From">
2130
+ <xs:annotation>
2131
+ <xs:documentation>Specifies that this object was uploaded from the related object.</xs:documentation>
2132
+ </xs:annotation>
2133
+ </xs:enumeration>
2134
+ <xs:enumeration value="Sent_Via_Upload">
2135
+ <xs:annotation>
2136
+ <xs:documentation>Specifies that this object sent the related object via upload.</xs:documentation>
2137
+ </xs:annotation>
2138
+ </xs:enumeration>
2139
+ <xs:enumeration value="Suspended">
2140
+ <xs:annotation>
2141
+ <xs:documentation>Specifies that this object suspended the related object.</xs:documentation>
2142
+ </xs:annotation>
2143
+ </xs:enumeration>
2144
+ <xs:enumeration value="Suspended_By">
2145
+ <xs:annotation>
2146
+ <xs:documentation>Specifies that this object was suspended by the related object.</xs:documentation>
2147
+ </xs:annotation>
2148
+ </xs:enumeration>
2149
+ <xs:enumeration value="Paused">
2150
+ <xs:annotation>
2151
+ <xs:documentation>Specifies that this object paused the related object.</xs:documentation>
2152
+ </xs:annotation>
2153
+ </xs:enumeration>
2154
+ <xs:enumeration value="Paused_By">
2155
+ <xs:annotation>
2156
+ <xs:documentation>Specifies that this object was paused by the related object.</xs:documentation>
2157
+ </xs:annotation>
2158
+ </xs:enumeration>
2159
+ <xs:enumeration value="Resumed">
2160
+ <xs:annotation>
2161
+ <xs:documentation>Specifies that this object resumed the related object.</xs:documentation>
2162
+ </xs:annotation>
2163
+ </xs:enumeration>
2164
+ <xs:enumeration value="Resumed_By">
2165
+ <xs:annotation>
2166
+ <xs:documentation>Specifies that this object was resumed by the related object.</xs:documentation>
2167
+ </xs:annotation>
2168
+ </xs:enumeration>
2169
+ <xs:enumeration value="Opened">
2170
+ <xs:annotation>
2171
+ <xs:documentation>Specifies that this object opened the related object.</xs:documentation>
2172
+ </xs:annotation>
2173
+ </xs:enumeration>
2174
+ <xs:enumeration value="Opened_By">
2175
+ <xs:annotation>
2176
+ <xs:documentation>Specifies that this object was opened by the related object.</xs:documentation>
2177
+ </xs:annotation>
2178
+ </xs:enumeration>
2179
+ <xs:enumeration value="Closed">
2180
+ <xs:annotation>
2181
+ <xs:documentation>Specifies that this object closed the related object.</xs:documentation>
2182
+ </xs:annotation>
2183
+ </xs:enumeration>
2184
+ <xs:enumeration value="Closed_By">
2185
+ <xs:annotation>
2186
+ <xs:documentation>Specifies that this object was closed by the related object.</xs:documentation>
2187
+ </xs:annotation>
2188
+ </xs:enumeration>
2189
+ <xs:enumeration value="Copied_From">
2190
+ <xs:annotation>
2191
+ <xs:documentation>Specifies that this object was copied from the related object.</xs:documentation>
2192
+ </xs:annotation>
2193
+ </xs:enumeration>
2194
+ <xs:enumeration value="Copied_To">
2195
+ <xs:annotation>
2196
+ <xs:documentation>Specifies that this object was copied to the related object.</xs:documentation>
2197
+ </xs:annotation>
2198
+ </xs:enumeration>
2199
+ <xs:enumeration value="Copied">
2200
+ <xs:annotation>
2201
+ <xs:documentation>Specifies that this object copied the related object.</xs:documentation>
2202
+ </xs:annotation>
2203
+ </xs:enumeration>
2204
+ <xs:enumeration value="Copied_By">
2205
+ <xs:annotation>
2206
+ <xs:documentation>Specifies that this object was copied by the related object.</xs:documentation>
2207
+ </xs:annotation>
2208
+ </xs:enumeration>
2209
+ <xs:enumeration value="Moved_From">
2210
+ <xs:annotation>
2211
+ <xs:documentation>Specifies that this object was moved from the related object.</xs:documentation>
2212
+ </xs:annotation>
2213
+ </xs:enumeration>
2214
+ <xs:enumeration value="Moved_To">
2215
+ <xs:annotation>
2216
+ <xs:documentation>Specifies that this object was moved to the related object.</xs:documentation>
2217
+ </xs:annotation>
2218
+ </xs:enumeration>
2219
+ <xs:enumeration value="Moved">
2220
+ <xs:annotation>
2221
+ <xs:documentation>Specifies that this object moved the related object.</xs:documentation>
2222
+ </xs:annotation>
2223
+ </xs:enumeration>
2224
+ <xs:enumeration value="Moved_By">
2225
+ <xs:annotation>
2226
+ <xs:documentation>Specifies that this object was moved by the related object.</xs:documentation>
2227
+ </xs:annotation>
2228
+ </xs:enumeration>
2229
+ <xs:enumeration value="Searched_For">
2230
+ <xs:annotation>
2231
+ <xs:documentation>Specifies that this object searched for the related object.</xs:documentation>
2232
+ </xs:annotation>
2233
+ </xs:enumeration>
2234
+ <xs:enumeration value="Searched_For_By">
2235
+ <xs:annotation>
2236
+ <xs:documentation>Specifies that this object was searched for by the related object.</xs:documentation>
2237
+ </xs:annotation>
2238
+ </xs:enumeration>
2239
+ <xs:enumeration value="Allocated">
2240
+ <xs:annotation>
2241
+ <xs:documentation>Specifies that this object allocated the related object.</xs:documentation>
2242
+ </xs:annotation>
2243
+ </xs:enumeration>
2244
+ <xs:enumeration value="Allocated_By">
2245
+ <xs:annotation>
2246
+ <xs:documentation>Specifies that this object was allocated by the related object.</xs:documentation>
2247
+ </xs:annotation>
2248
+ </xs:enumeration>
2249
+ <xs:enumeration value="Initialized_To">
2250
+ <xs:annotation>
2251
+ <xs:documentation>Specifies that this object was initialized to the related object.</xs:documentation>
2252
+ </xs:annotation>
2253
+ </xs:enumeration>
2254
+ <xs:enumeration value="Initialized_By">
2255
+ <xs:annotation>
2256
+ <xs:documentation>Specifies that this object was initialized by the related object.</xs:documentation>
2257
+ </xs:annotation>
2258
+ </xs:enumeration>
2259
+ <xs:enumeration value="Sent">
2260
+ <xs:annotation>
2261
+ <xs:documentation>Specifies that this object sent the related object.</xs:documentation>
2262
+ </xs:annotation>
2263
+ </xs:enumeration>
2264
+ <xs:enumeration value="Sent_By">
2265
+ <xs:annotation>
2266
+ <xs:documentation>Specifies that this object was sent by the related object.</xs:documentation>
2267
+ </xs:annotation>
2268
+ </xs:enumeration>
2269
+ <xs:enumeration value="Sent_To">
2270
+ <xs:annotation>
2271
+ <xs:documentation>Specifies that this object was sent to the related object.</xs:documentation>
2272
+ </xs:annotation>
2273
+ </xs:enumeration>
2274
+ <xs:enumeration value="Received_From">
2275
+ <xs:annotation>
2276
+ <xs:documentation>Specifies that this object was received from the related object.</xs:documentation>
2277
+ </xs:annotation>
2278
+ </xs:enumeration>
2279
+ <xs:enumeration value="Received">
2280
+ <xs:annotation>
2281
+ <xs:documentation>Specifies that this object received the related object.</xs:documentation>
2282
+ </xs:annotation>
2283
+ </xs:enumeration>
2284
+ <xs:enumeration value="Received_By">
2285
+ <xs:annotation>
2286
+ <xs:documentation>Specifies that this object was received by the related object.</xs:documentation>
2287
+ </xs:annotation>
2288
+ </xs:enumeration>
2289
+ <xs:enumeration value="Mapped_Into">
2290
+ <xs:annotation>
2291
+ <xs:documentation>Specifies that this object was mapped into the related object.</xs:documentation>
2292
+ </xs:annotation>
2293
+ </xs:enumeration>
2294
+ <xs:enumeration value="Mapped_By">
2295
+ <xs:annotation>
2296
+ <xs:documentation>Specifies that this object was mapped by the related object.</xs:documentation>
2297
+ </xs:annotation>
2298
+ </xs:enumeration>
2299
+ <xs:enumeration value="Properties_Queried">
2300
+ <xs:annotation>
2301
+ <xs:documentation>Specifies that the object queried properties of the related object.</xs:documentation>
2302
+ </xs:annotation>
2303
+ </xs:enumeration>
2304
+ <xs:enumeration value="Properties_Queried_By">
2305
+ <xs:annotation>
2306
+ <xs:documentation>Specifies that the properties of this object were queried by the related object.</xs:documentation>
2307
+ </xs:annotation>
2308
+ </xs:enumeration>
2309
+ <xs:enumeration value="Values_Enumerated">
2310
+ <xs:annotation>
2311
+ <xs:documentation>Specifies that the object enumerated values of the related object.</xs:documentation>
2312
+ </xs:annotation>
2313
+ </xs:enumeration>
2314
+ <xs:enumeration value="Values_Enumerated_By">
2315
+ <xs:annotation>
2316
+ <xs:documentation>Specifies that the values of the object were enumerated by the related object.</xs:documentation>
2317
+ </xs:annotation>
2318
+ </xs:enumeration>
2319
+ <xs:enumeration value="Bound">
2320
+ <xs:annotation>
2321
+ <xs:documentation>Specifies that this object bound the related object.</xs:documentation>
2322
+ </xs:annotation>
2323
+ </xs:enumeration>
2324
+ <xs:enumeration value="Bound_By">
2325
+ <xs:annotation>
2326
+ <xs:documentation>Specifies that this object was bound by the related object.</xs:documentation>
2327
+ </xs:annotation>
2328
+ </xs:enumeration>
2329
+ <xs:enumeration value="Freed">
2330
+ <xs:annotation>
2331
+ <xs:documentation>Specifies that this object freed the related object.</xs:documentation>
2332
+ </xs:annotation>
2333
+ </xs:enumeration>
2334
+ <xs:enumeration value="Freed_By">
2335
+ <xs:annotation>
2336
+ <xs:documentation>Specifies that this object was freed by the related object.</xs:documentation>
2337
+ </xs:annotation>
2338
+ </xs:enumeration>
2339
+ <xs:enumeration value="Killed">
2340
+ <xs:annotation>
2341
+ <xs:documentation>Specifies that this object killed the related object.</xs:documentation>
2342
+ </xs:annotation>
2343
+ </xs:enumeration>
2344
+ <xs:enumeration value="Killed_By">
2345
+ <xs:annotation>
2346
+ <xs:documentation>Specifies that this object was killed by the related object.</xs:documentation>
2347
+ </xs:annotation>
2348
+ </xs:enumeration>
2349
+ <xs:enumeration value="Encrypted">
2350
+ <xs:annotation>
2351
+ <xs:documentation>Specifies that this object encrypted the related object.</xs:documentation>
2352
+ </xs:annotation>
2353
+ </xs:enumeration>
2354
+ <xs:enumeration value="Encrypted_By">
2355
+ <xs:annotation>
2356
+ <xs:documentation>Specifies that this object was encrypted by the related object.</xs:documentation>
2357
+ </xs:annotation>
2358
+ </xs:enumeration>
2359
+ <xs:enumeration value="Encrypted_To">
2360
+ <xs:annotation>
2361
+ <xs:documentation>Specifies that this object was encrypted to the related object.</xs:documentation>
2362
+ </xs:annotation>
2363
+ </xs:enumeration>
2364
+ <xs:enumeration value="Encrypted_From">
2365
+ <xs:annotation>
2366
+ <xs:documentation>Specifies that this object was encrypted from the related object.</xs:documentation>
2367
+ </xs:annotation>
2368
+ </xs:enumeration>
2369
+ <xs:enumeration value="Decrypted">
2370
+ <xs:annotation>
2371
+ <xs:documentation>Specifies that this object decrypted the related object.</xs:documentation>
2372
+ </xs:annotation>
2373
+ </xs:enumeration>
2374
+ <xs:enumeration value="Decrypted_By">
2375
+ <xs:annotation>
2376
+ <xs:documentation>Specifies that this object was decrypted by the related object.</xs:documentation>
2377
+ </xs:annotation>
2378
+ </xs:enumeration>
2379
+ <xs:enumeration value="Packed">
2380
+ <xs:annotation>
2381
+ <xs:documentation>Specifies that this object packed the related object.</xs:documentation>
2382
+ </xs:annotation>
2383
+ </xs:enumeration>
2384
+ <xs:enumeration value="Packed_By">
2385
+ <xs:annotation>
2386
+ <xs:documentation>Specifies that this object was packed by the related object.</xs:documentation>
2387
+ </xs:annotation>
2388
+ </xs:enumeration>
2389
+ <xs:enumeration value="Unpacked">
2390
+ <xs:annotation>
2391
+ <xs:documentation>Specifies that this object unpacked the related object.</xs:documentation>
2392
+ </xs:annotation>
2393
+ </xs:enumeration>
2394
+ <xs:enumeration value="Unpacked_By">
2395
+ <xs:annotation>
2396
+ <xs:documentation>Specifies that this object was unpacked by the related object.</xs:documentation>
2397
+ </xs:annotation>
2398
+ </xs:enumeration>
2399
+ <xs:enumeration value="Packed_From">
2400
+ <xs:annotation>
2401
+ <xs:documentation>Specifies that this object was packed from the related object.</xs:documentation>
2402
+ </xs:annotation>
2403
+ </xs:enumeration>
2404
+ <xs:enumeration value="Packed_Into">
2405
+ <xs:annotation>
2406
+ <xs:documentation>Specifies that this object was packed into the related object.</xs:documentation>
2407
+ </xs:annotation>
2408
+ </xs:enumeration>
2409
+ <xs:enumeration value="Encoded">
2410
+ <xs:annotation>
2411
+ <xs:documentation>Specifies that this object encoded the related object.</xs:documentation>
2412
+ </xs:annotation>
2413
+ </xs:enumeration>
2414
+ <xs:enumeration value="Encoded_By">
2415
+ <xs:annotation>
2416
+ <xs:documentation>Specifies that this object was encoded by the related object.</xs:documentation>
2417
+ </xs:annotation>
2418
+ </xs:enumeration>
2419
+ <xs:enumeration value="Decoded">
2420
+ <xs:annotation>
2421
+ <xs:documentation>Specifies that this object decoded the related object.</xs:documentation>
2422
+ </xs:annotation>
2423
+ </xs:enumeration>
2424
+ <xs:enumeration value="Decoded_By">
2425
+ <xs:annotation>
2426
+ <xs:documentation>Specifies that this object was decoded by the related object.</xs:documentation>
2427
+ </xs:annotation>
2428
+ </xs:enumeration>
2429
+ <xs:enumeration value="Compressed_From">
2430
+ <xs:annotation>
2431
+ <xs:documentation>Specifies that this object was compressed from the related object.</xs:documentation>
2432
+ </xs:annotation>
2433
+ </xs:enumeration>
2434
+ <xs:enumeration value="Compressed_Into">
2435
+ <xs:annotation>
2436
+ <xs:documentation>Specifies that this object was compressed into the related object.</xs:documentation>
2437
+ </xs:annotation>
2438
+ </xs:enumeration>
2439
+ <xs:enumeration value="Compressed">
2440
+ <xs:annotation>
2441
+ <xs:documentation>Specifies that this object compressed the related object.</xs:documentation>
2442
+ </xs:annotation>
2443
+ </xs:enumeration>
2444
+ <xs:enumeration value="Compressed_By">
2445
+ <xs:annotation>
2446
+ <xs:documentation>Specifies that this object was compressed by the related object.</xs:documentation>
2447
+ </xs:annotation>
2448
+ </xs:enumeration>
2449
+ <xs:enumeration value="Decompressed">
2450
+ <xs:annotation>
2451
+ <xs:documentation>Specifies that this object decompressed the related object.</xs:documentation>
2452
+ </xs:annotation>
2453
+ </xs:enumeration>
2454
+ <xs:enumeration value="Decompressed_By">
2455
+ <xs:annotation>
2456
+ <xs:documentation>Specifies that this object was decompressed by the related object.</xs:documentation>
2457
+ </xs:annotation>
2458
+ </xs:enumeration>
2459
+ <xs:enumeration value="Joined">
2460
+ <xs:annotation>
2461
+ <xs:documentation>Specifies that this object joined the related object.</xs:documentation>
2462
+ </xs:annotation>
2463
+ </xs:enumeration>
2464
+ <xs:enumeration value="Joined_By">
2465
+ <xs:annotation>
2466
+ <xs:documentation>Specifies that this object was joined by the related object.</xs:documentation>
2467
+ </xs:annotation>
2468
+ </xs:enumeration>
2469
+ <xs:enumeration value="Merged">
2470
+ <xs:annotation>
2471
+ <xs:documentation>Specifies that this object merged the related object.</xs:documentation>
2472
+ </xs:annotation>
2473
+ </xs:enumeration>
2474
+ <xs:enumeration value="Merged_By">
2475
+ <xs:annotation>
2476
+ <xs:documentation>Specifies that this object was merged by the related object.</xs:documentation>
2477
+ </xs:annotation>
2478
+ </xs:enumeration>
2479
+ <xs:enumeration value="Locked">
2480
+ <xs:annotation>
2481
+ <xs:documentation>Specifies that this object locked the related object.</xs:documentation>
2482
+ </xs:annotation>
2483
+ </xs:enumeration>
2484
+ <xs:enumeration value="Locked_By">
2485
+ <xs:annotation>
2486
+ <xs:documentation>Specifies that this object was locked by the related object.</xs:documentation>
2487
+ </xs:annotation>
2488
+ </xs:enumeration>
2489
+ <xs:enumeration value="Unlocked">
2490
+ <xs:annotation>
2491
+ <xs:documentation>Specifies that this object unlocked the related object.</xs:documentation>
2492
+ </xs:annotation>
2493
+ </xs:enumeration>
2494
+ <xs:enumeration value="Unlocked_By">
2495
+ <xs:annotation>
2496
+ <xs:documentation>Specifies that this object was unlocked by the related object.</xs:documentation>
2497
+ </xs:annotation>
2498
+ </xs:enumeration>
2499
+ <xs:enumeration value="Hooked">
2500
+ <xs:annotation>
2501
+ <xs:documentation>Specifies that this object hooked the related object.</xs:documentation>
2502
+ </xs:annotation>
2503
+ </xs:enumeration>
2504
+ <xs:enumeration value="Hooked_By">
2505
+ <xs:annotation>
2506
+ <xs:documentation>Specifies that this object was hooked by the related object.</xs:documentation>
2507
+ </xs:annotation>
2508
+ </xs:enumeration>
2509
+ <xs:enumeration value="Unhooked">
2510
+ <xs:annotation>
2511
+ <xs:documentation>Specifies that this object unhooked the related object.</xs:documentation>
2512
+ </xs:annotation>
2513
+ </xs:enumeration>
2514
+ <xs:enumeration value="Unhooked_By">
2515
+ <xs:annotation>
2516
+ <xs:documentation>Specifies that this object was unhooked by the related object.</xs:documentation>
2517
+ </xs:annotation>
2518
+ </xs:enumeration>
2519
+ <xs:enumeration value="Monitored">
2520
+ <xs:annotation>
2521
+ <xs:documentation>Specifies that this object monitored the related object.</xs:documentation>
2522
+ </xs:annotation>
2523
+ </xs:enumeration>
2524
+ <xs:enumeration value="Monitored_By">
2525
+ <xs:annotation>
2526
+ <xs:documentation>Specifies that this object was monitored by the related object.</xs:documentation>
2527
+ </xs:annotation>
2528
+ </xs:enumeration>
2529
+ <xs:enumeration value="Listened_On">
2530
+ <xs:annotation>
2531
+ <xs:documentation>Specifies that this object listened on the related object.</xs:documentation>
2532
+ </xs:annotation>
2533
+ </xs:enumeration>
2534
+ <xs:enumeration value="Listened_On_By">
2535
+ <xs:annotation>
2536
+ <xs:documentation>Specifies that this object was listened on by the related object.</xs:documentation>
2537
+ </xs:annotation>
2538
+ </xs:enumeration>
2539
+ <xs:enumeration value="Renamed_From">
2540
+ <xs:annotation>
2541
+ <xs:documentation>Specifies that this object was renamed from the related object.</xs:documentation>
2542
+ </xs:annotation>
2543
+ </xs:enumeration>
2544
+ <xs:enumeration value="Renamed_To">
2545
+ <xs:annotation>
2546
+ <xs:documentation>Specifies that this object was renamed to the related object.</xs:documentation>
2547
+ </xs:annotation>
2548
+ </xs:enumeration>
2549
+ <xs:enumeration value="Renamed">
2550
+ <xs:annotation>
2551
+ <xs:documentation>Specifies that this object renamed the related object.</xs:documentation>
2552
+ </xs:annotation>
2553
+ </xs:enumeration>
2554
+ <xs:enumeration value="Renamed_By">
2555
+ <xs:annotation>
2556
+ <xs:documentation>Specifies that this object was renamed by the related object.</xs:documentation>
2557
+ </xs:annotation>
2558
+ </xs:enumeration>
2559
+ <xs:enumeration value="Injected_Into">
2560
+ <xs:annotation>
2561
+ <xs:documentation>Specifies that this object injected into the related object.</xs:documentation>
2562
+ </xs:annotation>
2563
+ </xs:enumeration>
2564
+ <xs:enumeration value="Injected_As">
2565
+ <xs:annotation>
2566
+ <xs:documentation>Specifies that this object injected as the related object.</xs:documentation>
2567
+ </xs:annotation>
2568
+ </xs:enumeration>
2569
+ <xs:enumeration value="Injected">
2570
+ <xs:annotation>
2571
+ <xs:documentation>Specifies that this object injected the related object.</xs:documentation>
2572
+ </xs:annotation>
2573
+ </xs:enumeration>
2574
+ <xs:enumeration value="Injected_By">
2575
+ <xs:annotation>
2576
+ <xs:documentation>Specifies that this object was injected by the related object.</xs:documentation>
2577
+ </xs:annotation>
2578
+ </xs:enumeration>
2579
+ <xs:enumeration value="Deleted_From">
2580
+ <xs:annotation>
2581
+ <xs:documentation>Specifies that this object was deleted from the related object.</xs:documentation>
2582
+ </xs:annotation>
2583
+ </xs:enumeration>
2584
+ <xs:enumeration value="Previously_Contained">
2585
+ <xs:annotation>
2586
+ <xs:documentation>Specifies that this object previously contained the related object.</xs:documentation>
2587
+ </xs:annotation>
2588
+ </xs:enumeration>
2589
+ <xs:enumeration value="Loaded_Into">
2590
+ <xs:annotation>
2591
+ <xs:documentation>Specifies that this object loaded into the related object.</xs:documentation>
2592
+ </xs:annotation>
2593
+ </xs:enumeration>
2594
+ <xs:enumeration value="Loaded_From">
2595
+ <xs:annotation>
2596
+ <xs:documentation>Specifies that this object was loaded from the related object.</xs:documentation>
2597
+ </xs:annotation>
2598
+ </xs:enumeration>
2599
+ <xs:enumeration value="Set_To">
2600
+ <xs:annotation>
2601
+ <xs:documentation>Specifies that this object was set to the related object.</xs:documentation>
2602
+ </xs:annotation>
2603
+ </xs:enumeration>
2604
+ <xs:enumeration value="Set_From">
2605
+ <xs:annotation>
2606
+ <xs:documentation>Specifies that this object was set from the related object.</xs:documentation>
2607
+ </xs:annotation>
2608
+ </xs:enumeration>
2609
+ <xs:enumeration value="Resolved_To">
2610
+ <xs:annotation>
2611
+ <xs:documentation>Specifies that this object was resolved to the related object.</xs:documentation>
2612
+ </xs:annotation>
2613
+ </xs:enumeration>
2614
+ <xs:enumeration value="Related_To">
2615
+ <xs:annotation>
2616
+ <xs:documentation>Specifies that this object is related to the related object.</xs:documentation>
2617
+ </xs:annotation>
2618
+ </xs:enumeration>
2619
+ <xs:enumeration value="Dropped">
2620
+ <xs:annotation>
2621
+ <xs:documentation>Specifies that this object dropped the related object.</xs:documentation>
2622
+ </xs:annotation>
2623
+ </xs:enumeration>
2624
+ <xs:enumeration value="Dropped_By">
2625
+ <xs:annotation>
2626
+ <xs:documentation>Specifies that this object was dropped by the related object.</xs:documentation>
2627
+ </xs:annotation>
2628
+ </xs:enumeration>
2629
+ <xs:enumeration value="Contains">
2630
+ <xs:annotation>
2631
+ <xs:documentation>Specifies that this object contains the related object.</xs:documentation>
2632
+ </xs:annotation>
2633
+ </xs:enumeration>
2634
+ <xs:enumeration value="Contained_Within">
2635
+ <xs:annotation>
2636
+ <xs:documentation>Specifies that this object is contained within the related object.</xs:documentation>
2637
+ </xs:annotation>
2638
+ </xs:enumeration>
2639
+ <xs:enumeration value="Extracted_From">
2640
+ <xs:annotation>
2641
+ <xs:documentation>Specifies that this object was extracted from the related object.</xs:documentation>
2642
+ </xs:annotation>
2643
+ </xs:enumeration>
2644
+ <xs:enumeration value="Installed">
2645
+ <xs:annotation>
2646
+ <xs:documentation>Specifies that this object installed the related object.</xs:documentation>
2647
+ </xs:annotation>
2648
+ </xs:enumeration>
2649
+ <xs:enumeration value="Installed_By">
2650
+ <xs:annotation>
2651
+ <xs:documentation>Specifies that this object was installed by the related object.</xs:documentation>
2652
+ </xs:annotation>
2653
+ </xs:enumeration>
2654
+ <xs:enumeration value="Connected_To">
2655
+ <xs:annotation>
2656
+ <xs:documentation>Specifies that this object connected to the related object.</xs:documentation>
2657
+ </xs:annotation>
2658
+ </xs:enumeration>
2659
+ <xs:enumeration value="Connected_From">
2660
+ <xs:annotation>
2661
+ <xs:documentation>Specifies that this object was connected to from the related object.</xs:documentation>
2662
+ </xs:annotation>
2663
+ </xs:enumeration>
2664
+ <xs:enumeration value="Sub-domain_Of">
2665
+ <xs:annotation>
2666
+ <xs:documentation>Specifies that this object is a sub-domain of the related object.</xs:documentation>
2667
+ </xs:annotation>
2668
+ </xs:enumeration>
2669
+ <xs:enumeration value="Supra-domain_Of">
2670
+ <xs:annotation>
2671
+ <xs:documentation>Specifies that this object is a supra-domain of the related object.</xs:documentation>
2672
+ </xs:annotation>
2673
+ </xs:enumeration>
2674
+ <xs:enumeration value="Root_Domain_Of">
2675
+ <xs:annotation>
2676
+ <xs:documentation>Specifies that this object is the root domain of the related object.</xs:documentation>
2677
+ </xs:annotation>
2678
+ </xs:enumeration>
2679
+ <xs:enumeration value="FQDN_Of">
2680
+ <xs:annotation>
2681
+ <xs:documentation>Specifies that this object is an FQDN of the related object.</xs:documentation>
2682
+ </xs:annotation>
2683
+ </xs:enumeration>
2684
+ <xs:enumeration value="Parent_Of">
2685
+ <xs:annotation>
2686
+ <xs:documentation>Specifies that this object is a parent of the related object.</xs:documentation>
2687
+ </xs:annotation>
2688
+ </xs:enumeration>
2689
+ <xs:enumeration value="Child_Of">
2690
+ <xs:annotation>
2691
+ <xs:documentation>Specifies that this object is a child of the related object.</xs:documentation>
2692
+ </xs:annotation>
2693
+ </xs:enumeration>
2694
+ <xs:enumeration value="Characterizes">
2695
+ <xs:annotation>
2696
+ <xs:documentation>Specifies that this object describes the properties of the related object. This is most applicable in cases where the related object is an Artifact Object and this object is a non-Artifact Object.</xs:documentation>
2697
+ </xs:annotation>
2698
+ </xs:enumeration>
2699
+ <xs:enumeration value="Characterized_By">
2700
+ <xs:annotation>
2701
+ <xs:documentation>Specifies that the related object describes the properties of this object. This is most applicable in cases where the related object is a non-Artifact Object and this object is an Artifact Object.</xs:documentation>
2702
+ </xs:annotation>
2703
+ </xs:enumeration>
2704
+ </xs:restriction>
2705
+ </xs:simpleType>
2706
+ <xs:complexType name="ObjectStateVocab-1.0">
2707
+ <xs:annotation>
2708
+ <xs:documentation>The ObjectStateVocab is the default CybOX vocabulary for Object states, captured via the ObjectType/State element in CybOX Core.</xs:documentation>
2709
+ </xs:annotation>
2710
+ <xs:simpleContent>
2711
+ <xs:restriction base="cyboxCommon:ControlledVocabularyStringType">
2712
+ <xs:simpleType>
2713
+ <xs:union memberTypes="cyboxVocabs:ObjectStateEnum-1.0"/>
2714
+ </xs:simpleType>
2715
+ <xs:attribute name="vocab_name" type="xs:string" use="optional" fixed="CybOX Default Object States"/>
2716
+ <xs:attribute name="vocab_reference" type="xs:anyURI" use="optional" fixed="http://cybox.mitre.org/XMLSchema/default_vocabularies/2.0/cybox_default_vocabularies.xsd#ObjectStateVocab-1.0"/>
2717
+ </xs:restriction>
2718
+ </xs:simpleContent>
2719
+ </xs:complexType>
2720
+ <xs:simpleType name="ObjectStateEnum-1.0">
2721
+ <xs:annotation>
2722
+ <xs:documentation>ObjectStateEnum is a (non-exhaustive) enumeration of cyber observable object states.</xs:documentation>
2723
+ </xs:annotation>
2724
+ <xs:restriction base="xs:string">
2725
+ <xs:enumeration value="Exists">
2726
+ <xs:annotation>
2727
+ <xs:documentation>Specifies that the object exists.</xs:documentation>
2728
+ </xs:annotation>
2729
+ </xs:enumeration>
2730
+ <xs:enumeration value="Does Not Exist">
2731
+ <xs:annotation>
2732
+ <xs:documentation>Specifies that the object does not exist.</xs:documentation>
2733
+ </xs:annotation>
2734
+ </xs:enumeration>
2735
+ <xs:enumeration value="Open">
2736
+ <xs:annotation>
2737
+ <xs:documentation>Specifies that the object is open.</xs:documentation>
2738
+ </xs:annotation>
2739
+ </xs:enumeration>
2740
+ <xs:enumeration value="Closed">
2741
+ <xs:annotation>
2742
+ <xs:documentation>Specifies that the object is closed.</xs:documentation>
2743
+ </xs:annotation>
2744
+ </xs:enumeration>
2745
+ <xs:enumeration value="Active">
2746
+ <xs:annotation>
2747
+ <xs:documentation>Specifies that the object is active.</xs:documentation>
2748
+ </xs:annotation>
2749
+ </xs:enumeration>
2750
+ <xs:enumeration value="Inactive">
2751
+ <xs:annotation>
2752
+ <xs:documentation>Specifies that the object is inactive.</xs:documentation>
2753
+ </xs:annotation>
2754
+ </xs:enumeration>
2755
+ <xs:enumeration value="Locked">
2756
+ <xs:annotation>
2757
+ <xs:documentation>Specifies that the object is locked.</xs:documentation>
2758
+ </xs:annotation>
2759
+ </xs:enumeration>
2760
+ <xs:enumeration value="Unlocked">
2761
+ <xs:annotation>
2762
+ <xs:documentation>Specifies that the object is unlocked.</xs:documentation>
2763
+ </xs:annotation>
2764
+ </xs:enumeration>
2765
+ <xs:enumeration value="Started">
2766
+ <xs:annotation>
2767
+ <xs:documentation>Specifies that the object has started.</xs:documentation>
2768
+ </xs:annotation>
2769
+ </xs:enumeration>
2770
+ <xs:enumeration value="Stopped">
2771
+ <xs:annotation>
2772
+ <xs:documentation>Specifies that the object has stopped.</xs:documentation>
2773
+ </xs:annotation>
2774
+ </xs:enumeration>
2775
+ </xs:restriction>
2776
+ </xs:simpleType>
2777
+ <xs:complexType name="CharacterEncodingVocab-1.0">
2778
+ <xs:annotation>
2779
+ <xs:documentation>The CharacterEncodingVocab is the default CybOX vocabulary for character encoding, used in the ExtractedStringType/Encoding element in CybOX Common.</xs:documentation>
2780
+ </xs:annotation>
2781
+ <xs:simpleContent>
2782
+ <xs:restriction base="cyboxCommon:ControlledVocabularyStringType">
2783
+ <xs:simpleType>
2784
+ <xs:union memberTypes="cyboxVocabs:CharacterEncodingEnum-1.0"/>
2785
+ </xs:simpleType>
2786
+ <xs:attribute name="vocab_name" type="xs:string" use="optional" fixed="CybOX Default Character Encodings"/>
2787
+ <xs:attribute name="vocab_reference" type="xs:anyURI" use="optional" fixed="http://cybox.mitre.org/XMLSchema/default_vocabularies/2.0/cybox_default_vocabularies.xsd#CharacterEncodingVocab-1.0"/>
2788
+ </xs:restriction>
2789
+ </xs:simpleContent>
2790
+ </xs:complexType>
2791
+ <xs:simpleType name="CharacterEncodingEnum-1.0">
2792
+ <xs:annotation>
2793
+ <xs:documentation>CharacterEncodingEnum is a (non-exhaustive) enumeration of character encodings.</xs:documentation>
2794
+ </xs:annotation>
2795
+ <xs:restriction base="xs:string">
2796
+ <xs:enumeration value="ASCII">
2797
+ <xs:annotation>
2798
+ <xs:documentation>Specifies the American Standard Code for Information Interchange (ASCII) character encoding scheme.</xs:documentation>
2799
+ </xs:annotation>
2800
+ </xs:enumeration>
2801
+ <xs:enumeration value="UTF-8">
2802
+ <xs:annotation>
2803
+ <xs:documentation>Specifies the UCS Transformation Format-8 bit (UTF-8) character encoding scheme.</xs:documentation>
2804
+ </xs:annotation>
2805
+ </xs:enumeration>
2806
+ <xs:enumeration value="UTF-16">
2807
+ <xs:annotation>
2808
+ <xs:documentation>Specifies the UCS Transformation Format-16 bit (UTF-16) character encoding scheme.</xs:documentation>
2809
+ </xs:annotation>
2810
+ </xs:enumeration>
2811
+ <xs:enumeration value="UTF-32">
2812
+ <xs:annotation>
2813
+ <xs:documentation>Specifies the UCS Transformation Format-32 bit (UTF-32) character encoding scheme.</xs:documentation>
2814
+ </xs:annotation>
2815
+ </xs:enumeration>
2816
+ <xs:enumeration value="Windows-1250">
2817
+ <xs:annotation>
2818
+ <xs:documentation>Specifies the Windows-1250 character encoding scheme, for Central European languages.</xs:documentation>
2819
+ </xs:annotation>
2820
+ </xs:enumeration>
2821
+ <xs:enumeration value="Windows-1251">
2822
+ <xs:annotation>
2823
+ <xs:documentation>Specifies the Windows-1251 character encoding scheme, for Cyrillic alphabets.</xs:documentation>
2824
+ </xs:annotation>
2825
+ </xs:enumeration>
2826
+ <xs:enumeration value="Windows-1252">
2827
+ <xs:annotation>
2828
+ <xs:documentation>Specifies the Windows-1252 character encoding scheme, for Western languages.</xs:documentation>
2829
+ </xs:annotation>
2830
+ </xs:enumeration>
2831
+ <xs:enumeration value="Windows-1253">
2832
+ <xs:annotation>
2833
+ <xs:documentation>Specifies the Windows-1253 character encoding scheme, for Greek.</xs:documentation>
2834
+ </xs:annotation>
2835
+ </xs:enumeration>
2836
+ <xs:enumeration value="Windows-1254">
2837
+ <xs:annotation>
2838
+ <xs:documentation>Specifies the Windows-1254 character encoding scheme, for Turkish.</xs:documentation>
2839
+ </xs:annotation>
2840
+ </xs:enumeration>
2841
+ <xs:enumeration value="Windows-1255">
2842
+ <xs:annotation>
2843
+ <xs:documentation>Specifies the Windows-1255 character encoding scheme, for Hebrew.</xs:documentation>
2844
+ </xs:annotation>
2845
+ </xs:enumeration>
2846
+ <xs:enumeration value="Windows-1256">
2847
+ <xs:annotation>
2848
+ <xs:documentation>Specifies the Windows-1256 character encoding scheme, for Arabic.</xs:documentation>
2849
+ </xs:annotation>
2850
+ </xs:enumeration>
2851
+ <xs:enumeration value="Windows-1257">
2852
+ <xs:annotation>
2853
+ <xs:documentation>Specifies the Windows-1257 character encoding scheme, for Baltic languages.</xs:documentation>
2854
+ </xs:annotation>
2855
+ </xs:enumeration>
2856
+ <xs:enumeration value="Windows-1258">
2857
+ <xs:annotation>
2858
+ <xs:documentation>Specifies the Windows-1258 character encoding scheme, for Vietnamese.</xs:documentation>
2859
+ </xs:annotation>
2860
+ </xs:enumeration>
2861
+ </xs:restriction>
2862
+ </xs:simpleType>
2863
+ <xs:complexType name="InformationSourceTypeVocab-1.0">
2864
+ <xs:annotation>
2865
+ <xs:documentation>The InformationSourceTypeVocab is the default CybOX vocabulary for information source types, used in the MeasureSourceType/Information_Source_Type element in CybOX Common.</xs:documentation>
2866
+ </xs:annotation>
2867
+ <xs:simpleContent>
2868
+ <xs:restriction base="cyboxCommon:ControlledVocabularyStringType">
2869
+ <xs:simpleType>
2870
+ <xs:union memberTypes="cyboxVocabs:InformationSourceTypeEnum-1.0"/>
2871
+ </xs:simpleType>
2872
+ <xs:attribute name="vocab_name" type="xs:string" use="optional" fixed="CybOX Default Information Source Types"/>
2873
+ <xs:attribute name="vocab_reference" type="xs:anyURI" use="optional" fixed="http://cybox.mitre.org/XMLSchema/default_vocabularies/2.0/cybox_default_vocabularies.xsd#InformationSourceTypeVocab-1.0"/>
2874
+ </xs:restriction>
2875
+ </xs:simpleContent>
2876
+ </xs:complexType>
2877
+ <xs:simpleType name="InformationSourceTypeEnum-1.0">
2878
+ <xs:annotation>
2879
+ <xs:documentation>The InformationSourceTypeEnum is a (non-exhaustive) enumeration of cyber observation information source types.</xs:documentation>
2880
+ </xs:annotation>
2881
+ <xs:restriction base="xs:string">
2882
+ <xs:enumeration value="Comm Logs">
2883
+ <xs:annotation>
2884
+ <xs:documentation>The Comm Logs value specifies a cyber observation coming from communications logs.</xs:documentation>
2885
+ </xs:annotation>
2886
+ </xs:enumeration>
2887
+ <xs:enumeration value="Application Logs">
2888
+ <xs:annotation>
2889
+ <xs:documentation>The Application Logs value specifies a cyber observation coming from application logs.</xs:documentation>
2890
+ </xs:annotation>
2891
+ </xs:enumeration>
2892
+ <xs:enumeration value="Web Logs">
2893
+ <xs:annotation>
2894
+ <xs:documentation>The Web Logs value specifies a cyber observation coming from web logs.</xs:documentation>
2895
+ </xs:annotation>
2896
+ </xs:enumeration>
2897
+ <xs:enumeration value="DBMS Log">
2898
+ <xs:annotation>
2899
+ <xs:documentation>The DBMS Log value specifies a cyber observation coming from the Database Management System log.</xs:documentation>
2900
+ </xs:annotation>
2901
+ </xs:enumeration>
2902
+ <xs:enumeration value="OS/Device Driver APIs">
2903
+ <xs:annotation>
2904
+ <xs:documentation>The OS/Device Driver APIs value specifies a cyber observation coming from OS/Device Driver APIs.</xs:documentation>
2905
+ </xs:annotation>
2906
+ </xs:enumeration>
2907
+ <xs:enumeration value="Frameworks">
2908
+ <xs:annotation>
2909
+ <xs:documentation>The Frameworks value specifies a cyber observation coming from Frameworks.</xs:documentation>
2910
+ </xs:annotation>
2911
+ </xs:enumeration>
2912
+ <xs:enumeration value="VM Hypervisor">
2913
+ <xs:annotation>
2914
+ <xs:documentation>The VM Hypervisor value specifies a cyber observation coming from the VM hypervisor data.</xs:documentation>
2915
+ </xs:annotation>
2916
+ </xs:enumeration>
2917
+ <xs:enumeration value="TPM">
2918
+ <xs:annotation>
2919
+ <xs:documentation>The TPM value specifies a cyber observation made using TPM output data.</xs:documentation>
2920
+ </xs:annotation>
2921
+ </xs:enumeration>
2922
+ <xs:enumeration value="Application Framework">
2923
+ <xs:annotation>
2924
+ <xs:documentation>The Application Framework value specifies a cyber observation coming from an application framework.</xs:documentation>
2925
+ </xs:annotation>
2926
+ </xs:enumeration>
2927
+ <xs:enumeration value="Help Desk">
2928
+ <xs:annotation>
2929
+ <xs:documentation>The Help Desk value specifies a cyber observation coming from an human or automated help desk.</xs:documentation>
2930
+ </xs:annotation>
2931
+ </xs:enumeration>
2932
+ <xs:enumeration value="Incident Management">
2933
+ <xs:annotation>
2934
+ <xs:documentation>The Incident Management value specifies a cyber observation made using information provided by Incident Management services.</xs:documentation>
2935
+ </xs:annotation>
2936
+ </xs:enumeration>
2937
+ <xs:enumeration value="IAVM">
2938
+ <xs:annotation>
2939
+ <xs:documentation>The IAVM value specifies a cyber observation made using information provided by Information Assurance Vulnerability Management mechanisms.</xs:documentation>
2940
+ </xs:annotation>
2941
+ </xs:enumeration>
2942
+ </xs:restriction>
2943
+ </xs:simpleType>
2944
+ <xs:complexType name="HashNameVocab-1.0">
2945
+ <xs:annotation>
2946
+ <xs:documentation>The HashNameVocab is the default CybOX vocabulary for hashing algorithm names, used in the HashType/Type element in CybOX Common.</xs:documentation>
2947
+ </xs:annotation>
2948
+ <xs:simpleContent>
2949
+ <xs:restriction base="cyboxCommon:ControlledVocabularyStringType">
2950
+ <xs:simpleType>
2951
+ <xs:union memberTypes="cyboxVocabs:HashNameEnum-1.0"/>
2952
+ </xs:simpleType>
2953
+ <xs:attribute name="vocab_name" type="xs:string" use="optional" fixed="CybOX Default Hashing Algorithm Names"/>
2954
+ <xs:attribute name="vocab_reference" type="xs:anyURI" use="optional" fixed="http://cybox.mitre.org/XMLSchema/default_vocabularies/2.0/cybox_default_vocabularies.xsd#HashNameVocab-1.0"/>
2955
+ </xs:restriction>
2956
+ </xs:simpleContent>
2957
+ </xs:complexType>
2958
+ <xs:simpleType name="HashNameEnum-1.0">
2959
+ <xs:annotation>
2960
+ <xs:documentation>HashNameEnum is a (non-exhaustive) enumeration of hashing algorithm names.</xs:documentation>
2961
+ </xs:annotation>
2962
+ <xs:restriction base="xs:string">
2963
+ <xs:enumeration value="MD5">
2964
+ <xs:annotation>
2965
+ <xs:documentation>The MD5 value specifies the MD5 hashing algorithm.</xs:documentation>
2966
+ </xs:annotation>
2967
+ </xs:enumeration>
2968
+ <xs:enumeration value="MD6">
2969
+ <xs:annotation>
2970
+ <xs:documentation>The MD6 value specifies the MD6 hashing algorithm.</xs:documentation>
2971
+ </xs:annotation>
2972
+ </xs:enumeration>
2973
+ <xs:enumeration value="SHA1">
2974
+ <xs:annotation>
2975
+ <xs:documentation>The SHA1 value specifies the SHA1 hashing algorithm.</xs:documentation>
2976
+ </xs:annotation>
2977
+ </xs:enumeration>
2978
+ <xs:enumeration value="SHA224">
2979
+ <xs:annotation>
2980
+ <xs:documentation>The SHA24 value specifies the SHA224 hashing algorithm.</xs:documentation>
2981
+ </xs:annotation>
2982
+ </xs:enumeration>
2983
+ <xs:enumeration value="SHA256">
2984
+ <xs:annotation>
2985
+ <xs:documentation>The SHA256 value specifies the SHA256 hashing algorithm.</xs:documentation>
2986
+ </xs:annotation>
2987
+ </xs:enumeration>
2988
+ <xs:enumeration value="SHA384">
2989
+ <xs:annotation>
2990
+ <xs:documentation>The SHA384 value specifies the SHA384 hashing algorithm.</xs:documentation>
2991
+ </xs:annotation>
2992
+ </xs:enumeration>
2993
+ <xs:enumeration value="SHA512">
2994
+ <xs:annotation>
2995
+ <xs:documentation>The SHA512 value specifies the SHA512 hashing algorithm.</xs:documentation>
2996
+ </xs:annotation>
2997
+ </xs:enumeration>
2998
+ <xs:enumeration value="SSDEEP">
2999
+ <xs:annotation>
3000
+ <xs:documentation>The SSDEEP value specifies the SSDEEP hashing algorithm.</xs:documentation>
3001
+ </xs:annotation>
3002
+ </xs:enumeration>
3003
+ </xs:restriction>
3004
+ </xs:simpleType>
3005
+ <xs:complexType name="ToolTypeVocab-1.0">
3006
+ <xs:annotation>
3007
+ <xs:documentation>The ToolTypeVocab is the default CybOX vocabulary for tool types, used in the MeasureSourceType/Tool_Type element in CybOX Common.</xs:documentation>
3008
+ </xs:annotation>
3009
+ <xs:simpleContent>
3010
+ <xs:restriction base="cyboxCommon:ControlledVocabularyStringType">
3011
+ <xs:simpleType>
3012
+ <xs:union memberTypes="cyboxVocabs:ToolTypeEnum-1.0"/>
3013
+ </xs:simpleType>
3014
+ <xs:attribute name="vocab_name" type="xs:string" use="optional" fixed="CybOX Default Tool Types"/>
3015
+ <xs:attribute name="vocab_reference" type="xs:anyURI" use="optional" fixed="http://cybox.mitre.org/XMLSchema/default_vocabularies/2.0/cybox_default_vocabularies.xsd#ToolTypeVocab-1.0"/>
3016
+ </xs:restriction>
3017
+ </xs:simpleContent>
3018
+ </xs:complexType>
3019
+ <xs:simpleType name="ToolTypeEnum-1.0">
3020
+ <xs:annotation>
3021
+ <xs:documentation>The ToolTypeEnum is a (non-exhaustive) enumeration of cyber observation source tool types.</xs:documentation>
3022
+ </xs:annotation>
3023
+ <xs:restriction base="xs:string">
3024
+ <xs:enumeration value="NIDS">
3025
+ <xs:annotation>
3026
+ <xs:documentation>The NIDS value specifies the Network Intrusion Detection System tool.</xs:documentation>
3027
+ </xs:annotation>
3028
+ </xs:enumeration>
3029
+ <xs:enumeration value="NIPS">
3030
+ <xs:annotation>
3031
+ <xs:documentation>The NIPS value specifies the Network Intrusion Protection System tool.</xs:documentation>
3032
+ </xs:annotation>
3033
+ </xs:enumeration>
3034
+ <xs:enumeration value="HIDS">
3035
+ <xs:annotation>
3036
+ <xs:documentation>The HIDS value specifies the Host-based Intrusion Detection System tool.</xs:documentation>
3037
+ </xs:annotation>
3038
+ </xs:enumeration>
3039
+ <xs:enumeration value="HIPS">
3040
+ <xs:annotation>
3041
+ <xs:documentation>The HIPS value specifies the Host-based Intrusion Protection System tool.</xs:documentation>
3042
+ </xs:annotation>
3043
+ </xs:enumeration>
3044
+ <xs:enumeration value="Firewall">
3045
+ <xs:annotation>
3046
+ <xs:documentation>The Firewall value specifies a cyber observation made using a firewall.</xs:documentation>
3047
+ </xs:annotation>
3048
+ </xs:enumeration>
3049
+ <xs:enumeration value="Router">
3050
+ <xs:annotation>
3051
+ <xs:documentation>The Router value specifies a cyber observation made using a router.</xs:documentation>
3052
+ </xs:annotation>
3053
+ </xs:enumeration>
3054
+ <xs:enumeration value="Proxy">
3055
+ <xs:annotation>
3056
+ <xs:documentation>The Proxy value specifies a cyber observation made using a network proxy.</xs:documentation>
3057
+ </xs:annotation>
3058
+ </xs:enumeration>
3059
+ <xs:enumeration value="Gateway">
3060
+ <xs:annotation>
3061
+ <xs:documentation>The Gateway value specifies a cyber observation made using a network gateway.</xs:documentation>
3062
+ </xs:annotation>
3063
+ </xs:enumeration>
3064
+ <xs:enumeration value="SNMP/MIBs">
3065
+ <xs:annotation>
3066
+ <xs:documentation>The SNMP/MIBs value specifies a cyber observation made using the Simple Network Management Protocol or via the Management Information Bases.</xs:documentation>
3067
+ </xs:annotation>
3068
+ </xs:enumeration>
3069
+ <xs:enumeration value="A/V">
3070
+ <xs:annotation>
3071
+ <xs:documentation>The A/V value specifies a cyber observation made using Anti-Virus tools and/or software.</xs:documentation>
3072
+ </xs:annotation>
3073
+ </xs:enumeration>
3074
+ <xs:enumeration value="DBMS Monitor">
3075
+ <xs:annotation>
3076
+ <xs:documentation>The DBMS value specifies a cyber observation made using a Database Management System monitor.</xs:documentation>
3077
+ </xs:annotation>
3078
+ </xs:enumeration>
3079
+ <xs:enumeration value="Vulnerability Scanner">
3080
+ <xs:annotation>
3081
+ <xs:documentation>The Vulnerability Scanner value specifies a cyber observation made using a vulnerability scanner.</xs:documentation>
3082
+ </xs:annotation>
3083
+ </xs:enumeration>
3084
+ <xs:enumeration value="Configuration Scanner">
3085
+ <xs:annotation>
3086
+ <xs:documentation>The Configuration Scanner value specifies a cyber observation made using a configuration scanner.</xs:documentation>
3087
+ </xs:annotation>
3088
+ </xs:enumeration>
3089
+ <xs:enumeration value="Asset Scanner">
3090
+ <xs:annotation>
3091
+ <xs:documentation>The Asset Scanner value specifies a cyber observation made using an asset scanner.</xs:documentation>
3092
+ </xs:annotation>
3093
+ </xs:enumeration>
3094
+ <xs:enumeration value="SIM">
3095
+ <xs:annotation>
3096
+ <xs:documentation>The SIM value specifies a cyber observation made using Security Information Management tools.</xs:documentation>
3097
+ </xs:annotation>
3098
+ </xs:enumeration>
3099
+ <xs:enumeration value="SEM">
3100
+ <xs:annotation>
3101
+ <xs:documentation>The SEM value specifies a cyber observation made using Security Event Management tools.</xs:documentation>
3102
+ </xs:annotation>
3103
+ </xs:enumeration>
3104
+ </xs:restriction>
3105
+ </xs:simpleType>
3106
+ </xs:schema>