metasploit-model 0.24.1-java
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/.coveralls.yml +1 -0
- data/.gitignore +27 -0
- data/.rspec +4 -0
- data/.simplecov +38 -0
- data/.travis.yml +6 -0
- data/.yardopts +5 -0
- data/Gemfile +43 -0
- data/LICENSE +27 -0
- data/README.md +33 -0
- data/Rakefile +52 -0
- data/app/models/metasploit/model/association/reflection.rb +46 -0
- data/app/models/metasploit/model/module/ancestor/spec/template.rb +125 -0
- data/app/models/metasploit/model/module/class/spec/template.rb +92 -0
- data/app/models/metasploit/model/module/instance/spec/template.rb +97 -0
- data/app/models/metasploit/model/search/group/base.rb +21 -0
- data/app/models/metasploit/model/search/group/intersection.rb +4 -0
- data/app/models/metasploit/model/search/group/union.rb +4 -0
- data/app/models/metasploit/model/search/operation/base.rb +39 -0
- data/app/models/metasploit/model/search/operation/boolean.rb +36 -0
- data/app/models/metasploit/model/search/operation/date.rb +37 -0
- data/app/models/metasploit/model/search/operation/integer.rb +14 -0
- data/app/models/metasploit/model/search/operation/null.rb +26 -0
- data/app/models/metasploit/model/search/operation/set.rb +34 -0
- data/app/models/metasploit/model/search/operation/set/integer.rb +5 -0
- data/app/models/metasploit/model/search/operation/set/string.rb +5 -0
- data/app/models/metasploit/model/search/operation/string.rb +11 -0
- data/app/models/metasploit/model/search/operation/union.rb +59 -0
- data/app/models/metasploit/model/search/operator/association.rb +43 -0
- data/app/models/metasploit/model/search/operator/attribute.rb +60 -0
- data/app/models/metasploit/model/search/operator/base.rb +34 -0
- data/app/models/metasploit/model/search/operator/delegation.rb +40 -0
- data/app/models/metasploit/model/search/operator/deprecated/app.rb +27 -0
- data/app/models/metasploit/model/search/operator/deprecated/author.rb +33 -0
- data/app/models/metasploit/model/search/operator/deprecated/authority.rb +43 -0
- data/app/models/metasploit/model/search/operator/deprecated/platform.rb +45 -0
- data/app/models/metasploit/model/search/operator/deprecated/ref.rb +50 -0
- data/app/models/metasploit/model/search/operator/deprecated/text.rb +32 -0
- data/app/models/metasploit/model/search/operator/null.rb +44 -0
- data/app/models/metasploit/model/search/operator/single.rb +98 -0
- data/app/models/metasploit/model/search/operator/union.rb +33 -0
- data/app/models/metasploit/model/search/query.rb +171 -0
- data/app/models/metasploit/model/spec/template.rb +273 -0
- data/app/models/metasploit/model/visitation/visitor.rb +69 -0
- data/app/validators/derivation_validator.rb +17 -0
- data/app/validators/dynamic_length_validator.rb +45 -0
- data/app/validators/ip_format_validator.rb +31 -0
- data/app/validators/nil_validator.rb +16 -0
- data/app/validators/parameters_validator.rb +147 -0
- data/app/validators/password_is_strong_validator.rb +115 -0
- data/config/locales/en.yml +209 -0
- data/lib/metasploit/model.rb +38 -0
- data/lib/metasploit/model/architecture.rb +346 -0
- data/lib/metasploit/model/association.rb +49 -0
- data/lib/metasploit/model/association/error.rb +40 -0
- data/lib/metasploit/model/author.rb +58 -0
- data/lib/metasploit/model/authority.rb +134 -0
- data/lib/metasploit/model/authority/bid.rb +10 -0
- data/lib/metasploit/model/authority/cve.rb +10 -0
- data/lib/metasploit/model/authority/msb.rb +10 -0
- data/lib/metasploit/model/authority/osvdb.rb +10 -0
- data/lib/metasploit/model/authority/pmasa.rb +10 -0
- data/lib/metasploit/model/authority/secunia.rb +10 -0
- data/lib/metasploit/model/authority/us_cert_vu.rb +10 -0
- data/lib/metasploit/model/authority/waraxe.rb +31 -0
- data/lib/metasploit/model/authority/zdi.rb +10 -0
- data/lib/metasploit/model/base.rb +25 -0
- data/lib/metasploit/model/configuration.rb +72 -0
- data/lib/metasploit/model/configuration/autoload.rb +109 -0
- data/lib/metasploit/model/configuration/child.rb +12 -0
- data/lib/metasploit/model/configuration/error.rb +4 -0
- data/lib/metasploit/model/configuration/i18n.rb +54 -0
- data/lib/metasploit/model/configuration/parent.rb +50 -0
- data/lib/metasploit/model/configured.rb +46 -0
- data/lib/metasploit/model/derivation.rb +110 -0
- data/lib/metasploit/model/derivation/full_name.rb +25 -0
- data/lib/metasploit/model/email_address.rb +128 -0
- data/lib/metasploit/model/engine.rb +34 -0
- data/lib/metasploit/model/error.rb +7 -0
- data/lib/metasploit/model/file.rb +49 -0
- data/lib/metasploit/model/invalid.rb +17 -0
- data/lib/metasploit/model/module.rb +8 -0
- data/lib/metasploit/model/module/action.rb +58 -0
- data/lib/metasploit/model/module/ancestor.rb +494 -0
- data/lib/metasploit/model/module/architecture.rb +40 -0
- data/lib/metasploit/model/module/author.rb +47 -0
- data/lib/metasploit/model/module/class.rb +406 -0
- data/lib/metasploit/model/module/handler.rb +35 -0
- data/lib/metasploit/model/module/instance.rb +626 -0
- data/lib/metasploit/model/module/path.rb +165 -0
- data/lib/metasploit/model/module/platform.rb +38 -0
- data/lib/metasploit/model/module/rank.rb +91 -0
- data/lib/metasploit/model/module/reference.rb +38 -0
- data/lib/metasploit/model/module/stance.rb +22 -0
- data/lib/metasploit/model/module/target.rb +80 -0
- data/lib/metasploit/model/module/target/architecture.rb +42 -0
- data/lib/metasploit/model/module/target/platform.rb +42 -0
- data/lib/metasploit/model/module/type.rb +44 -0
- data/lib/metasploit/model/nilify_blanks.rb +53 -0
- data/lib/metasploit/model/platform.rb +250 -0
- data/lib/metasploit/model/real_pathname.rb +18 -0
- data/lib/metasploit/model/reference.rb +108 -0
- data/lib/metasploit/model/search.rb +63 -0
- data/lib/metasploit/model/search/association.rb +32 -0
- data/lib/metasploit/model/search/attribute.rb +51 -0
- data/lib/metasploit/model/search/operation.rb +31 -0
- data/lib/metasploit/model/search/operation/integer/value.rb +33 -0
- data/lib/metasploit/model/search/operation/string/value.rb +14 -0
- data/lib/metasploit/model/search/operator.rb +10 -0
- data/lib/metasploit/model/search/operator/help.rb +47 -0
- data/lib/metasploit/model/search/with.rb +40 -0
- data/lib/metasploit/model/spec.rb +140 -0
- data/lib/metasploit/model/spec/error.rb +9 -0
- data/lib/metasploit/model/spec/i18n_exception_handler.rb +19 -0
- data/lib/metasploit/model/spec/pathname_collision.rb +28 -0
- data/lib/metasploit/model/spec/template/write.rb +42 -0
- data/lib/metasploit/model/spec/temporary_pathname.rb +59 -0
- data/lib/metasploit/model/translation.rb +31 -0
- data/lib/metasploit/model/version.rb +31 -0
- data/lib/metasploit/model/visitation.rb +9 -0
- data/lib/metasploit/model/visitation/visit.rb +103 -0
- data/lib/tasks/yard.rake +30 -0
- data/metasploit-model.gemspec +39 -0
- data/script/rails +9 -0
- data/spec/app/models/metasploit/model/association/reflection_spec.rb +48 -0
- data/spec/app/models/metasploit/model/module/ancestor/spec/template_spec.rb +174 -0
- data/spec/app/models/metasploit/model/module/class/spec/template_spec.rb +222 -0
- data/spec/app/models/metasploit/model/module/instance/spec/template_spec.rb +201 -0
- data/spec/app/models/metasploit/model/search/group/base_spec.rb +5 -0
- data/spec/app/models/metasploit/model/search/group/intersection_spec.rb +5 -0
- data/spec/app/models/metasploit/model/search/group/union_spec.rb +5 -0
- data/spec/app/models/metasploit/model/search/operation/base_spec.rb +70 -0
- data/spec/app/models/metasploit/model/search/operation/boolean_spec.rb +56 -0
- data/spec/app/models/metasploit/model/search/operation/date_spec.rb +89 -0
- data/spec/app/models/metasploit/model/search/operation/integer_spec.rb +9 -0
- data/spec/app/models/metasploit/model/search/operation/null_spec.rb +64 -0
- data/spec/app/models/metasploit/model/search/operation/set/integer_spec.rb +7 -0
- data/spec/app/models/metasploit/model/search/operation/set/string_spec.rb +7 -0
- data/spec/app/models/metasploit/model/search/operation/set_spec.rb +126 -0
- data/spec/app/models/metasploit/model/search/operation/string_spec.rb +9 -0
- data/spec/app/models/metasploit/model/search/operation/union_spec.rb +124 -0
- data/spec/app/models/metasploit/model/search/operator/association_spec.rb +108 -0
- data/spec/app/models/metasploit/model/search/operator/attribute_spec.rb +104 -0
- data/spec/app/models/metasploit/model/search/operator/base_spec.rb +34 -0
- data/spec/app/models/metasploit/model/search/operator/delegation_spec.rb +108 -0
- data/spec/app/models/metasploit/model/search/operator/deprecated/app_spec.rb +62 -0
- data/spec/app/models/metasploit/model/search/operator/deprecated/author_spec.rb +161 -0
- data/spec/app/models/metasploit/model/search/operator/deprecated/authority_spec.rb +123 -0
- data/spec/app/models/metasploit/model/search/operator/deprecated/platform_spec.rb +112 -0
- data/spec/app/models/metasploit/model/search/operator/deprecated/ref_spec.rb +327 -0
- data/spec/app/models/metasploit/model/search/operator/deprecated/text_spec.rb +357 -0
- data/spec/app/models/metasploit/model/search/operator/null_spec.rb +41 -0
- data/spec/app/models/metasploit/model/search/operator/single_spec.rb +327 -0
- data/spec/app/models/metasploit/model/search/operator/union_spec.rb +92 -0
- data/spec/app/models/metasploit/model/search/query_spec.rb +742 -0
- data/spec/app/models/metasploit/model/spec/template_spec.rb +23 -0
- data/spec/app/models/metasploit/model/visitation/visitor_spec.rb +45 -0
- data/spec/app/validators/derivation_validator_spec.rb +92 -0
- data/spec/app/validators/dynamic_length_validator_spec.rb +293 -0
- data/spec/app/validators/ip_format_validator_spec.rb +124 -0
- data/spec/app/validators/nil_validator_spec.rb +69 -0
- data/spec/app/validators/parameters_validator_spec.rb +342 -0
- data/spec/app/validators/password_is_strong_validator_spec.rb +250 -0
- data/spec/dummy/Rakefile +7 -0
- data/spec/dummy/app/assets/javascripts/application.js +15 -0
- data/spec/dummy/app/assets/stylesheets/application.css +13 -0
- data/spec/dummy/app/controllers/application_controller.rb +3 -0
- data/spec/dummy/app/helpers/application_helper.rb +2 -0
- data/spec/dummy/app/mailers/.gitkeep +0 -0
- data/spec/dummy/app/models/dummy/architecture.rb +92 -0
- data/spec/dummy/app/models/dummy/author.rb +15 -0
- data/spec/dummy/app/models/dummy/authority.rb +130 -0
- data/spec/dummy/app/models/dummy/email_address.rb +27 -0
- data/spec/dummy/app/models/dummy/module/action.rb +25 -0
- data/spec/dummy/app/models/dummy/module/ancestor.rb +67 -0
- data/spec/dummy/app/models/dummy/module/architecture.rb +19 -0
- data/spec/dummy/app/models/dummy/module/author.rb +28 -0
- data/spec/dummy/app/models/dummy/module/class.rb +69 -0
- data/spec/dummy/app/models/dummy/module/instance.rb +209 -0
- data/spec/dummy/app/models/dummy/module/path.rb +64 -0
- data/spec/dummy/app/models/dummy/module/platform.rb +19 -0
- data/spec/dummy/app/models/dummy/module/rank.rb +44 -0
- data/spec/dummy/app/models/dummy/module/reference.rb +19 -0
- data/spec/dummy/app/models/dummy/module/target.rb +62 -0
- data/spec/dummy/app/models/dummy/module/target/architecture.rb +19 -0
- data/spec/dummy/app/models/dummy/module/target/platform.rb +19 -0
- data/spec/dummy/app/models/dummy/platform.rb +58 -0
- data/spec/dummy/app/models/dummy/reference.rb +31 -0
- data/spec/dummy/app/views/layouts/application.html.erb +14 -0
- data/spec/dummy/config.ru +4 -0
- data/spec/dummy/config/application.rb +43 -0
- data/spec/dummy/config/boot.rb +10 -0
- data/spec/dummy/config/environment.rb +5 -0
- data/spec/dummy/config/environments/development.rb +27 -0
- data/spec/dummy/config/environments/production.rb +63 -0
- data/spec/dummy/config/environments/test.rb +29 -0
- data/spec/dummy/config/initializers/backtrace_silencers.rb +7 -0
- data/spec/dummy/config/initializers/inflections.rb +15 -0
- data/spec/dummy/config/initializers/mime_types.rb +5 -0
- data/spec/dummy/config/initializers/secret_token.rb +7 -0
- data/spec/dummy/config/initializers/session_store.rb +3 -0
- data/spec/dummy/config/initializers/wrap_parameters.rb +9 -0
- data/spec/dummy/config/locales/en.yml +1 -0
- data/spec/dummy/config/routes.rb +2 -0
- data/spec/dummy/db/schema.rb +707 -0
- data/spec/dummy/lib/assets/.gitkeep +0 -0
- data/spec/dummy/log/.gitkeep +0 -0
- data/spec/dummy/public/404.html +26 -0
- data/spec/dummy/public/422.html +26 -0
- data/spec/dummy/public/500.html +25 -0
- data/spec/dummy/public/favicon.ico +0 -0
- data/spec/dummy/script/rails +6 -0
- data/spec/dummy/spec/factories/dummy/architectures.rb +13 -0
- data/spec/dummy/spec/factories/dummy/authorities.rb +32 -0
- data/spec/dummy/spec/factories/dummy/authors.rb +8 -0
- data/spec/dummy/spec/factories/dummy/email_addresses.rb +8 -0
- data/spec/dummy/spec/factories/dummy/module/actions.rb +13 -0
- data/spec/dummy/spec/factories/dummy/module/ancestors.rb +45 -0
- data/spec/dummy/spec/factories/dummy/module/architectures.rb +35 -0
- data/spec/dummy/spec/factories/dummy/module/authors.rb +10 -0
- data/spec/dummy/spec/factories/dummy/module/classes.rb +40 -0
- data/spec/dummy/spec/factories/dummy/module/instances.rb +86 -0
- data/spec/dummy/spec/factories/dummy/module/paths.rb +16 -0
- data/spec/dummy/spec/factories/dummy/module/platforms.rb +35 -0
- data/spec/dummy/spec/factories/dummy/module/ranks.rb +14 -0
- data/spec/dummy/spec/factories/dummy/module/references.rb +17 -0
- data/spec/dummy/spec/factories/dummy/module/target/architectures.rb +40 -0
- data/spec/dummy/spec/factories/dummy/module/target/platforms.rb +41 -0
- data/spec/dummy/spec/factories/dummy/module/targets.rb +46 -0
- data/spec/dummy/spec/factories/dummy/platforms.rb +3 -0
- data/spec/dummy/spec/factories/dummy/references.rb +26 -0
- data/spec/factories/metasploit/model/architectures.rb +6 -0
- data/spec/factories/metasploit/model/association/reflections.rb +9 -0
- data/spec/factories/metasploit/model/authorities.rb +28 -0
- data/spec/factories/metasploit/model/authors.rb +9 -0
- data/spec/factories/metasploit/model/bases.rb +10 -0
- data/spec/factories/metasploit/model/email_addresses.rb +14 -0
- data/spec/factories/metasploit/model/module/actions.rb +9 -0
- data/spec/factories/metasploit/model/module/ancestors.rb +180 -0
- data/spec/factories/metasploit/model/module/architectures.rb +15 -0
- data/spec/factories/metasploit/model/module/classes.rb +47 -0
- data/spec/factories/metasploit/model/module/handlers.rb +3 -0
- data/spec/factories/metasploit/model/module/instances.rb +83 -0
- data/spec/factories/metasploit/model/module/paths.rb +51 -0
- data/spec/factories/metasploit/model/module/platforms.rb +15 -0
- data/spec/factories/metasploit/model/module/ranks.rb +9 -0
- data/spec/factories/metasploit/model/module/references.rb +11 -0
- data/spec/factories/metasploit/model/module/stances.rb +3 -0
- data/spec/factories/metasploit/model/module/targets.rb +22 -0
- data/spec/factories/metasploit/model/module/types.rb +5 -0
- data/spec/factories/metasploit/model/references.rb +88 -0
- data/spec/factories/metasploit/model/search/operator/associations.rb +5 -0
- data/spec/factories/metasploit/model/search/operator/attributes.rb +7 -0
- data/spec/factories/metasploit/model/search/operator/bases.rb +5 -0
- data/spec/lib/metasploit/model/architecture_spec.rb +52 -0
- data/spec/lib/metasploit/model/association/error_spec.rb +48 -0
- data/spec/lib/metasploit/model/association_spec.rb +145 -0
- data/spec/lib/metasploit/model/author_spec.rb +6 -0
- data/spec/lib/metasploit/model/authority/bid_spec.rb +17 -0
- data/spec/lib/metasploit/model/authority/cve_spec.rb +17 -0
- data/spec/lib/metasploit/model/authority/msb_spec.rb +17 -0
- data/spec/lib/metasploit/model/authority/osvdb_spec.rb +17 -0
- data/spec/lib/metasploit/model/authority/pmasa_spec.rb +17 -0
- data/spec/lib/metasploit/model/authority/secunia_spec.rb +17 -0
- data/spec/lib/metasploit/model/authority/us_cert_vu_spec.rb +17 -0
- data/spec/lib/metasploit/model/authority/waraxe_spec.rb +51 -0
- data/spec/lib/metasploit/model/authority/zdi_spec.rb +21 -0
- data/spec/lib/metasploit/model/authority_spec.rb +10 -0
- data/spec/lib/metasploit/model/base_spec.rb +58 -0
- data/spec/lib/metasploit/model/configuration/autoload_spec.rb +165 -0
- data/spec/lib/metasploit/model/configuration/child_spec.rb +24 -0
- data/spec/lib/metasploit/model/configuration/error_spec.rb +5 -0
- data/spec/lib/metasploit/model/configuration/i18n_spec.rb +103 -0
- data/spec/lib/metasploit/model/configuration_spec.rb +106 -0
- data/spec/lib/metasploit/model/configured_spec.rb +41 -0
- data/spec/lib/metasploit/model/derivation/full_name_spec.rb +75 -0
- data/spec/lib/metasploit/model/derivation_spec.rb +217 -0
- data/spec/lib/metasploit/model/email_address_spec.rb +19 -0
- data/spec/lib/metasploit/model/engine_spec.rb +84 -0
- data/spec/lib/metasploit/model/file_spec.rb +43 -0
- data/spec/lib/metasploit/model/invalid_spec.rb +54 -0
- data/spec/lib/metasploit/model/module/action_spec.rb +6 -0
- data/spec/lib/metasploit/model/module/ancestor_spec.rb +6 -0
- data/spec/lib/metasploit/model/module/architecture_spec.rb +9 -0
- data/spec/lib/metasploit/model/module/author_spec.rb +6 -0
- data/spec/lib/metasploit/model/module/class_spec.rb +19 -0
- data/spec/lib/metasploit/model/module/handler_spec.rb +61 -0
- data/spec/lib/metasploit/model/module/instance_spec.rb +183 -0
- data/spec/lib/metasploit/model/module/path_spec.rb +6 -0
- data/spec/lib/metasploit/model/module/platform_spec.rb +9 -0
- data/spec/lib/metasploit/model/module/rank_spec.rb +29 -0
- data/spec/lib/metasploit/model/module/reference_spec.rb +9 -0
- data/spec/lib/metasploit/model/module/stance_spec.rb +30 -0
- data/spec/lib/metasploit/model/module/target/architecture_spec.rb +9 -0
- data/spec/lib/metasploit/model/module/target/platform_spec.rb +9 -0
- data/spec/lib/metasploit/model/module/target_spec.rb +9 -0
- data/spec/lib/metasploit/model/module/type_spec.rb +125 -0
- data/spec/lib/metasploit/model/nilify_blanks_spec.rb +156 -0
- data/spec/lib/metasploit/model/platform_spec.rb +100 -0
- data/spec/lib/metasploit/model/reference_spec.rb +21 -0
- data/spec/lib/metasploit/model/search/association_spec.rb +33 -0
- data/spec/lib/metasploit/model/search/attribute_spec.rb +99 -0
- data/spec/lib/metasploit/model/search/operation/integer/value_spec.rb +20 -0
- data/spec/lib/metasploit/model/search/operation/string/value_spec.rb +20 -0
- data/spec/lib/metasploit/model/search/operation_spec.rb +144 -0
- data/spec/lib/metasploit/model/search/operator/help_spec.rb +41 -0
- data/spec/lib/metasploit/model/search/with_spec.rb +81 -0
- data/spec/lib/metasploit/model/search_spec.rb +230 -0
- data/spec/lib/metasploit/model/spec/error_spec.rb +5 -0
- data/spec/lib/metasploit/model/spec/i18n_exception_handler_spec.rb +42 -0
- data/spec/lib/metasploit/model/spec/pathname_collision_spec.rb +55 -0
- data/spec/lib/metasploit/model/spec_spec.rb +114 -0
- data/spec/lib/metasploit/model/translation_spec.rb +82 -0
- data/spec/lib/metasploit/model/version_spec.rb +141 -0
- data/spec/lib/metasploit/model/visitation/visit_spec.rb +316 -0
- data/spec/lib/metasploit/model_spec.rb +68 -0
- data/spec/spec_helper.rb +48 -0
- data/spec/support/shared/contexts/metasploit/model/configuration.rb +11 -0
- data/spec/support/shared/contexts/metasploit/model/module/ancestor/contents/metasploit_module.rb +12 -0
- data/spec/support/shared/contexts/metasploit/model/module/ancestor/factory/contents.rb +10 -0
- data/spec/support/shared/contexts/metasploit/model/module/ancestor/factory/contents/metasploit_module.rb +15 -0
- data/spec/support/shared/contexts/metasploit/model/search/operator/union/children.rb +13 -0
- data/spec/support/shared/examples/derives.rb +115 -0
- data/spec/support/shared/examples/metasploit/model/architecture.rb +425 -0
- data/spec/support/shared/examples/metasploit/model/architecture/seed.rb +25 -0
- data/spec/support/shared/examples/metasploit/model/author.rb +27 -0
- data/spec/support/shared/examples/metasploit/model/authority.rb +124 -0
- data/spec/support/shared/examples/metasploit/model/authority/seed.rb +49 -0
- data/spec/support/shared/examples/metasploit/model/configuration/parent/child.rb +60 -0
- data/spec/support/shared/examples/metasploit/model/email_address.rb +220 -0
- data/spec/support/shared/examples/metasploit/model/module/action.rb +26 -0
- data/spec/support/shared/examples/metasploit/model/module/ancestor.rb +2004 -0
- data/spec/support/shared/examples/metasploit/model/module/ancestor/payload_factory.rb +63 -0
- data/spec/support/shared/examples/metasploit/model/module/architecture.rb +36 -0
- data/spec/support/shared/examples/metasploit/model/module/author.rb +29 -0
- data/spec/support/shared/examples/metasploit/model/module/class.rb +1514 -0
- data/spec/support/shared/examples/metasploit/model/module/handler.rb +21 -0
- data/spec/support/shared/examples/metasploit/model/module/instance.rb +1384 -0
- data/spec/support/shared/examples/metasploit/model/module/instance/class_methods.rb +537 -0
- data/spec/support/shared/examples/metasploit/model/module/instance/is_not_stanced_with_module_type.rb +22 -0
- data/spec/support/shared/examples/metasploit/model/module/instance/is_stanced_with_module_type.rb +38 -0
- data/spec/support/shared/examples/metasploit/model/module/instance/validates/dynamic_length_of.rb +131 -0
- data/spec/support/shared/examples/metasploit/model/module/path.rb +493 -0
- data/spec/support/shared/examples/metasploit/model/module/platform.rb +36 -0
- data/spec/support/shared/examples/metasploit/model/module/rank.rb +92 -0
- data/spec/support/shared/examples/metasploit/model/module/reference.rb +16 -0
- data/spec/support/shared/examples/metasploit/model/module/target.rb +29 -0
- data/spec/support/shared/examples/metasploit/model/module/target/architecture.rb +56 -0
- data/spec/support/shared/examples/metasploit/model/module/target/platform.rb +56 -0
- data/spec/support/shared/examples/metasploit/model/platform.rb +213 -0
- data/spec/support/shared/examples/metasploit/model/real_pathname.rb +29 -0
- data/spec/support/shared/examples/metasploit/model/reference.rb +410 -0
- data/spec/support/shared/examples/metasploit/model/search/operation/integer/value.rb +79 -0
- data/spec/support/shared/examples/metasploit/model/search/operation/string/value.rb +53 -0
- data/spec/support/shared/examples/metasploit/model/search/operator/help.rb +134 -0
- data/spec/support/shared/examples/metasploit/model/translation.rb +37 -0
- data/spec/support/shared/examples/search/query.rb +43 -0
- data/spec/support/shared/examples/search/query/metasploit/model/search/operator/deprecated/app.rb +44 -0
- data/spec/support/shared/examples/search/query/metasploit/model/search/operator/deprecated/authority.rb +60 -0
- data/spec/support/shared/examples/search_association.rb +13 -0
- data/spec/support/shared/examples/search_attribute.rb +27 -0
- data/spec/support/shared/examples/search_with.rb +36 -0
- data/spec/support/shared/matchers/allow_attribute.rb +17 -0
- data/spec/support/templates/metasploit/model/module/ancestors/_attributes.rb.erb +9 -0
- data/spec/support/templates/metasploit/model/module/ancestors/_methods.rb.erb +8 -0
- data/spec/support/templates/metasploit/model/module/ancestors/_validations.rb.erb +6 -0
- data/spec/support/templates/metasploit/model/module/ancestors/base.rb.erb +3 -0
- data/spec/support/templates/metasploit/model/module/ancestors/module_types/_auxiliary.rb.erb +1 -0
- data/spec/support/templates/metasploit/model/module/ancestors/module_types/_encoder.rb.erb +1 -0
- data/spec/support/templates/metasploit/model/module/ancestors/module_types/_exploit.rb.erb +1 -0
- data/spec/support/templates/metasploit/model/module/ancestors/module_types/_non_payload.rb.erb +5 -0
- data/spec/support/templates/metasploit/model/module/ancestors/module_types/_nop.rb.erb +1 -0
- data/spec/support/templates/metasploit/model/module/ancestors/module_types/_payload.rb.erb +4 -0
- data/spec/support/templates/metasploit/model/module/ancestors/module_types/_post.rb.erb +1 -0
- data/spec/support/templates/metasploit/model/module/ancestors/payload_types/_handled.rb.erb +20 -0
- data/spec/support/templates/metasploit/model/module/ancestors/payload_types/_single.rb.erb +1 -0
- data/spec/support/templates/metasploit/model/module/ancestors/payload_types/_stage.rb.erb +0 -0
- data/spec/support/templates/metasploit/model/module/ancestors/payload_types/_stager.rb.erb +1 -0
- data/spec/support/templates/metasploit/model/module/classes/_methods.rb.erb +9 -0
- metadata +747 -0
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA1:
|
3
|
+
metadata.gz: 8b02a264fea95cb85cabad47899c3a07308079b3
|
4
|
+
data.tar.gz: 54a8c9b6dd823df1104eccddd8de431f51085601
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: 2585a9450b854aeaeb06bf3c28a72f472b0cf39b65502377f637a1925168cd176ebe029611481307460b4738ce843bd2498a8541954e88aeb07e07febbf84314
|
7
|
+
data.tar.gz: 09d48c197168678d9507a13ae9ecfa8837132cf031de14489eb25583e5ed2f35d9175682d75c2276586ca200bc158c125549a713e0f67d454bcbe6261596796a
|
data/.coveralls.yml
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
service_name: travis-ci
|
data/.gitignore
ADDED
@@ -0,0 +1,27 @@
|
|
1
|
+
# bundler configuration
|
2
|
+
.bundle
|
3
|
+
# Mac OS X folder attributes
|
4
|
+
.DS_Store
|
5
|
+
# built gems
|
6
|
+
*.gem
|
7
|
+
# Rubymine project configuration
|
8
|
+
.idea
|
9
|
+
# logs
|
10
|
+
*.log
|
11
|
+
# Don't check in new rvm version and gemset files
|
12
|
+
.ruby-gemset
|
13
|
+
.ruby-version
|
14
|
+
# Don't check in rvmrc since this is a gem
|
15
|
+
.rvmrc
|
16
|
+
# YARD database
|
17
|
+
.yardoc
|
18
|
+
# coverage report directory for simplecov/Rubymine
|
19
|
+
coverage
|
20
|
+
# generated yardocs
|
21
|
+
doc
|
22
|
+
# Installed gem versions. Not stored for the same reasons as .rvmrc
|
23
|
+
Gemfile.lock
|
24
|
+
# Packaging directory for builds
|
25
|
+
pkg/*
|
26
|
+
# Database configuration (with passwords) for specs
|
27
|
+
spec/dummy/config/database.yml
|
data/.rspec
ADDED
data/.simplecov
ADDED
@@ -0,0 +1,38 @@
|
|
1
|
+
# RM_INFO is set when using Rubymine. In Rubymine, starting SimpleCov is
|
2
|
+
# controlled by running with coverage, so don't explicitly start coverage (and
|
3
|
+
# therefore generate a report) when in Rubymine. This _will_ generate a report
|
4
|
+
# whenever `rake spec` is run.
|
5
|
+
unless ENV['RM_INFO']
|
6
|
+
SimpleCov.start
|
7
|
+
end
|
8
|
+
|
9
|
+
SimpleCov.configure do
|
10
|
+
load_adapter('rails')
|
11
|
+
|
12
|
+
# ignore this file
|
13
|
+
add_filter '.simplecov'
|
14
|
+
|
15
|
+
#
|
16
|
+
# Changed Files in Git Group
|
17
|
+
# @see http://fredwu.me/post/35625566267/simplecov-test-coverage-for-changed-files-only
|
18
|
+
#
|
19
|
+
|
20
|
+
untracked = `git ls-files --exclude-standard --others`
|
21
|
+
unstaged = `git diff --name-only`
|
22
|
+
staged = `git diff --name-only --cached`
|
23
|
+
all = untracked + unstaged + staged
|
24
|
+
changed_filenames = all.split("\n")
|
25
|
+
|
26
|
+
add_group 'Changed' do |source_file|
|
27
|
+
changed_filenames.detect { |changed_filename|
|
28
|
+
source_file.filename.end_with?(changed_filename)
|
29
|
+
}
|
30
|
+
end
|
31
|
+
|
32
|
+
#
|
33
|
+
# Specs are reported on to ensure that all examples are being run and all
|
34
|
+
# lets, befores, afters, etc are being used.
|
35
|
+
#
|
36
|
+
|
37
|
+
add_group 'Specs', 'spec'
|
38
|
+
end
|
data/.travis.yml
ADDED
data/.yardopts
ADDED
data/Gemfile
ADDED
@@ -0,0 +1,43 @@
|
|
1
|
+
source 'https://rubygems.org'
|
2
|
+
|
3
|
+
# Specify your gem's dependencies in metasploit-model.gemspec
|
4
|
+
gemspec
|
5
|
+
|
6
|
+
# used by dummy application
|
7
|
+
group :development, :test do
|
8
|
+
# supplies factories for producing model instance for specs
|
9
|
+
# Version 4.1.0 or newer is needed to support generate calls without the 'FactoryGirl.' in factory definitions syntax.
|
10
|
+
gem 'factory_girl', '>= 4.1.0'
|
11
|
+
# auto-load factories from spec/factories
|
12
|
+
gem 'factory_girl_rails'
|
13
|
+
end
|
14
|
+
|
15
|
+
group :test do
|
16
|
+
# rails is not used because activerecord should not be included, but rails would normally coordinate the versions
|
17
|
+
# between its dependencies, which is now handled by this constraint.
|
18
|
+
rails_version_constraint = [
|
19
|
+
'>= 3.2.0',
|
20
|
+
'< 4.0.0'
|
21
|
+
]
|
22
|
+
|
23
|
+
# Dummy app uses actionpack for ActionController, but not rails since it doesn't use activerecord.
|
24
|
+
gem 'actionpack', *rails_version_constraint
|
25
|
+
# Uploads simplecov reports to coveralls.io
|
26
|
+
gem 'coveralls', require: false
|
27
|
+
# Engine tasks are loaded using railtie
|
28
|
+
gem 'railties', *rails_version_constraint
|
29
|
+
gem 'rspec'
|
30
|
+
# need rspec-core >= 2.14.0 because 2.14.0 introduced RSpec::Core::SharedExampleGroup::TopLevel
|
31
|
+
gem 'rspec-core', '>= 2.14.0', '< 3.0.0'
|
32
|
+
# need rspec-rails >= 2.12.0 as 2.12.0 adds support for redefining named subject in nested context that uses the
|
33
|
+
# named subject from the outer context without causing a stack overflow.
|
34
|
+
gem 'rspec-rails', '>= 2.12.0'
|
35
|
+
# In a full rails project, factory_girl_rails would be in both the :development, and :test group, but since we only
|
36
|
+
# want rails in :test, factory_girl_rails must also only be in :test.
|
37
|
+
# add matchers from shoulda, such as validates_presence_of, which are useful for testing validations
|
38
|
+
gem 'shoulda-matchers'
|
39
|
+
# code coverage of tests
|
40
|
+
gem 'simplecov', :require => false
|
41
|
+
# defines time zones for activesupport. Must be explicit since it is normally implicit with activerecord
|
42
|
+
gem 'tzinfo'
|
43
|
+
end
|
data/LICENSE
ADDED
@@ -0,0 +1,27 @@
|
|
1
|
+
Copyright (C) 2012-2013, Rapid7, Inc.
|
2
|
+
All rights reserved.
|
3
|
+
|
4
|
+
Redistribution and use in source and binary forms, with or without modification,
|
5
|
+
are permitted provided that the following conditions are met:
|
6
|
+
|
7
|
+
* Redistributions of source code must retain the above copyright notice,
|
8
|
+
this list of conditions and the following disclaimer.
|
9
|
+
|
10
|
+
* Redistributions in binary form must reproduce the above copyright notice,
|
11
|
+
this list of conditions and the following disclaimer in the documentation
|
12
|
+
and/or other materials provided with the distribution.
|
13
|
+
|
14
|
+
* Neither the name of Rapid7 LLC nor the names of its contributors
|
15
|
+
may be used to endorse or promote products derived from this software
|
16
|
+
without specific prior written permission.
|
17
|
+
|
18
|
+
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
|
19
|
+
ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
|
20
|
+
WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
21
|
+
DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR
|
22
|
+
ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
|
23
|
+
(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
|
24
|
+
LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
|
25
|
+
ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
26
|
+
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
|
27
|
+
SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
data/README.md
ADDED
@@ -0,0 +1,33 @@
|
|
1
|
+
# Metasploit::Model [![Build Status](https://travis-ci.org/rapid7/metasploit-model.png?branch=feature/exploit)](https://travis-ci.org/rapid7/metasploit-model)[![Coverage Status](https://coveralls.io/repos/rapid7/metasploit-model/badge.png?branch=feature%2Fexploit)](https://coveralls.io/r/rapid7/metasploit-model?branch=feature%2Fexploit)
|
2
|
+
|
3
|
+
## Versioning
|
4
|
+
|
5
|
+
`Metasploit::Model` is versioned using [semantic versioning 2.0](http://semver.org/spec/v2.0.0.html). Each branch
|
6
|
+
should set `Metasploit::Model::Version::PRERELEASE` to the branch name, while master should have no `PRERELEASE`
|
7
|
+
and the `PRERELEASE` section of `Metasploit::Model::VERSION` does not exist.
|
8
|
+
|
9
|
+
## Installation
|
10
|
+
|
11
|
+
Add this line to your application's Gemfile:
|
12
|
+
|
13
|
+
gem 'metasploit-model'
|
14
|
+
|
15
|
+
And then execute:
|
16
|
+
|
17
|
+
$ bundle
|
18
|
+
|
19
|
+
Or install it yourself as:
|
20
|
+
|
21
|
+
$ gem install metasploit-model
|
22
|
+
|
23
|
+
## Usage
|
24
|
+
|
25
|
+
TODO: Write usage instructions here
|
26
|
+
|
27
|
+
## Contributing
|
28
|
+
|
29
|
+
1. Fork it
|
30
|
+
2. Create your feature branch (`git checkout -b my-new-feature`)
|
31
|
+
3. Commit your changes (`git commit -am 'Add some feature'`)
|
32
|
+
4. Push to the branch (`git push origin my-new-feature`)
|
33
|
+
5. Create new Pull Request
|
data/Rakefile
ADDED
@@ -0,0 +1,52 @@
|
|
1
|
+
#!/usr/bin/env rake
|
2
|
+
begin
|
3
|
+
require 'bundler/setup'
|
4
|
+
rescue LoadError
|
5
|
+
puts 'You must `gem install bundler` and `bundle install` to run rake tasks'
|
6
|
+
end
|
7
|
+
|
8
|
+
print_without = false
|
9
|
+
APP_RAKEFILE = File.expand_path('../spec/dummy/Rakefile', __FILE__)
|
10
|
+
|
11
|
+
begin
|
12
|
+
load 'rails/tasks/engine.rake'
|
13
|
+
rescue LoadError
|
14
|
+
puts "railties not in bundle, so can't load engine tasks."
|
15
|
+
print_without = true
|
16
|
+
end
|
17
|
+
|
18
|
+
Bundler::GemHelper.install_tasks
|
19
|
+
|
20
|
+
#
|
21
|
+
# load rake files like a normal rails app
|
22
|
+
# @see http://viget.com/extend/rails-engine-testing-with-rspec-capybara-and-factorygirl
|
23
|
+
#
|
24
|
+
|
25
|
+
pathname = Pathname.new(__FILE__)
|
26
|
+
root = pathname.parent
|
27
|
+
rakefile_glob = root.join('lib', 'tasks', '**', '*.rake').to_path
|
28
|
+
|
29
|
+
Dir.glob(rakefile_glob) do |rakefile|
|
30
|
+
load rakefile
|
31
|
+
end
|
32
|
+
|
33
|
+
begin
|
34
|
+
require 'rspec/core'
|
35
|
+
rescue LoadError
|
36
|
+
puts "rspec not in bundle, so can't set up spec tasks. " \
|
37
|
+
"To run specs ensure to install the development and test groups."
|
38
|
+
print_without = true
|
39
|
+
else
|
40
|
+
require 'rspec/core/rake_task'
|
41
|
+
|
42
|
+
# @see http://viget.com/extend/rails-engine-testing-with-rspec-capybara-and-factorygirl
|
43
|
+
RSpec::Core::RakeTask.new(:spec)
|
44
|
+
|
45
|
+
task :default => :spec
|
46
|
+
end
|
47
|
+
|
48
|
+
if print_without
|
49
|
+
puts "Bundle currently installed '--without #{Bundler.settings.without.join(' ')}'."
|
50
|
+
puts "To clear the without option do `bundle install --without ''` (the --without flag with an empty string) or " \
|
51
|
+
"`rm -rf .bundle` to remove the .bundle/config manually and then `bundle install`"
|
52
|
+
end
|
@@ -0,0 +1,46 @@
|
|
1
|
+
# Reflection of the call to {Metasploit::Model::Association::ClassMethods#association}.
|
2
|
+
class Metasploit::Model::Association::Reflection < Metasploit::Model::Base
|
3
|
+
#
|
4
|
+
# Attributes
|
5
|
+
#
|
6
|
+
|
7
|
+
# @!attribute [rw] class_name
|
8
|
+
# The name {#klass}. The name of {#klass} is given instead of {#klass} directly when initializing this
|
9
|
+
# reflection to prevent circular references with autoloading or ActiveSupport::Dependencies loading.
|
10
|
+
#
|
11
|
+
# @return [String] Fully-qualified name of class in this association
|
12
|
+
attr_accessor :class_name
|
13
|
+
|
14
|
+
# @!attribute [rw] model
|
15
|
+
# The model on which this association was declared. The equivalent for ActiveRecord association reflections
|
16
|
+
# would be #active_record.
|
17
|
+
#
|
18
|
+
# @return [Class]
|
19
|
+
attr_accessor :model
|
20
|
+
|
21
|
+
# @!attribute [rw] name
|
22
|
+
# The name of this association.
|
23
|
+
#
|
24
|
+
# @return [String]
|
25
|
+
attr_accessor :name
|
26
|
+
|
27
|
+
#
|
28
|
+
# Validations
|
29
|
+
#
|
30
|
+
|
31
|
+
validates :model, :presence => true
|
32
|
+
validates :name, :presence => true
|
33
|
+
validates :class_name, :presence => true
|
34
|
+
|
35
|
+
#
|
36
|
+
# Methods
|
37
|
+
#
|
38
|
+
|
39
|
+
# Class with name {#class_name}.
|
40
|
+
#
|
41
|
+
# @return []
|
42
|
+
# @raise [NameError] if {#class_name} cannot be constantized
|
43
|
+
def klass
|
44
|
+
class_name.constantize
|
45
|
+
end
|
46
|
+
end
|
@@ -0,0 +1,125 @@
|
|
1
|
+
# Writes templates for the {#module_ancestor} to disk.
|
2
|
+
#
|
3
|
+
# @example Update files after changing
|
4
|
+
# module_ancestor = FactoryGirl.build(
|
5
|
+
# :dummy_module_ancestor
|
6
|
+
# )
|
7
|
+
# # factory already wrote template when build returned
|
8
|
+
#
|
9
|
+
# # update
|
10
|
+
# module_ancestor.module_type = FactoryGirl.generate :metasploit_model_module_type
|
11
|
+
#
|
12
|
+
# # Now the template on disk is different than the module_ancestor, so regenerate the template
|
13
|
+
# Metasploit::Model::Module::Ancestor::Spec::Template.write(module_ancestor: module_ancestor)
|
14
|
+
class Metasploit::Model::Module::Ancestor::Spec::Template < Metasploit::Model::Spec::Template
|
15
|
+
extend Metasploit::Model::Spec::Template::Write
|
16
|
+
|
17
|
+
#
|
18
|
+
# CONSTANTS
|
19
|
+
#
|
20
|
+
|
21
|
+
# Default value for {#search_pathnames}.
|
22
|
+
DEFAULT_SEARCH_PATHNAMES = [
|
23
|
+
Pathname.new('module/ancestors')
|
24
|
+
]
|
25
|
+
# Default value for {#source_relative_name}.
|
26
|
+
DEFAULT_SOURCE_RELATIVE_NAME = 'base'
|
27
|
+
|
28
|
+
#
|
29
|
+
# Attributes
|
30
|
+
#
|
31
|
+
|
32
|
+
# @!attribute [rw] metasploit_module_relative_name
|
33
|
+
# The name of the Class/Module in the template. Defaults to
|
34
|
+
# `FactoryGirl.generate :metasploit_model_module_ancestor_metasploit_module_relative_name`.
|
35
|
+
#
|
36
|
+
# @return [String]
|
37
|
+
attr_writer :metasploit_module_relative_name
|
38
|
+
|
39
|
+
# @!attribute [rw] module_ancestor
|
40
|
+
# The module ancestor to write.
|
41
|
+
#
|
42
|
+
# @return [Metasploit::Model::Module::Ancestor]
|
43
|
+
attr_accessor :module_ancestor
|
44
|
+
|
45
|
+
#
|
46
|
+
# Validations
|
47
|
+
#
|
48
|
+
|
49
|
+
validates :module_ancestor,
|
50
|
+
presence: true
|
51
|
+
|
52
|
+
#
|
53
|
+
# Methods
|
54
|
+
#
|
55
|
+
|
56
|
+
# The pathname where to {#write} to template results.
|
57
|
+
#
|
58
|
+
# @return [Pathname] `Metasploit::Model::Module::Ancestor#real_pathname.
|
59
|
+
# @return [nil] if {#module_ancestor} is `nil`.
|
60
|
+
# @return [nil] if {#module_ancestor #module_ancestor's} `Metasploit::Model::Module::Ancestor#real_pathname` is `nil`
|
61
|
+
# after derivation.
|
62
|
+
def destination_pathname
|
63
|
+
unless instance_variable_defined? :@destination_pathname
|
64
|
+
@destination_pathname = nil
|
65
|
+
|
66
|
+
if module_ancestor
|
67
|
+
destination_pathname = module_ancestor.real_pathname
|
68
|
+
|
69
|
+
unless destination_pathname
|
70
|
+
# validate to derive real_path and therefore real_pathname
|
71
|
+
module_ancestor.valid?
|
72
|
+
|
73
|
+
destination_pathname = module_ancestor.real_pathname
|
74
|
+
end
|
75
|
+
|
76
|
+
@destination_pathname = destination_pathname
|
77
|
+
end
|
78
|
+
end
|
79
|
+
|
80
|
+
@destination_pathname
|
81
|
+
end
|
82
|
+
|
83
|
+
# Local variables exposed to partials.
|
84
|
+
#
|
85
|
+
# @return [Hash{Symbol => Object}] {#metasploit_module_relative_name} as :metasploit_module_relative_name and
|
86
|
+
# {#module_ancestor} at :module_ancestor.
|
87
|
+
def locals
|
88
|
+
@locals ||= {
|
89
|
+
metasploit_module_relative_name: metasploit_module_relative_name,
|
90
|
+
module_ancestor: module_ancestor
|
91
|
+
}
|
92
|
+
end
|
93
|
+
|
94
|
+
# Name of the Class/Module declared in the template file.
|
95
|
+
#
|
96
|
+
# @return [String]
|
97
|
+
def metasploit_module_relative_name
|
98
|
+
@metasploit_module_relative_name ||= FactoryGirl.generate :metasploit_model_module_ancestor_metasploit_module_relative_name
|
99
|
+
end
|
100
|
+
|
101
|
+
# Whether to overwrite a pre-existing file.
|
102
|
+
#
|
103
|
+
# @return [Boolean] Defaults to `false` since nothing should write the template before the ancestor.
|
104
|
+
def overwrite
|
105
|
+
unless instance_variable_defined? :@overwrite
|
106
|
+
@overwrite = false
|
107
|
+
end
|
108
|
+
|
109
|
+
@overwrite
|
110
|
+
end
|
111
|
+
|
112
|
+
# Pathnames to search for partials.
|
113
|
+
#
|
114
|
+
# @return [Array<Pathname>] {DEFAULT_SEARCH_PATHNAMES}
|
115
|
+
def search_pathnames
|
116
|
+
@search_pathnames ||= DEFAULT_SEARCH_PATHNAMES.dup
|
117
|
+
end
|
118
|
+
|
119
|
+
# Name of template under {#search_pathnames} without {EXTENSION}.
|
120
|
+
#
|
121
|
+
# @return [String] Defaults to {DEFAULT_SOURCE_RELATIVE_NAME}.
|
122
|
+
def source_relative_name
|
123
|
+
@source_relative_name ||= DEFAULT_SOURCE_RELATIVE_NAME
|
124
|
+
end
|
125
|
+
end
|
@@ -0,0 +1,92 @@
|
|
1
|
+
# Writes templates for the {#module_class #module_class's} {Metasploit::Model::Module::Class#ancestors} to disk.
|
2
|
+
#
|
3
|
+
# @example Update files after changing associations
|
4
|
+
# module_class = FactoryGirl.build(
|
5
|
+
# :dummy_module_class
|
6
|
+
# )
|
7
|
+
# # factory already wrote template when build returned
|
8
|
+
#
|
9
|
+
# # update associations
|
10
|
+
# rank = FactoryGirl.generate :dummy_rank
|
11
|
+
# module_class.rank = rank
|
12
|
+
#
|
13
|
+
# # Now the template on disk is different than the module_class, so regenerate the template
|
14
|
+
# Metasploit::Model::Module::Class::Spec::Template.write(module_class: module_class)
|
15
|
+
class Metasploit::Model::Module::Class::Spec::Template < Metasploit::Model::Base
|
16
|
+
extend Metasploit::Model::Spec::Template::Write
|
17
|
+
|
18
|
+
#
|
19
|
+
# Attributes
|
20
|
+
#
|
21
|
+
|
22
|
+
# @!attribute [rw] module_class
|
23
|
+
# The {Metasploit::Model::Module::Class} whose {Metasploit::Model::Module::Class#ancestors} need to be templated in
|
24
|
+
# {#ancestor_templates}.
|
25
|
+
#
|
26
|
+
# @return [Metasploit::Model::Module::Class]
|
27
|
+
attr_accessor :module_class
|
28
|
+
|
29
|
+
#
|
30
|
+
# Validations
|
31
|
+
#
|
32
|
+
|
33
|
+
validates :module_class,
|
34
|
+
presence: true
|
35
|
+
validate :ancestor_templates_valid
|
36
|
+
|
37
|
+
#
|
38
|
+
# Methods
|
39
|
+
#
|
40
|
+
|
41
|
+
# Template for {#module_class} {Metasploit::Model::Module::Class#ancestors} with the addition of {#module_class} to
|
42
|
+
# the {Metasploit::Model::Spec::Template#locals} and adding 'module/classes' to the front of the
|
43
|
+
# {Metasploit::Model::Spec::Template#search_pathnames}.
|
44
|
+
#
|
45
|
+
# @return [Array<Metasploit::Model::Module::Ancestor::Spec::Template>]
|
46
|
+
# @return [[]] if {#module_class} is `nil`.
|
47
|
+
def ancestor_templates
|
48
|
+
unless instance_variable_defined? :@ancestor_templates
|
49
|
+
if module_class
|
50
|
+
@ancestor_templates = module_class.ancestors.collect { |module_ancestor|
|
51
|
+
Metasploit::Model::Module::Ancestor::Spec::Template.new(
|
52
|
+
module_ancestor: module_ancestor
|
53
|
+
).tap { |module_ancestor_template|
|
54
|
+
module_ancestor_template.locals[:module_class] = module_class
|
55
|
+
module_ancestor_template.overwrite = true
|
56
|
+
|
57
|
+
module_ancestor_template.search_pathnames.unshift(
|
58
|
+
Pathname.new('module/classes')
|
59
|
+
)
|
60
|
+
}
|
61
|
+
}
|
62
|
+
end
|
63
|
+
|
64
|
+
@ancestor_templates ||= []
|
65
|
+
end
|
66
|
+
|
67
|
+
@ancestor_templates
|
68
|
+
end
|
69
|
+
|
70
|
+
# Writes {#ancestor_templates} to disk.
|
71
|
+
#
|
72
|
+
# @return [void]
|
73
|
+
# @raise (see Metasploit::Model::Spec::Template)
|
74
|
+
def write
|
75
|
+
ancestor_templates.each(&:write)
|
76
|
+
end
|
77
|
+
|
78
|
+
private
|
79
|
+
|
80
|
+
# Validates that all {#ancestor_templates} are valid.
|
81
|
+
#
|
82
|
+
# @return [void]
|
83
|
+
def ancestor_templates_valid
|
84
|
+
# can't use ancestor_templates.all?(&:valid?) as it will short-circuit and want all ancestor_templates to have
|
85
|
+
# validation errors
|
86
|
+
valids = ancestor_templates.map(&:valid?)
|
87
|
+
|
88
|
+
unless valids.all?
|
89
|
+
errors.add(:ancestor_templates, :invalid, value: ancestor_templates)
|
90
|
+
end
|
91
|
+
end
|
92
|
+
end
|