Class: CMSScanner::Finders::InterestingFiles

Inherits:
Object
  • Object
show all
Includes:
IndependentFinder
Defined in:
app/finders/interesting_files.rb

Overview

Interesting Files Finder

Instance Method Summary collapse

Methods included from IndependentFinder

#find, #finders, included

Constructor Details

#initialize(target) ⇒ InterestingFiles

Returns a new instance of InterestingFiles.

Parameters:



14
15
16
17
18
# File 'app/finders/interesting_files.rb', line 14

def initialize(target)
  %w(Headers RobotsTxt FantasticoFileslist SearchReplaceDB2 XMLRPC).each do |f|
    finders << NS.const_get("Finders::InterestingFile::#{f}").new(target)
  end
end