Sha256: e9a8e1a689a0cf28f4598fde9ef818fe2a1fd844c9d5797fd9893eda6ffa1ce8
Contents?: true
Size: 564 Bytes
Versions: 21
Compression:
Stored size: 564 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 /DUPLICATOR(-|\s)?(PRO|LITE)?:? INSTALL-LOG/i.match?(target.head_and_get(path).body) Model::DuplicatorInstallerLog.new(target.url(path), confidence: 100, found_by: DIRECT_ACCESS) end end end end end
Version data entries
21 entries across 21 versions & 1 rubygems