Sha256: c79a594711930c9b5a195bc8b121cbeb282049b00c0f229684b275aef9181172

Contents?: true

Size: 721 Bytes

Versions: 28

Compression:

Stored size: 721 Bytes

Contents

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

28 entries across 28 versions & 1 rubygems

Version Path
cms_scanner-0.0.37.9 app/finders/interesting_findings.rb
cms_scanner-0.0.37.8 app/finders/interesting_findings.rb
cms_scanner-0.0.37.7 app/finders/interesting_findings.rb
cms_scanner-0.0.37.6 app/finders/interesting_findings.rb
cms_scanner-0.0.37.5 app/finders/interesting_findings.rb
cms_scanner-0.0.37.4 app/finders/interesting_findings.rb
cms_scanner-0.0.37.3 app/finders/interesting_findings.rb
cms_scanner-0.0.37.2 app/finders/interesting_findings.rb
cms_scanner-0.0.37.1 app/finders/interesting_findings.rb
cms_scanner-0.0.37 app/finders/interesting_findings.rb
cms_scanner-0.0.36 app/finders/interesting_findings.rb
cms_scanner-0.0.35.1 app/finders/interesting_findings.rb
cms_scanner-0.0.35 app/finders/interesting_findings.rb
cms_scanner-0.0.34 app/finders/interesting_findings.rb
cms_scanner-0.0.33 app/finders/interesting_findings.rb
cms_scanner-0.0.32 app/finders/interesting_findings.rb
cms_scanner-0.0.31 app/finders/interesting_findings.rb
cms_scanner-0.0.30 app/finders/interesting_findings.rb
cms_scanner-0.0.29 app/finders/interesting_findings.rb
cms_scanner-0.0.28 app/finders/interesting_findings.rb