Sha256: a54124ffd755233cfdffece7de1b5f9ac428cf6e00e2657f01ff97ae1770dc51

Contents?: true

Size: 752 Bytes

Versions: 51

Compression:

Stored size: 752 Bytes

Contents

# frozen_string_literal: true

require_relative 'interesting_findings/headers'
require_relative 'interesting_findings/robots_txt'
require_relative 'interesting_findings/fantastico_fileslist'
require_relative 'interesting_findings/search_replace_db_2'
require_relative 'interesting_findings/xml_rpc'

module CMSScanner
  module Finders
    module InterestingFindings
      # Interesting Files Finder
      class Base
        include IndependentFinder

        # @param [ CMSScanner::Target ] target
        def initialize(target)
          %w[Headers RobotsTxt FantasticoFileslist SearchReplaceDB2 XMLRPC].each do |f|
            finders << NS::Finders::InterestingFindings.const_get(f).new(target)
          end
        end
      end
    end
  end
end

Version data entries

51 entries across 51 versions & 3 rubygems

Version Path
cms_scanner-0.15.0 app/finders/interesting_findings.rb
cms_scanner-0.14.3 app/finders/interesting_findings.rb
cms_scanner-0.14.2 app/finders/interesting_findings.rb
cms_scanner-0.13.9 app/finders/interesting_findings.rb
cms_scanner-0.13.8 app/finders/interesting_findings.rb
new_cms_scanner-0.13.7 app/finders/interesting_findings.rb
k8s_cms_scanner-0.1.0 app/finders/interesting_findings.rb
cms_scanner-0.13.7 app/finders/interesting_findings.rb
cms_scanner-0.13.6 app/finders/interesting_findings.rb
cms_scanner-0.13.5 app/finders/interesting_findings.rb
cms_scanner-0.13.4 app/finders/interesting_findings.rb
cms_scanner-0.13.3 app/finders/interesting_findings.rb
cms_scanner-0.13.2 app/finders/interesting_findings.rb
cms_scanner-0.13.1 app/finders/interesting_findings.rb
cms_scanner-0.13.0 app/finders/interesting_findings.rb
cms_scanner-0.12.2 app/finders/interesting_findings.rb
cms_scanner-0.12.1 app/finders/interesting_findings.rb
cms_scanner-0.12.0 app/finders/interesting_findings.rb
cms_scanner-0.11.0 app/finders/interesting_findings.rb
cms_scanner-0.10.1 app/finders/interesting_findings.rb