Sha256: 47b5a6fb36b56dedfccf91ad262ce7b572f043c44ccda078b7fc42fd608bd2dc

Contents?: true

Size: 1.35 KB

Versions: 35

Compression:

Stored size: 1.35 KB

Contents

# frozen_string_literal: true

require_relative 'interesting_findings/readme'
require_relative 'interesting_findings/wp_cron'
require_relative 'interesting_findings/multisite'
require_relative 'interesting_findings/debug_log'
require_relative 'interesting_findings/backup_db'
require_relative 'interesting_findings/mu_plugins'
require_relative 'interesting_findings/registration'
require_relative 'interesting_findings/tmm_db_migrate'
require_relative 'interesting_findings/upload_sql_dump'
require_relative 'interesting_findings/full_path_disclosure'
require_relative 'interesting_findings/duplicator_installer_log'
require_relative 'interesting_findings/upload_directory_listing'
require_relative 'interesting_findings/emergency_pwd_reset_script'

module WPScan
  module Finders
    module InterestingFindings
      # Interesting Files Finder
      class Base < CMSScanner::Finders::InterestingFindings::Base
        # @param [ WPScan::Target ] target
        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
      end
    end
  end
end

Version data entries

35 entries across 35 versions & 1 rubygems

Version Path
wpscan-3.8.12 app/finders/interesting_findings.rb
wpscan-3.8.11 app/finders/interesting_findings.rb
wpscan-3.8.10 app/finders/interesting_findings.rb
wpscan-3.8.9 app/finders/interesting_findings.rb
wpscan-3.8.8 app/finders/interesting_findings.rb
wpscan-3.8.7 app/finders/interesting_findings.rb
wpscan-3.8.6 app/finders/interesting_findings.rb
wpscan-3.8.5 app/finders/interesting_findings.rb
wpscan-3.8.4 app/finders/interesting_findings.rb
wpscan-3.8.3 app/finders/interesting_findings.rb
wpscan-3.8.2 app/finders/interesting_findings.rb
wpscan-3.8.1 app/finders/interesting_findings.rb
wpscan-3.8.0 app/finders/interesting_findings.rb
wpscan-3.7.11 app/finders/interesting_findings.rb
wpscan-3.7.10 app/finders/interesting_findings.rb
wpscan-3.7.9 app/finders/interesting_findings.rb
wpscan-3.7.8 app/finders/interesting_findings.rb
wpscan-3.7.7 app/finders/interesting_findings.rb
wpscan-3.7.6 app/finders/interesting_findings.rb
wpscan-3.7.5 app/finders/interesting_findings.rb