Class: WPScan::Finders::InterestingFindings::Base

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

Overview

Interesting Files Finder

Instance Method Summary collapse

Constructor Details

#initialize(target) ⇒ Base

Returns a new instance of Base.

Parameters:



23
24
25
26
27
28
29
30
31
32
33
# File 'app/finders/interesting_findings.rb', line 23

def initialize(target)
  super(target)

  %w[
    Readme DebugLog FullPathDisclosure BackupDB DuplicatorInstallerLog
    Multisite MuPlugins Registration UploadDirectoryListing TmmDbMigrate
    UploadSQLDump EmergencyPwdResetScript WPCron
  ].each do |f|
    finders << InterestingFindings.const_get(f).new(target)
  end
end