Sha256: ef906f99153f143e448c396bfcca56ce10ecc8e667f6f89b78eb4feff1784bbc

Contents?: true

Size: 1.42 KB

Versions: 15

Compression:

Stored size: 1.42 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/php_disabled'
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 PHPDisabled
          ].each do |f|
            finders << InterestingFindings.const_get(f).new(target)
          end
        end
      end
    end
  end
end

Version data entries

15 entries across 15 versions & 1 rubygems

Version Path
wpscan-3.8.28 app/finders/interesting_findings.rb
wpscan-3.8.27 app/finders/interesting_findings.rb
wpscan-3.8.26 app/finders/interesting_findings.rb
wpscan-3.8.25 app/finders/interesting_findings.rb
wpscan-3.8.24 app/finders/interesting_findings.rb
wpscan-3.8.22 app/finders/interesting_findings.rb
wpscan-3.8.21 app/finders/interesting_findings.rb
wpscan-3.8.20 app/finders/interesting_findings.rb
wpscan-3.8.19 app/finders/interesting_findings.rb
wpscan-3.8.18 app/finders/interesting_findings.rb
wpscan-3.8.17 app/finders/interesting_findings.rb
wpscan-3.8.16 app/finders/interesting_findings.rb
wpscan-3.8.15 app/finders/interesting_findings.rb
wpscan-3.8.14 app/finders/interesting_findings.rb
wpscan-3.8.13 app/finders/interesting_findings.rb