Sha256: dcec1e5bde982c3d44e5b7d2bf786d55af88f57473673db392012e7ce8eef456
Contents?: true
Size: 660 Bytes
Versions: 8
Compression:
Stored size: 660 Bytes
Contents
# frozen_string_literal: true module WPScan module Finders module InterestingFindings # DuplicatorInstallerLog finder class DuplicatorInstallerLog < CMSScanner::Finders::Finder # @return [ InterestingFinding ] def aggressive(_opts = {}) path = 'installer-log.txt' return unless target.head_and_get(path).body =~ /DUPLICATOR INSTALL-LOG/ Model::DuplicatorInstallerLog.new( target.url(path), confidence: 100, found_by: DIRECT_ACCESS, references: { url: 'https://www.exploit-db.com/ghdb/3981/' } ) end end end end end
Version data entries
8 entries across 8 versions & 1 rubygems