Sha256: 861deabc9f71f7f191de7c8d2427a0a45bb3e1d5f71b52699e5e1c45c6fbe9bb

Contents?: true

Size: 1.55 KB

Versions: 3

Compression:

Stored size: 1.55 KB

Contents

require_relative 'core/cli_options'

module CMSScanner
  module Controller
    # Core Controller
    class Core < Base
      def setup_cache
        return unless parsed_options[:cache_dir]

        storage_path = File.join(parsed_options[:cache_dir], Digest::MD5.hexdigest(target.url))

        Typhoeus::Config.cache = Cache::Typhoeus.new(storage_path)
        Typhoeus::Config.cache.clean if parsed_options[:clear_cache]
      end

      def before_scan(output_banner = true)
        output('banner') if output_banner

        setup_cache

        check_target_availability
      end

      # Checks that the target is accessible, raises related errors otherwise
      #
      # @return [ Void ]
      def check_target_availability
        res = NS::Browser.get(target.url)

        case res.code
        when 0
          fail TargetDownError, res
        when 401
          fail HTTPAuthRequiredError
        when 403
          fail AccessForbiddenError
        when 407
          fail ProxyAuthRequiredError
        end

        redirection = target.redirection
        fail HTTPRedirectError, redirection if redirection && !parsed_options[:ignore_main_redirect]
      end

      def run
        @start_time   = Time.now
        @start_memory = memory_usage

        output('started', url: target.url)
      end

      def after_scan
        @stop_time     = Time.now
        @elapsed       = @stop_time - @start_time
        @used_memory   = memory_usage - @start_memory
        @requests_done = CMSScanner.total_requests

        output('finished')
      end
    end
  end
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
cms_scanner-0.0.37.2 app/controllers/core.rb
cms_scanner-0.0.37.1 app/controllers/core.rb
cms_scanner-0.0.37 app/controllers/core.rb