Sha256: 07a9641557b2cd89642c9b5cb821f7cd9597a245709dbdb4976e804fe4f358cd
Contents?: true
Size: 794 Bytes
Versions: 13
Compression:
Stored size: 794 Bytes
Contents
# frozen_string_literal: true module CMSScanner module Finders module InterestingFindings # SearchReplaceDB2 finder class SearchReplaceDB2 < Finder # @return [ InterestingFinding ] def aggressive(_opts = {}) path = 'searchreplacedb2.php' return unless target.head_and_get(path).body =~ /by interconnect/i NS::Model::InterestingFinding.new(target.url(path), confidence: 100, found_by: found_by, references: references) end def references { url: 'https://interconnectit.com/products/search-and-replace-for-wordpress-databases/' } end end end end end
Version data entries
13 entries across 13 versions & 1 rubygems