rastating/wordpress-exploit-framework

View on GitHub
lib/wpxf/cli/options.rb

Summary

Maintainability
A
0 mins
Test Coverage
# frozen_string_literal: true

module Wpxf
  module Cli
    # Methods for handling commands that interact with module options.
    module Options
      def initialize
        super
        self.global_opts = {}
      end

      def unset(name)
        unless context
          print_bad 'No module loaded yet'
          return
        end

        if name.eql?('payload')
          context.module.payload = nil
        else
          context.module.unset_option(name)
        end

        print_good "Unset #{name}"
      end

      def apply_global_options(target)
        return if target.nil?
        global_opts.each do |k, v|
          target.set_option_value(k, v)
        end
      end

      def load_payload(name)
        if context.module.aux_module?
          print_warning 'Auxiliary modules do not use payloads'
          return
        end

        begin
          payload = context.load_payload(name)
          print_good "Loaded payload: #{payload}"
        rescue StandardError => e
          print_bad "Failed to load payload: #{e}"
          print_bad e.backtrace.join("\n\t")
          return
        end

        apply_global_options(payload)
        refresh_autocomplete_options
      end

      def set_option_value(name, value, silent = false)
        res = context.module.set_option_value(name, value)

        return if silent

        if res == :not_found
          print_warning "\"#{name}\" is not a valid option"
        elsif res == :invalid
          print_bad "\"#{value}\" is not a valid value"
        else
          print_good "Set #{name} => #{res}"
        end
      end

      def gset(name, *args)
        if name.eql? 'payload'
          print_warning 'The payload cannot be globally set'
          return
        end

        value = args.join(' ')
        global_opts[name] = value
        set_option_value(name, value, true) if context

        print_good "Globally set the value of #{name} to #{value}"
      end

      def gunset(name)
        global_opts.delete(name)
        context.module.unset_option(name) if module_loaded?
        print_good "Removed the global setting for #{name}"
      end

      def set(name, *args)
        value = args.join(' ')
        return unless module_loaded?

        begin
          if name.eql? 'payload'
            load_payload(value)
          else
            set_option_value(name, value)
          end
        rescue StandardError => e
          print_bad "Failed to set #{name}: #{e}"
          print_bad e.backtrace.join("\n\t")
        end
      end

      attr_accessor :global_opts
    end
  end
end