Class: CMSScanner::Finders::InterestingFindings::Base

Inherits:
Object
  • Object
show all
Includes:
CMSScanner::Finders::IndependentFinder
Defined in:
app/finders/interesting_findings.rb

Overview

Interesting Files Finder

Instance Method Summary collapse

Methods included from CMSScanner::Finders::IndependentFinder

#find, #finders

Constructor Details

#initialize(target) ⇒ Base

Returns a new instance of Base.

Parameters:



17
18
19
20
21
# File 'app/finders/interesting_findings.rb', line 17

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