ronin-rb/ronin-payloads

View on GitHub
lib/ronin/payloads/cli/payload_methods.rb

Summary

Maintainability
A
1 hr
Test Coverage
# frozen_string_literal: true
#
# ronin-payloads - A Ruby micro-framework for writing and running exploit
# payloads.
#
# Copyright (c) 2007-2023 Hal Brodigan (postmodern.mod3 at gmail.com)
#
# ronin-payloads is free software: you can redistribute it and/or modify
# it under the terms of the GNU Lesser General Public License as published
# by the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# ronin-payloads is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
# GNU Lesser General Public License for more details.
#
# You should have received a copy of the GNU Lesser General Public License
# along with ronin-payloads.  If not, see <https://www.gnu.org/licenses/>.
#

require 'ronin/payloads/registry'
require 'ronin/payloads/exceptions'
require 'ronin/core/params/exceptions'

module Ronin
  module Payloads
    class CLI
      #
      # Common methods for working with payloads.
      #
      module PayloadMethods
        #
        # Loads a payload class.
        #
        # @param [String] name
        #   The payload name to load.
        #
        # @return [Class<Payload>]
        #   The loaded payload class.
        #
        def load_payload(name)
          Payloads.load_class(name)
        rescue Payloads::ClassNotFound => error
          print_error(error.message)
          exit(1)
        rescue => error
          print_exception(error)
          print_error("an unhandled exception occurred while loading payload #{name}")
          exit(-1)
        end

        #
        # Loads the payload from a given file.
        #
        # @param [String] file
        #   The file to load the payload class from.
        #
        # @return [Class<Payload>]
        #   The loaded payload class.
        #
        def load_payload_from(file)
          Payloads.load_class_from_file(file)
        rescue Payloads::ClassNotFound => error
          print_error(error.message)
          exit(1)
        rescue => error
          print_exception(error)
          print_error("an unhandled exception occurred while loading payload from file #{file}")
          exit(-1)
        end

        #
        # Initializes the payload class.
        #
        # @param [Class<Payload>] payload_class
        #   The encoder class.
        #
        # @param [Hash{Symbol => Object}] kwargs
        #   Additional keyword arguments for {Payload#initialize}.
        #
        # @return [Payload]
        #   The initialized payload object.
        #
        def initialize_payload(payload_class,**kwargs)
          payload_class.new(**kwargs)
        rescue Core::Params::ParamError => error
          print_error(error.message)
          exit(1)
        rescue => error
          print_exception(error)
          print_error("an unhandled exception occurred while initializing payload #{payload_class.id}")
          exit(-1)
        end

        #
        # Validates the loaded payload.
        #
        # @param [Payload] payload
        #   The payload to validate.
        #
        # @raise [Ronin::Core::Params::RequiredParam]
        #   One of the required params was not set.
        #
        # @raise [ValidationError]
        #   Another payload validation error occurred.
        #
        def validate_payload(payload)
          payload.perform_validate
        rescue Core::Params::ParamError, ValidationError => error
          print_error("failed to validate the payload #{payload.class_id}: #{error.message}")
          exit(1)
        rescue => error
          print_exception(error)
          print_error("an unhandled exception occurred while validating the payload #{payload.class_id}")
          exit(-1)
        end
      end
    end
  end
end