Sha256: fbb13a057673a08057405840f7cd24e0f0fa321a7a64a1023177699a4db69b8a

Contents?: true

Size: 1.46 KB

Versions: 5

Compression:

Stored size: 1.46 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

        fail "The url supplied '#{target.url}' seems to be down" unless target.online?

        fail AccessForbiddenError if target.access_forbidden?
        fail HTTPAuthRequiredError if target.http_auth?
        fail ProxyAuthRequiredError if target.proxy_auth?

        # TODO: ask if the redirection should be followed
        # if user_interaction? is allowed (if followed, the Cache#storage_path should be updated)
        redirection = target.redirection
        fail "The url supplied redirects to #{redirection}" if redirection
      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

5 entries across 5 versions & 1 rubygems

Version Path
cms_scanner-0.0.27 app/controllers/core.rb
cms_scanner-0.0.26 app/controllers/core.rb
cms_scanner-0.0.25 app/controllers/core.rb
cms_scanner-0.0.24 app/controllers/core.rb
cms_scanner-0.0.23 app/controllers/core.rb