Class: CMSScanner::Finders::InterestingFindings::Base
- Inherits:
-
Object
- Object
- CMSScanner::Finders::InterestingFindings::Base
- Includes:
- CMSScanner::Finders::IndependentFinder
- Defined in:
- app/finders/interesting_findings.rb
Overview
Interesting Files Finder
Instance Method Summary collapse
-
#initialize(target) ⇒ Base
constructor
A new instance of Base.
Methods included from CMSScanner::Finders::IndependentFinder
Constructor Details
#initialize(target) ⇒ Base
Returns a new instance of Base.
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 |