Class: WPScan::Finders::InterestingFindings::Base
- Inherits:
-
CMSScanner::Finders::InterestingFindings::Base
- Object
- CMSScanner::Finders::InterestingFindings::Base
- WPScan::Finders::InterestingFindings::Base
- Defined in:
- app/finders/interesting_findings.rb
Overview
Interesting Files 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.
24 25 26 27 28 29 30 31 32 33 34 |
# File 'app/finders/interesting_findings.rb', line 24 def initialize(target) super(target) %w[ Readme DebugLog FullPathDisclosure BackupDB DuplicatorInstallerLog Multisite MuPlugins Registration UploadDirectoryListing TmmDbMigrate UploadSQLDump EmergencyPwdResetScript WPCron PHPDisabled ].each do |f| finders << InterestingFindings.const_get(f).new(target) end end |