Sha256: 183c2046e948e613cb287cd65e09a966654634c119b1636338c682fdb9d95896

Contents?: true

Size: 1.44 KB

Versions: 4

Compression:

Stored size: 1.44 KB

Contents

# The result of {#run running} a {#match}.
class MetasploitDataModels::AutomaticExploitation::MatchResult < ActiveRecord::Base
  #
  # CONSTANTS
  #

  # Running associated exploit did NOT create a session
  FAILED = "failed"
  # Running associated exploit created a session
  SUCCEEDED = "succeeded"

  # Valid values for {#state}
  VALID_STATES = [FAILED, SUCCEEDED]

  #
  # Associations
  #

  # A {MetasploitDataModels::AutomaticExploitation::Match#module_detail Metasploit Module} matched to
  # {MetasploitDataModels::AutomaticExploitation::Match#matchable Mdm::Host or Mdm::Service}.
  belongs_to :match,
             class_name: 'MetasploitDataModels::AutomaticExploitation::Match',
             inverse_of: :match_results,
             dependent: :destroy

  # A mass automatic exploitation run.
  belongs_to :run,
             inverse_of: :match_results,
             class_name: 'MetasploitDataModels::AutomaticExploitation::Run'

  #
  # Attributes
  #

  # @!attribute state
  #   Whether the {#run} of {#match} succeeded.
  #
  #   @return ['failed', 'succeeded']

  #
  # Validations
  #

  # must be present and one of allowable values
  validates :state,
            presence: true,
            inclusion: VALID_STATES

  #
  # Scopes
  #

  # Runs of {#match} that failed
  scope :failed, lambda { where(state:"failed") }

  # Runs of {#match} that succeeded
  scope :succeeded, lambda { where(state:"succeeded") }

  Metasploit::Concern.run(self)
end

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
metasploit_data_models-1.2.0 app/models/metasploit_data_models/automatic_exploitation/match_result.rb
metasploit_data_models-1.1.0 app/models/metasploit_data_models/automatic_exploitation/match_result.rb
metasploit_data_models-1.0.1 app/models/metasploit_data_models/automatic_exploitation/match_result.rb
metasploit_data_models-1.0.0 app/models/metasploit_data_models/automatic_exploitation/match_result.rb