metasploit-model 0.24.1.pre.semantic.pre.versioning.pre.2.pre.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (380) hide show
  1. checksums.yaml +15 -0
  2. data/.coveralls.yml +1 -0
  3. data/.gitignore +27 -0
  4. data/.rspec +4 -0
  5. data/.simplecov +38 -0
  6. data/.travis.yml +6 -0
  7. data/.yardopts +5 -0
  8. data/Gemfile +43 -0
  9. data/LICENSE +27 -0
  10. data/README.md +33 -0
  11. data/Rakefile +52 -0
  12. data/app/models/metasploit/model/association/reflection.rb +46 -0
  13. data/app/models/metasploit/model/module/ancestor/spec/template.rb +125 -0
  14. data/app/models/metasploit/model/module/class/spec/template.rb +92 -0
  15. data/app/models/metasploit/model/module/instance/spec/template.rb +97 -0
  16. data/app/models/metasploit/model/search/group/base.rb +21 -0
  17. data/app/models/metasploit/model/search/group/intersection.rb +4 -0
  18. data/app/models/metasploit/model/search/group/union.rb +4 -0
  19. data/app/models/metasploit/model/search/operation/base.rb +39 -0
  20. data/app/models/metasploit/model/search/operation/boolean.rb +36 -0
  21. data/app/models/metasploit/model/search/operation/date.rb +37 -0
  22. data/app/models/metasploit/model/search/operation/integer.rb +14 -0
  23. data/app/models/metasploit/model/search/operation/null.rb +26 -0
  24. data/app/models/metasploit/model/search/operation/set.rb +34 -0
  25. data/app/models/metasploit/model/search/operation/set/integer.rb +5 -0
  26. data/app/models/metasploit/model/search/operation/set/string.rb +5 -0
  27. data/app/models/metasploit/model/search/operation/string.rb +11 -0
  28. data/app/models/metasploit/model/search/operation/union.rb +59 -0
  29. data/app/models/metasploit/model/search/operator/association.rb +43 -0
  30. data/app/models/metasploit/model/search/operator/attribute.rb +60 -0
  31. data/app/models/metasploit/model/search/operator/base.rb +34 -0
  32. data/app/models/metasploit/model/search/operator/delegation.rb +40 -0
  33. data/app/models/metasploit/model/search/operator/deprecated/app.rb +27 -0
  34. data/app/models/metasploit/model/search/operator/deprecated/author.rb +33 -0
  35. data/app/models/metasploit/model/search/operator/deprecated/authority.rb +43 -0
  36. data/app/models/metasploit/model/search/operator/deprecated/platform.rb +45 -0
  37. data/app/models/metasploit/model/search/operator/deprecated/ref.rb +50 -0
  38. data/app/models/metasploit/model/search/operator/deprecated/text.rb +32 -0
  39. data/app/models/metasploit/model/search/operator/null.rb +44 -0
  40. data/app/models/metasploit/model/search/operator/single.rb +98 -0
  41. data/app/models/metasploit/model/search/operator/union.rb +33 -0
  42. data/app/models/metasploit/model/search/query.rb +171 -0
  43. data/app/models/metasploit/model/spec/template.rb +273 -0
  44. data/app/models/metasploit/model/visitation/visitor.rb +69 -0
  45. data/app/validators/derivation_validator.rb +17 -0
  46. data/app/validators/dynamic_length_validator.rb +45 -0
  47. data/app/validators/ip_format_validator.rb +31 -0
  48. data/app/validators/nil_validator.rb +16 -0
  49. data/app/validators/parameters_validator.rb +147 -0
  50. data/app/validators/password_is_strong_validator.rb +115 -0
  51. data/config/locales/en.yml +209 -0
  52. data/lib/metasploit/model.rb +38 -0
  53. data/lib/metasploit/model/architecture.rb +346 -0
  54. data/lib/metasploit/model/association.rb +49 -0
  55. data/lib/metasploit/model/association/error.rb +40 -0
  56. data/lib/metasploit/model/author.rb +58 -0
  57. data/lib/metasploit/model/authority.rb +134 -0
  58. data/lib/metasploit/model/authority/bid.rb +10 -0
  59. data/lib/metasploit/model/authority/cve.rb +10 -0
  60. data/lib/metasploit/model/authority/msb.rb +10 -0
  61. data/lib/metasploit/model/authority/osvdb.rb +10 -0
  62. data/lib/metasploit/model/authority/pmasa.rb +10 -0
  63. data/lib/metasploit/model/authority/secunia.rb +10 -0
  64. data/lib/metasploit/model/authority/us_cert_vu.rb +10 -0
  65. data/lib/metasploit/model/authority/waraxe.rb +31 -0
  66. data/lib/metasploit/model/authority/zdi.rb +10 -0
  67. data/lib/metasploit/model/base.rb +25 -0
  68. data/lib/metasploit/model/configuration.rb +72 -0
  69. data/lib/metasploit/model/configuration/autoload.rb +109 -0
  70. data/lib/metasploit/model/configuration/child.rb +12 -0
  71. data/lib/metasploit/model/configuration/error.rb +4 -0
  72. data/lib/metasploit/model/configuration/i18n.rb +54 -0
  73. data/lib/metasploit/model/configuration/parent.rb +50 -0
  74. data/lib/metasploit/model/configured.rb +46 -0
  75. data/lib/metasploit/model/derivation.rb +110 -0
  76. data/lib/metasploit/model/derivation/full_name.rb +25 -0
  77. data/lib/metasploit/model/email_address.rb +128 -0
  78. data/lib/metasploit/model/engine.rb +34 -0
  79. data/lib/metasploit/model/error.rb +7 -0
  80. data/lib/metasploit/model/file.rb +49 -0
  81. data/lib/metasploit/model/invalid.rb +17 -0
  82. data/lib/metasploit/model/module.rb +8 -0
  83. data/lib/metasploit/model/module/action.rb +58 -0
  84. data/lib/metasploit/model/module/ancestor.rb +494 -0
  85. data/lib/metasploit/model/module/architecture.rb +40 -0
  86. data/lib/metasploit/model/module/author.rb +47 -0
  87. data/lib/metasploit/model/module/class.rb +406 -0
  88. data/lib/metasploit/model/module/handler.rb +35 -0
  89. data/lib/metasploit/model/module/instance.rb +626 -0
  90. data/lib/metasploit/model/module/path.rb +165 -0
  91. data/lib/metasploit/model/module/platform.rb +38 -0
  92. data/lib/metasploit/model/module/rank.rb +91 -0
  93. data/lib/metasploit/model/module/reference.rb +38 -0
  94. data/lib/metasploit/model/module/stance.rb +22 -0
  95. data/lib/metasploit/model/module/target.rb +80 -0
  96. data/lib/metasploit/model/module/target/architecture.rb +42 -0
  97. data/lib/metasploit/model/module/target/platform.rb +42 -0
  98. data/lib/metasploit/model/module/type.rb +44 -0
  99. data/lib/metasploit/model/nilify_blanks.rb +53 -0
  100. data/lib/metasploit/model/platform.rb +250 -0
  101. data/lib/metasploit/model/real_pathname.rb +18 -0
  102. data/lib/metasploit/model/reference.rb +108 -0
  103. data/lib/metasploit/model/search.rb +63 -0
  104. data/lib/metasploit/model/search/association.rb +32 -0
  105. data/lib/metasploit/model/search/attribute.rb +51 -0
  106. data/lib/metasploit/model/search/operation.rb +31 -0
  107. data/lib/metasploit/model/search/operation/integer/value.rb +33 -0
  108. data/lib/metasploit/model/search/operation/string/value.rb +14 -0
  109. data/lib/metasploit/model/search/operator.rb +10 -0
  110. data/lib/metasploit/model/search/operator/help.rb +47 -0
  111. data/lib/metasploit/model/search/with.rb +40 -0
  112. data/lib/metasploit/model/spec.rb +140 -0
  113. data/lib/metasploit/model/spec/error.rb +9 -0
  114. data/lib/metasploit/model/spec/i18n_exception_handler.rb +19 -0
  115. data/lib/metasploit/model/spec/pathname_collision.rb +28 -0
  116. data/lib/metasploit/model/spec/template/write.rb +42 -0
  117. data/lib/metasploit/model/spec/temporary_pathname.rb +59 -0
  118. data/lib/metasploit/model/translation.rb +31 -0
  119. data/lib/metasploit/model/version.rb +33 -0
  120. data/lib/metasploit/model/visitation.rb +9 -0
  121. data/lib/metasploit/model/visitation/visit.rb +103 -0
  122. data/lib/tasks/yard.rake +30 -0
  123. data/metasploit-model.gemspec +39 -0
  124. data/script/rails +9 -0
  125. data/spec/app/models/metasploit/model/association/reflection_spec.rb +48 -0
  126. data/spec/app/models/metasploit/model/module/ancestor/spec/template_spec.rb +174 -0
  127. data/spec/app/models/metasploit/model/module/class/spec/template_spec.rb +222 -0
  128. data/spec/app/models/metasploit/model/module/instance/spec/template_spec.rb +201 -0
  129. data/spec/app/models/metasploit/model/search/group/base_spec.rb +5 -0
  130. data/spec/app/models/metasploit/model/search/group/intersection_spec.rb +5 -0
  131. data/spec/app/models/metasploit/model/search/group/union_spec.rb +5 -0
  132. data/spec/app/models/metasploit/model/search/operation/base_spec.rb +70 -0
  133. data/spec/app/models/metasploit/model/search/operation/boolean_spec.rb +56 -0
  134. data/spec/app/models/metasploit/model/search/operation/date_spec.rb +89 -0
  135. data/spec/app/models/metasploit/model/search/operation/integer_spec.rb +9 -0
  136. data/spec/app/models/metasploit/model/search/operation/null_spec.rb +64 -0
  137. data/spec/app/models/metasploit/model/search/operation/set/integer_spec.rb +7 -0
  138. data/spec/app/models/metasploit/model/search/operation/set/string_spec.rb +7 -0
  139. data/spec/app/models/metasploit/model/search/operation/set_spec.rb +126 -0
  140. data/spec/app/models/metasploit/model/search/operation/string_spec.rb +9 -0
  141. data/spec/app/models/metasploit/model/search/operation/union_spec.rb +124 -0
  142. data/spec/app/models/metasploit/model/search/operator/association_spec.rb +108 -0
  143. data/spec/app/models/metasploit/model/search/operator/attribute_spec.rb +104 -0
  144. data/spec/app/models/metasploit/model/search/operator/base_spec.rb +34 -0
  145. data/spec/app/models/metasploit/model/search/operator/delegation_spec.rb +108 -0
  146. data/spec/app/models/metasploit/model/search/operator/deprecated/app_spec.rb +62 -0
  147. data/spec/app/models/metasploit/model/search/operator/deprecated/author_spec.rb +161 -0
  148. data/spec/app/models/metasploit/model/search/operator/deprecated/authority_spec.rb +123 -0
  149. data/spec/app/models/metasploit/model/search/operator/deprecated/platform_spec.rb +112 -0
  150. data/spec/app/models/metasploit/model/search/operator/deprecated/ref_spec.rb +327 -0
  151. data/spec/app/models/metasploit/model/search/operator/deprecated/text_spec.rb +357 -0
  152. data/spec/app/models/metasploit/model/search/operator/null_spec.rb +41 -0
  153. data/spec/app/models/metasploit/model/search/operator/single_spec.rb +327 -0
  154. data/spec/app/models/metasploit/model/search/operator/union_spec.rb +92 -0
  155. data/spec/app/models/metasploit/model/search/query_spec.rb +742 -0
  156. data/spec/app/models/metasploit/model/spec/template_spec.rb +23 -0
  157. data/spec/app/models/metasploit/model/visitation/visitor_spec.rb +45 -0
  158. data/spec/app/validators/derivation_validator_spec.rb +92 -0
  159. data/spec/app/validators/dynamic_length_validator_spec.rb +293 -0
  160. data/spec/app/validators/ip_format_validator_spec.rb +124 -0
  161. data/spec/app/validators/nil_validator_spec.rb +69 -0
  162. data/spec/app/validators/parameters_validator_spec.rb +342 -0
  163. data/spec/app/validators/password_is_strong_validator_spec.rb +250 -0
  164. data/spec/dummy/Rakefile +7 -0
  165. data/spec/dummy/app/assets/javascripts/application.js +15 -0
  166. data/spec/dummy/app/assets/stylesheets/application.css +13 -0
  167. data/spec/dummy/app/controllers/application_controller.rb +3 -0
  168. data/spec/dummy/app/helpers/application_helper.rb +2 -0
  169. data/spec/dummy/app/mailers/.gitkeep +0 -0
  170. data/spec/dummy/app/models/dummy/architecture.rb +92 -0
  171. data/spec/dummy/app/models/dummy/author.rb +15 -0
  172. data/spec/dummy/app/models/dummy/authority.rb +130 -0
  173. data/spec/dummy/app/models/dummy/email_address.rb +27 -0
  174. data/spec/dummy/app/models/dummy/module/action.rb +25 -0
  175. data/spec/dummy/app/models/dummy/module/ancestor.rb +67 -0
  176. data/spec/dummy/app/models/dummy/module/architecture.rb +19 -0
  177. data/spec/dummy/app/models/dummy/module/author.rb +28 -0
  178. data/spec/dummy/app/models/dummy/module/class.rb +69 -0
  179. data/spec/dummy/app/models/dummy/module/instance.rb +209 -0
  180. data/spec/dummy/app/models/dummy/module/path.rb +64 -0
  181. data/spec/dummy/app/models/dummy/module/platform.rb +19 -0
  182. data/spec/dummy/app/models/dummy/module/rank.rb +44 -0
  183. data/spec/dummy/app/models/dummy/module/reference.rb +19 -0
  184. data/spec/dummy/app/models/dummy/module/target.rb +62 -0
  185. data/spec/dummy/app/models/dummy/module/target/architecture.rb +19 -0
  186. data/spec/dummy/app/models/dummy/module/target/platform.rb +19 -0
  187. data/spec/dummy/app/models/dummy/platform.rb +58 -0
  188. data/spec/dummy/app/models/dummy/reference.rb +31 -0
  189. data/spec/dummy/app/views/layouts/application.html.erb +14 -0
  190. data/spec/dummy/config.ru +4 -0
  191. data/spec/dummy/config/application.rb +43 -0
  192. data/spec/dummy/config/boot.rb +10 -0
  193. data/spec/dummy/config/environment.rb +5 -0
  194. data/spec/dummy/config/environments/development.rb +27 -0
  195. data/spec/dummy/config/environments/production.rb +63 -0
  196. data/spec/dummy/config/environments/test.rb +29 -0
  197. data/spec/dummy/config/initializers/backtrace_silencers.rb +7 -0
  198. data/spec/dummy/config/initializers/inflections.rb +15 -0
  199. data/spec/dummy/config/initializers/mime_types.rb +5 -0
  200. data/spec/dummy/config/initializers/secret_token.rb +7 -0
  201. data/spec/dummy/config/initializers/session_store.rb +3 -0
  202. data/spec/dummy/config/initializers/wrap_parameters.rb +9 -0
  203. data/spec/dummy/config/locales/en.yml +1 -0
  204. data/spec/dummy/config/routes.rb +2 -0
  205. data/spec/dummy/db/schema.rb +707 -0
  206. data/spec/dummy/lib/assets/.gitkeep +0 -0
  207. data/spec/dummy/log/.gitkeep +0 -0
  208. data/spec/dummy/public/404.html +26 -0
  209. data/spec/dummy/public/422.html +26 -0
  210. data/spec/dummy/public/500.html +25 -0
  211. data/spec/dummy/public/favicon.ico +0 -0
  212. data/spec/dummy/script/rails +6 -0
  213. data/spec/dummy/spec/factories/dummy/architectures.rb +13 -0
  214. data/spec/dummy/spec/factories/dummy/authorities.rb +32 -0
  215. data/spec/dummy/spec/factories/dummy/authors.rb +8 -0
  216. data/spec/dummy/spec/factories/dummy/email_addresses.rb +8 -0
  217. data/spec/dummy/spec/factories/dummy/module/actions.rb +13 -0
  218. data/spec/dummy/spec/factories/dummy/module/ancestors.rb +45 -0
  219. data/spec/dummy/spec/factories/dummy/module/architectures.rb +35 -0
  220. data/spec/dummy/spec/factories/dummy/module/authors.rb +10 -0
  221. data/spec/dummy/spec/factories/dummy/module/classes.rb +40 -0
  222. data/spec/dummy/spec/factories/dummy/module/instances.rb +86 -0
  223. data/spec/dummy/spec/factories/dummy/module/paths.rb +16 -0
  224. data/spec/dummy/spec/factories/dummy/module/platforms.rb +35 -0
  225. data/spec/dummy/spec/factories/dummy/module/ranks.rb +14 -0
  226. data/spec/dummy/spec/factories/dummy/module/references.rb +17 -0
  227. data/spec/dummy/spec/factories/dummy/module/target/architectures.rb +40 -0
  228. data/spec/dummy/spec/factories/dummy/module/target/platforms.rb +41 -0
  229. data/spec/dummy/spec/factories/dummy/module/targets.rb +46 -0
  230. data/spec/dummy/spec/factories/dummy/platforms.rb +3 -0
  231. data/spec/dummy/spec/factories/dummy/references.rb +26 -0
  232. data/spec/factories/metasploit/model/architectures.rb +6 -0
  233. data/spec/factories/metasploit/model/association/reflections.rb +9 -0
  234. data/spec/factories/metasploit/model/authorities.rb +28 -0
  235. data/spec/factories/metasploit/model/authors.rb +9 -0
  236. data/spec/factories/metasploit/model/bases.rb +10 -0
  237. data/spec/factories/metasploit/model/email_addresses.rb +14 -0
  238. data/spec/factories/metasploit/model/module/actions.rb +9 -0
  239. data/spec/factories/metasploit/model/module/ancestors.rb +180 -0
  240. data/spec/factories/metasploit/model/module/architectures.rb +15 -0
  241. data/spec/factories/metasploit/model/module/classes.rb +47 -0
  242. data/spec/factories/metasploit/model/module/handlers.rb +3 -0
  243. data/spec/factories/metasploit/model/module/instances.rb +83 -0
  244. data/spec/factories/metasploit/model/module/paths.rb +51 -0
  245. data/spec/factories/metasploit/model/module/platforms.rb +15 -0
  246. data/spec/factories/metasploit/model/module/ranks.rb +9 -0
  247. data/spec/factories/metasploit/model/module/references.rb +11 -0
  248. data/spec/factories/metasploit/model/module/stances.rb +3 -0
  249. data/spec/factories/metasploit/model/module/targets.rb +22 -0
  250. data/spec/factories/metasploit/model/module/types.rb +5 -0
  251. data/spec/factories/metasploit/model/references.rb +88 -0
  252. data/spec/factories/metasploit/model/search/operator/associations.rb +5 -0
  253. data/spec/factories/metasploit/model/search/operator/attributes.rb +7 -0
  254. data/spec/factories/metasploit/model/search/operator/bases.rb +5 -0
  255. data/spec/lib/metasploit/model/architecture_spec.rb +52 -0
  256. data/spec/lib/metasploit/model/association/error_spec.rb +48 -0
  257. data/spec/lib/metasploit/model/association_spec.rb +145 -0
  258. data/spec/lib/metasploit/model/author_spec.rb +6 -0
  259. data/spec/lib/metasploit/model/authority/bid_spec.rb +17 -0
  260. data/spec/lib/metasploit/model/authority/cve_spec.rb +17 -0
  261. data/spec/lib/metasploit/model/authority/msb_spec.rb +17 -0
  262. data/spec/lib/metasploit/model/authority/osvdb_spec.rb +17 -0
  263. data/spec/lib/metasploit/model/authority/pmasa_spec.rb +17 -0
  264. data/spec/lib/metasploit/model/authority/secunia_spec.rb +17 -0
  265. data/spec/lib/metasploit/model/authority/us_cert_vu_spec.rb +17 -0
  266. data/spec/lib/metasploit/model/authority/waraxe_spec.rb +51 -0
  267. data/spec/lib/metasploit/model/authority/zdi_spec.rb +21 -0
  268. data/spec/lib/metasploit/model/authority_spec.rb +10 -0
  269. data/spec/lib/metasploit/model/base_spec.rb +58 -0
  270. data/spec/lib/metasploit/model/configuration/autoload_spec.rb +165 -0
  271. data/spec/lib/metasploit/model/configuration/child_spec.rb +24 -0
  272. data/spec/lib/metasploit/model/configuration/error_spec.rb +5 -0
  273. data/spec/lib/metasploit/model/configuration/i18n_spec.rb +103 -0
  274. data/spec/lib/metasploit/model/configuration_spec.rb +106 -0
  275. data/spec/lib/metasploit/model/configured_spec.rb +41 -0
  276. data/spec/lib/metasploit/model/derivation/full_name_spec.rb +75 -0
  277. data/spec/lib/metasploit/model/derivation_spec.rb +217 -0
  278. data/spec/lib/metasploit/model/email_address_spec.rb +19 -0
  279. data/spec/lib/metasploit/model/engine_spec.rb +84 -0
  280. data/spec/lib/metasploit/model/file_spec.rb +43 -0
  281. data/spec/lib/metasploit/model/invalid_spec.rb +54 -0
  282. data/spec/lib/metasploit/model/module/action_spec.rb +6 -0
  283. data/spec/lib/metasploit/model/module/ancestor_spec.rb +6 -0
  284. data/spec/lib/metasploit/model/module/architecture_spec.rb +9 -0
  285. data/spec/lib/metasploit/model/module/author_spec.rb +6 -0
  286. data/spec/lib/metasploit/model/module/class_spec.rb +19 -0
  287. data/spec/lib/metasploit/model/module/handler_spec.rb +61 -0
  288. data/spec/lib/metasploit/model/module/instance_spec.rb +183 -0
  289. data/spec/lib/metasploit/model/module/path_spec.rb +6 -0
  290. data/spec/lib/metasploit/model/module/platform_spec.rb +9 -0
  291. data/spec/lib/metasploit/model/module/rank_spec.rb +29 -0
  292. data/spec/lib/metasploit/model/module/reference_spec.rb +9 -0
  293. data/spec/lib/metasploit/model/module/stance_spec.rb +30 -0
  294. data/spec/lib/metasploit/model/module/target/architecture_spec.rb +9 -0
  295. data/spec/lib/metasploit/model/module/target/platform_spec.rb +9 -0
  296. data/spec/lib/metasploit/model/module/target_spec.rb +9 -0
  297. data/spec/lib/metasploit/model/module/type_spec.rb +125 -0
  298. data/spec/lib/metasploit/model/nilify_blanks_spec.rb +156 -0
  299. data/spec/lib/metasploit/model/platform_spec.rb +100 -0
  300. data/spec/lib/metasploit/model/reference_spec.rb +21 -0
  301. data/spec/lib/metasploit/model/search/association_spec.rb +33 -0
  302. data/spec/lib/metasploit/model/search/attribute_spec.rb +99 -0
  303. data/spec/lib/metasploit/model/search/operation/integer/value_spec.rb +20 -0
  304. data/spec/lib/metasploit/model/search/operation/string/value_spec.rb +20 -0
  305. data/spec/lib/metasploit/model/search/operation_spec.rb +144 -0
  306. data/spec/lib/metasploit/model/search/operator/help_spec.rb +41 -0
  307. data/spec/lib/metasploit/model/search/with_spec.rb +81 -0
  308. data/spec/lib/metasploit/model/search_spec.rb +230 -0
  309. data/spec/lib/metasploit/model/spec/error_spec.rb +5 -0
  310. data/spec/lib/metasploit/model/spec/i18n_exception_handler_spec.rb +42 -0
  311. data/spec/lib/metasploit/model/spec/pathname_collision_spec.rb +55 -0
  312. data/spec/lib/metasploit/model/spec_spec.rb +114 -0
  313. data/spec/lib/metasploit/model/translation_spec.rb +82 -0
  314. data/spec/lib/metasploit/model/version_spec.rb +141 -0
  315. data/spec/lib/metasploit/model/visitation/visit_spec.rb +316 -0
  316. data/spec/lib/metasploit/model_spec.rb +68 -0
  317. data/spec/spec_helper.rb +48 -0
  318. data/spec/support/shared/contexts/metasploit/model/configuration.rb +11 -0
  319. data/spec/support/shared/contexts/metasploit/model/module/ancestor/contents/metasploit_module.rb +12 -0
  320. data/spec/support/shared/contexts/metasploit/model/module/ancestor/factory/contents.rb +10 -0
  321. data/spec/support/shared/contexts/metasploit/model/module/ancestor/factory/contents/metasploit_module.rb +15 -0
  322. data/spec/support/shared/contexts/metasploit/model/search/operator/union/children.rb +13 -0
  323. data/spec/support/shared/examples/derives.rb +115 -0
  324. data/spec/support/shared/examples/metasploit/model/architecture.rb +425 -0
  325. data/spec/support/shared/examples/metasploit/model/architecture/seed.rb +25 -0
  326. data/spec/support/shared/examples/metasploit/model/author.rb +27 -0
  327. data/spec/support/shared/examples/metasploit/model/authority.rb +124 -0
  328. data/spec/support/shared/examples/metasploit/model/authority/seed.rb +49 -0
  329. data/spec/support/shared/examples/metasploit/model/configuration/parent/child.rb +60 -0
  330. data/spec/support/shared/examples/metasploit/model/email_address.rb +220 -0
  331. data/spec/support/shared/examples/metasploit/model/module/action.rb +26 -0
  332. data/spec/support/shared/examples/metasploit/model/module/ancestor.rb +2004 -0
  333. data/spec/support/shared/examples/metasploit/model/module/ancestor/payload_factory.rb +63 -0
  334. data/spec/support/shared/examples/metasploit/model/module/architecture.rb +36 -0
  335. data/spec/support/shared/examples/metasploit/model/module/author.rb +29 -0
  336. data/spec/support/shared/examples/metasploit/model/module/class.rb +1514 -0
  337. data/spec/support/shared/examples/metasploit/model/module/handler.rb +21 -0
  338. data/spec/support/shared/examples/metasploit/model/module/instance.rb +1384 -0
  339. data/spec/support/shared/examples/metasploit/model/module/instance/class_methods.rb +537 -0
  340. data/spec/support/shared/examples/metasploit/model/module/instance/is_not_stanced_with_module_type.rb +22 -0
  341. data/spec/support/shared/examples/metasploit/model/module/instance/is_stanced_with_module_type.rb +38 -0
  342. data/spec/support/shared/examples/metasploit/model/module/instance/validates/dynamic_length_of.rb +131 -0
  343. data/spec/support/shared/examples/metasploit/model/module/path.rb +493 -0
  344. data/spec/support/shared/examples/metasploit/model/module/platform.rb +36 -0
  345. data/spec/support/shared/examples/metasploit/model/module/rank.rb +92 -0
  346. data/spec/support/shared/examples/metasploit/model/module/reference.rb +16 -0
  347. data/spec/support/shared/examples/metasploit/model/module/target.rb +29 -0
  348. data/spec/support/shared/examples/metasploit/model/module/target/architecture.rb +56 -0
  349. data/spec/support/shared/examples/metasploit/model/module/target/platform.rb +56 -0
  350. data/spec/support/shared/examples/metasploit/model/platform.rb +213 -0
  351. data/spec/support/shared/examples/metasploit/model/real_pathname.rb +29 -0
  352. data/spec/support/shared/examples/metasploit/model/reference.rb +410 -0
  353. data/spec/support/shared/examples/metasploit/model/search/operation/integer/value.rb +79 -0
  354. data/spec/support/shared/examples/metasploit/model/search/operation/string/value.rb +53 -0
  355. data/spec/support/shared/examples/metasploit/model/search/operator/help.rb +134 -0
  356. data/spec/support/shared/examples/metasploit/model/translation.rb +37 -0
  357. data/spec/support/shared/examples/search/query.rb +43 -0
  358. data/spec/support/shared/examples/search/query/metasploit/model/search/operator/deprecated/app.rb +44 -0
  359. data/spec/support/shared/examples/search/query/metasploit/model/search/operator/deprecated/authority.rb +60 -0
  360. data/spec/support/shared/examples/search_association.rb +13 -0
  361. data/spec/support/shared/examples/search_attribute.rb +27 -0
  362. data/spec/support/shared/examples/search_with.rb +36 -0
  363. data/spec/support/shared/matchers/allow_attribute.rb +17 -0
  364. data/spec/support/templates/metasploit/model/module/ancestors/_attributes.rb.erb +9 -0
  365. data/spec/support/templates/metasploit/model/module/ancestors/_methods.rb.erb +8 -0
  366. data/spec/support/templates/metasploit/model/module/ancestors/_validations.rb.erb +6 -0
  367. data/spec/support/templates/metasploit/model/module/ancestors/base.rb.erb +3 -0
  368. data/spec/support/templates/metasploit/model/module/ancestors/module_types/_auxiliary.rb.erb +1 -0
  369. data/spec/support/templates/metasploit/model/module/ancestors/module_types/_encoder.rb.erb +1 -0
  370. data/spec/support/templates/metasploit/model/module/ancestors/module_types/_exploit.rb.erb +1 -0
  371. data/spec/support/templates/metasploit/model/module/ancestors/module_types/_non_payload.rb.erb +5 -0
  372. data/spec/support/templates/metasploit/model/module/ancestors/module_types/_nop.rb.erb +1 -0
  373. data/spec/support/templates/metasploit/model/module/ancestors/module_types/_payload.rb.erb +4 -0
  374. data/spec/support/templates/metasploit/model/module/ancestors/module_types/_post.rb.erb +1 -0
  375. data/spec/support/templates/metasploit/model/module/ancestors/payload_types/_handled.rb.erb +20 -0
  376. data/spec/support/templates/metasploit/model/module/ancestors/payload_types/_single.rb.erb +1 -0
  377. data/spec/support/templates/metasploit/model/module/ancestors/payload_types/_stage.rb.erb +0 -0
  378. data/spec/support/templates/metasploit/model/module/ancestors/payload_types/_stager.rb.erb +1 -0
  379. data/spec/support/templates/metasploit/model/module/classes/_methods.rb.erb +9 -0
  380. metadata +748 -0
@@ -0,0 +1,60 @@
1
+ # A search operator declared with
2
+ # {Metasploit::Model::Search::Attribute::ClassMethods#search_attribute search_attribute}.
3
+ class Metasploit::Model::Search::Operator::Attribute < Metasploit::Model::Search::Operator::Single
4
+ #
5
+ # CONSTANTS
6
+ #
7
+
8
+ # The valid {#type types}.
9
+ TYPES = [
10
+ :boolean,
11
+ :date,
12
+ :integer,
13
+ {
14
+ set: :integer
15
+ },
16
+ {
17
+ set: :string
18
+ },
19
+ :string
20
+ ]
21
+
22
+ #
23
+ # Attributes
24
+ #
25
+
26
+ # @!attribute [r] attribute
27
+ # The attribute on {Metasploit::Model::Search::Operator::Base#klass klass} that is searchable.
28
+ #
29
+ # @return [Symbol] the attribute name
30
+ attr_accessor :attribute
31
+
32
+ # @!attribute [r] type
33
+ # The type of {#attribute}.
34
+ #
35
+ # @return [Symbol] Value from {TYPES}.
36
+ attr_accessor :type
37
+
38
+ #
39
+ # Validations
40
+ #
41
+
42
+ validates :attribute, :presence => true
43
+ validates :type,
44
+ :inclusion => {
45
+ :in => TYPES
46
+ }
47
+
48
+ #
49
+ # Methods
50
+ #
51
+
52
+ # Set for {#attribute} as provided by {Metasploit::Model::Search::Operator::Base#klass #klass}.
53
+ #
54
+ # @return [Enumerable, #include?]
55
+ def attribute_set
56
+ klass.send("#{attribute}_set")
57
+ end
58
+
59
+ alias_method :name, :attribute
60
+ end
@@ -0,0 +1,34 @@
1
+ # @abstract Declare search operators using {Metasploit::Model::Search::ClassMethods#search_attribute} and include
2
+ # operators from associations with {Metasploit::Model::Search::ClassMethods#search_association}.
3
+ #
4
+ # A search operator.
5
+ class Metasploit::Model::Search::Operator::Base < Metasploit::Model::Base
6
+ include ActiveModel::Validations
7
+ include Metasploit::Model::Search::Operator::Help
8
+
9
+ #
10
+ # Attributes
11
+ #
12
+
13
+ # @!attribute [rw] klass
14
+ # The class on which this operator is usable.
15
+ #
16
+ # @return [Class]
17
+ attr_accessor :klass
18
+
19
+ #
20
+ # Validations
21
+ #
22
+
23
+ validates :klass, :presence => true
24
+
25
+ # @abstract subclass and derive operator name from attributes of subclass.
26
+ #
27
+ # Name of this operator.
28
+ #
29
+ # @return [String]
30
+ # @raise [NotImplementedError]
31
+ def name
32
+ raise NotImplementedError
33
+ end
34
+ end
@@ -0,0 +1,40 @@
1
+ # An operator that delegates to another operator(s).
2
+ class Metasploit::Model::Search::Operator::Delegation < Metasploit::Model::Search::Operator::Base
3
+ #
4
+ # Methods
5
+ #
6
+
7
+ # @note Can't be called `name` because it would alias `Class#name`.
8
+ #
9
+ # Name of this operator.
10
+ #
11
+ # @return [String]
12
+ def self.operator_name
13
+ @operator_name ||= name.demodulize.underscore.to_sym
14
+ end
15
+
16
+ # Name of operator.
17
+ #
18
+ # @return (see operator_name)
19
+ def name
20
+ @name ||= self.class.operator_name
21
+ end
22
+
23
+ protected
24
+
25
+ # Finds operator with the given name on {Metasploit::Model::Search::Operator::Base#klass}.
26
+ #
27
+ # @param formatted_operator [#to_sym] Name of operator.
28
+ # @return [Metasploit::Model::Search::Operator::Base] if operator with `formatted_operator` for
29
+ # {Metasploit::Model::Search::Operator::Base#name} exists for {Metasploit::Model::Search::Operator::Base#klass}.
30
+ def operator(formatted_operator)
31
+ name = formatted_operator.to_sym
32
+ operator = klass.search_operator_by_name[name]
33
+
34
+ unless operator
35
+ raise ArgumentError, "No operator with name #{name.inspect} on #{klass}"
36
+ end
37
+
38
+ operator
39
+ end
40
+ end
@@ -0,0 +1,27 @@
1
+ # Emulates the deprecated `app` operator by converting it to the union of `authors.name:<value>`,
2
+ # `email_addresses.local<value before '@'>`, and `email_addresses.domain:<value before '@'>` in {#operate_on}.
3
+ class Metasploit::Model::Search::Operator::Deprecated::App < Metasploit::Model::Search::Operator::Delegation
4
+ #
5
+ # CONSTANTS
6
+ #
7
+
8
+ # Maps values passed to deprecated `app` operator to the equivalent value for the `stance` operator.
9
+ STANCE_BY_APP = {
10
+ 'client' => 'passive',
11
+ 'server' => 'aggressive'
12
+ }
13
+
14
+ #
15
+ # Methods
16
+ #
17
+
18
+ # Converts `app:client` to `stance:passive` and `app:server` to `stance:aggressive`.
19
+ #
20
+ # @return [Metasploit::Model::Search::Operation::Base]
21
+ def operate_on(formatted_value)
22
+ stance_value = STANCE_BY_APP[formatted_value]
23
+ stance_operator = operator('stance')
24
+
25
+ stance_operator.operate_on(stance_value)
26
+ end
27
+ end
@@ -0,0 +1,33 @@
1
+ # Operator that emulates the behavior of 'author' operator that could search `Mdm::Module::Detail` by making
2
+ # {Metasploit::Model::Search::Operation::Union} between `authors.name`, `email_addresss.domain`, and
3
+ # `email_addresses.local`.
4
+ class Metasploit::Model::Search::Operator::Deprecated::Author < Metasploit::Model::Search::Operator::Union
5
+ # Turns author:<formatted_value> into Array of authors.name:<formatted_value>,
6
+ # email_addresses.domain:<formatted_value>, and email_addresses.local:<formatted_value> operations. If there is an
7
+ # '@' in `formatted_value`, then the portion of `formatted_value` before the '@' is used for `email_addresses.local`
8
+ # and the portion of `formatted_value` after the '@' is used for `email_addresses.domain`.
9
+ #
10
+ # @param formatted_value [String] value after ':' in formatted operation.
11
+ # @return [Array<Metasploit::Model::Search::Operation::Base>]
12
+ def children(formatted_value)
13
+ operations = []
14
+
15
+ authors_name_operator = operator('authors.name')
16
+ operations << authors_name_operator.operate_on(formatted_value)
17
+
18
+ if formatted_value.include? '@'
19
+ local, domain = formatted_value.split('@', 2)
20
+ else
21
+ domain = formatted_value
22
+ local = formatted_value
23
+ end
24
+
25
+ email_address_domain_operator = operator('email_addresses.domain')
26
+ operations << email_address_domain_operator.operate_on(domain)
27
+
28
+ email_addresses_local_operator = operator('email_addresses.local')
29
+ operations << email_addresses_local_operator.operate_on(local)
30
+
31
+ operations
32
+ end
33
+ end
@@ -0,0 +1,43 @@
1
+ # Operator for the direct, single authority reference search. Translates `<abbreviation>:<designation>` to
2
+ # `authorities.abbreviation:<abbreviation> references.designation:<designation>`.
3
+ class Metasploit::Model::Search::Operator::Deprecated::Authority < Metasploit::Model::Search::Operator::Delegation
4
+ #
5
+ # Attributes
6
+ #
7
+
8
+ # @!attribute [rw] abbreviation
9
+ # Value passed to `authorities.abbreviation` operator
10
+ #
11
+ # @return [String]
12
+ attr_accessor :abbreviation
13
+
14
+ #
15
+ # Validations
16
+ #
17
+
18
+ validates :abbreviation,
19
+ :presence => true
20
+
21
+ #
22
+ # Methods
23
+ #
24
+
25
+ alias_method :name, :abbreviation
26
+
27
+ # Returns list of operations that search for the authority with {#abbreviation} and `formatted_value` for reference
28
+ # designation.
29
+ #
30
+ # @return [Array<Metasploit::Model::Search::Operation::Base>] authorities.abbreviation:<abbreviation>
31
+ # references.designation:<formatted_value>
32
+ def operate_on(formatted_value)
33
+ operations = []
34
+
35
+ authorities_abbreviation_operator = operator('authorities.abbreviation')
36
+ operations << authorities_abbreviation_operator.operate_on(abbreviation)
37
+
38
+ references_designation_operator = operator('references.designation')
39
+ operations << references_designation_operator.operate_on(formatted_value)
40
+
41
+ operations
42
+ end
43
+ end
@@ -0,0 +1,45 @@
1
+ # Translates `<name>:<value>` to the union of `platforms.name:<value>` and `targets.name:<value>` in order to support
2
+ # the `os` and `platform` operators.
3
+ class Metasploit::Model::Search::Operator::Deprecated::Platform < Metasploit::Model::Search::Operator::Union
4
+ #
5
+ # CONSTANTS
6
+ #
7
+
8
+ # Formatted operators that should be part of {#children} for this union.
9
+ FORMATTED_OPERATORS = [
10
+ 'platforms.fully_qualified_name',
11
+ 'targets.name'
12
+ ]
13
+
14
+ #
15
+ # Attributes
16
+ #
17
+
18
+ # @!attribute [rw] name
19
+ # Name of this operator
20
+ #
21
+ # @return [Symbol]
22
+ attr_accessor :name
23
+
24
+ #
25
+ # Validations
26
+ #
27
+
28
+ validates :name,
29
+ :presence => true
30
+
31
+ #
32
+ # Methods
33
+ #
34
+
35
+ # Array of `platforms.fully_qualified_name:<formatted_value>` and `targets.name:<formatted_value>` operations.
36
+ #
37
+ # @param formatted_value [String] value parsed from formatted operation.
38
+ # @return [Array<Metasploit::Model::Search::Operation::Base>]
39
+ def children(formatted_value)
40
+ FORMATTED_OPERATORS.collect { |formatted_operator|
41
+ association_operator = operator(formatted_operator)
42
+ association_operator.operate_on(formatted_value)
43
+ }
44
+ end
45
+ end
@@ -0,0 +1,50 @@
1
+ # Translates `ref:<value>` to union of `authorities.abbreviation:<value>`, `references.designation:<value>`, and
2
+ # `references.designation:<value>`.
3
+ class Metasploit::Model::Search::Operator::Deprecated::Ref < Metasploit::Model::Search::Operator::Union
4
+ # Array of `authorities.abbreviation:<formatted_value>`, `references.designation:<formatted_value>`, and
5
+ # `references.url:<formatted_value>`. If `formatted_value` contains a '-' then the portion of `formatted_value`
6
+ # before '-' is treated is passed to `authorities.abbreviation` and the portion of `formatted_value` after '-' is
7
+ # treated is passed to `references.designation`. If the portion of `formatted_value` before the '-'
8
+ # case-insensitively matches 'URL', then `authorities.abbreviation` and `references.designation` is not used and the
9
+ # portion of `formatted_value` after the '-' is passed to `references.url`. If any portion of the parsed
10
+ # `formatted_value` is blank, then the corresponding child operation will not be in the returned Array.
11
+ #
12
+ # @param formatted_value [String] value parsed from formatted operation.
13
+ # @return [Array<Metasploit::Model::Search::Operation::Base>]
14
+ def children(formatted_value)
15
+ if formatted_value.include? '-'
16
+ head, tail = formatted_value.split('-', 2)
17
+
18
+ if head.casecmp('URL') == 0
19
+ # URL is not a valid abbreviation
20
+ abbreviation = nil
21
+ designation = nil
22
+ url = tail
23
+ else
24
+ abbreviation = head
25
+ designation = tail
26
+ url = nil
27
+ end
28
+ else
29
+ abbreviation = formatted_value
30
+ designation = formatted_value
31
+ url = formatted_value
32
+ end
33
+
34
+ operations = []
35
+
36
+ unless abbreviation.blank?
37
+ operations << operator('authorities.abbreviation').operate_on(abbreviation)
38
+ end
39
+
40
+ unless designation.blank?
41
+ operations << operator('references.designation').operate_on(designation)
42
+ end
43
+
44
+ unless url.blank?
45
+ operations << operator('references.url').operate_on(url)
46
+ end
47
+
48
+ operations
49
+ end
50
+ end
@@ -0,0 +1,32 @@
1
+ # Search the equivalent of the text fields from `Mdm::Module::Detail` and its associations, making a union of
2
+ # `description`, `name`, `actions.name`, `architectures.abbreviation`, `platform`, and `ref`.
3
+ class Metasploit::Model::Search::Operator::Deprecated::Text < Metasploit::Model::Search::Operator::Union
4
+ #
5
+ # CONSTANTS
6
+ #
7
+
8
+ # Names of operators that are unioned together for {Metasploit::Model::Search::Operator::Union#operate_on}.
9
+ OPERATOR_NAMES = [
10
+ 'description',
11
+ 'name',
12
+ 'actions.name',
13
+ 'architectures.abbreviation',
14
+ # platforms.name or targets.name
15
+ 'platform',
16
+ # authors.name, references.designation, or references.url are handled by
17
+ # {Metasploit::Model::Search::Operator::Deprecated::Ref} to reuse its special parsing of the old
18
+ # <abbreviation OR 'URL'>-<designation or url> format.
19
+ 'ref',
20
+ ]
21
+
22
+ # `description`, `name`, `actions.name`, `architectures.abbreviation`, `platform`, and `ref`.
23
+ #
24
+ # @param formatted_value [String] value parsed from formatted operation
25
+ # @return [Array<Metasploit::Model::Search::Operation::Base>]
26
+ def children(formatted_value)
27
+ OPERATOR_NAMES.collect { |operator_name|
28
+ named_operator = operator(operator_name)
29
+ named_operator.operate_on(formatted_value)
30
+ }
31
+ end
32
+ end
@@ -0,0 +1,44 @@
1
+ # Operator used when the formatted operator name does not match a class's operators.
2
+ class Metasploit::Model::Search::Operator::Null < Metasploit::Model::Search::Operator::Single
3
+ #
4
+ # Attributes
5
+ #
6
+
7
+ # @!attribute [rw] name
8
+ # The name of this operator that was not the name of a search operator for
9
+ # {Metasploit::Model::Search::Operator::Base#klass}.
10
+ #
11
+ # @return [Symbol]
12
+ attr_accessor :name
13
+
14
+ #
15
+ # Validations
16
+ #
17
+
18
+ validate :name_invalid
19
+
20
+ # Null operators do not have a type since the attribute is unknown.
21
+ #
22
+ # @return [nil]
23
+ def type
24
+ nil
25
+ end
26
+
27
+ protected
28
+
29
+ # Null operation Class.
30
+ #
31
+ # @return [Class] {Metasploit::Model::Search::Operation::Null}
32
+ def operation_class
33
+ Metasploit::Model::Search::Operation::Null
34
+ end
35
+
36
+ private
37
+
38
+ # Always records an error that name is not an operator name
39
+ #
40
+ # @return [void]
41
+ def name_invalid
42
+ errors.add(:name, :unknown)
43
+ end
44
+ end
@@ -0,0 +1,98 @@
1
+ # @abstract Operator that only returns a single operation from {#operate_on}.
2
+ class Metasploit::Model::Search::Operator::Single < Metasploit::Model::Search::Operator::Base
3
+ #
4
+ # CONSTANTS
5
+ #
6
+
7
+ # Separator between parent and child module/class names.
8
+ MODULE_SEPARATOR = '::'
9
+ # Name of namespace module for operations returned from {#operation_class} and used by {#operate_on}.
10
+ OPERATION_NAMESPACE_NAME = "Metasploit::Model::Search::Operation"
11
+
12
+ #
13
+ # Methods
14
+ #
15
+
16
+ # The constant name for the given type.
17
+ #
18
+ # @param type [Symbol, Hash]
19
+ # @return [String]
20
+ def self.constant_name(type)
21
+ case type
22
+ when Hash
23
+ if type.length < 1
24
+ raise ArgumentError, "Cannot destructure a Hash without entries"
25
+ end
26
+
27
+ if type.length > 1
28
+ raise ArgumentError, "Cannot destructure a Hash with multiple entries"
29
+ end
30
+
31
+ partial_types = type.first
32
+ partial_constant_names = partial_types.collect { |partial_type|
33
+ constant_name(partial_type)
34
+ }
35
+
36
+ partial_constant_names.join(MODULE_SEPARATOR)
37
+ when Symbol
38
+ type.to_s.camelize
39
+ else
40
+ raise ArgumentError, "Can only convert Hashes and Symbols to constant names, not #{type.inspect}"
41
+ end
42
+ end
43
+
44
+ # Creates an {Metasploit::Model::Search::Operation::Base operation} of the correct type for this operator's {#type}.
45
+ #
46
+ # @param formatted_value [String] the unparsed value passed to this operator in {Metasploit::Model::Search::Query
47
+ # a formatted search query}.
48
+ # @return [Metasploit::Model::Search::Operation::Base] instance of {#operation_class}.
49
+ def operate_on(formatted_value)
50
+ operation_class.new(
51
+ :value => formatted_value,
52
+ :operator => self
53
+ )
54
+ end
55
+
56
+ # @abstract subclass and derive operator type.
57
+ #
58
+ # Type of the attribute.
59
+ #
60
+ # @return [Symbol]
61
+ # @raise [NotImplementedError]
62
+ def type
63
+ raise NotImplementedError
64
+ end
65
+
66
+ protected
67
+
68
+ # The {#type}-specific {Metasploit::Model::Search::Operation::Base} subclass.
69
+ #
70
+ # @return [Class<Metasploit::Model::Search::Operation::Base>]
71
+ # @raise (see #operation_class_name)
72
+ def operation_class
73
+ unless instance_variable_defined? :@operation_class
74
+ @operation_class = operation_class_name.constantize
75
+ end
76
+
77
+ @operation_class
78
+ end
79
+
80
+ # The name of the {#type}-specific {Metasploit::Model::Search::Operation::Base} subclass.
81
+ #
82
+ # @return [String]
83
+ # @raise [ArgumentError]
84
+ def operation_class_name
85
+ unless instance_variable_defined? :@operation_class_name
86
+ unless type
87
+ raise ArgumentError, "#{self.class}##{__method__} cannot be derived for #{name} operator because its type is nil"
88
+ end
89
+
90
+ partial_constant_names = [OPERATION_NAMESPACE_NAME]
91
+ partial_constant_names << self.class.constant_name(type)
92
+
93
+ @operation_class_name = partial_constant_names.join(MODULE_SEPARATOR)
94
+ end
95
+
96
+ @operation_class_name
97
+ end
98
+ end