Sha256: 70246df1aed8f46e2b2fe910f5e5622a3864ec7b7b9aa0d9e4ee757ee98d7626
Contents?: true
Size: 635 Bytes
Versions: 15
Compression:
Stored size: 635 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::InterestingFinding.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
15 entries across 15 versions & 1 rubygems