Sha256: 75fc272506f495a6b329684d84df74c1fa2b1ef361fadf7779c1154f8383c0ca

Contents?: true

Size: 639 Bytes

Versions: 7

Compression:

Stored size: 639 Bytes

Contents

module WPScan
  module Finders
    module InterestingFindings
      # DuplicatorInstallerLog finder
      class DuplicatorInstallerLog < CMSScanner::Finders::Finder
        # @return [ InterestingFinding ]
        def aggressive(_opts = {})
          url = target.url('installer-log.txt')
          res = Browser.get(url)

          return unless res.body =~ /DUPLICATOR INSTALL-LOG/

          WPScan::DuplicatorInstallerLog.new(
            url,
            confidence: 100,
            found_by: DIRECT_ACCESS,
            references: { url: 'https://www.exploit-db.com/ghdb/3981/' }
          )
        end
      end
    end
  end
end

Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
wpscan-3.4.5 app/finders/interesting_findings/duplicator_installer_log.rb
wpscan-3.4.4 app/finders/interesting_findings/duplicator_installer_log.rb
wpscan-3.4.3 app/finders/interesting_findings/duplicator_installer_log.rb
wpscan-3.4.2 app/finders/interesting_findings/duplicator_installer_log.rb
wpscan-3.4.1 app/finders/interesting_findings/duplicator_installer_log.rb
wpscan-3.4.0 app/finders/interesting_findings/duplicator_installer_log.rb
wpscan-3.3.3 app/finders/interesting_findings/duplicator_installer_log.rb