Class: WPScan::Finders::Plugins::Base
- Inherits:
-
Object
- Object
- WPScan::Finders::Plugins::Base
- Includes:
- CMSScanner::Finders::SameTypeFinder
- Defined in:
- app/finders/plugins.rb
Overview
Plugins Finder
Instance Method Summary collapse
-
#initialize(target) ⇒ Base
constructor
A new instance of Base.
Constructor Details
#initialize(target) ⇒ Base
Returns a new instance of Base.
23 24 25 26 27 28 29 30 31 32 33 |
# File 'app/finders/plugins.rb', line 23 def initialize(target) finders << Plugins::UrlsInHomepage.new(target) << Plugins::UrlsIn404Page.new(target) << Plugins::HeaderPattern.new(target) << Plugins::Comment.new(target) << Plugins::Xpath.new(target) << Plugins::BodyPattern.new(target) << Plugins::JavascriptVar.new(target) << Plugins::KnownLocations.new(target) end |