Sha256: 3da98c61eb6dde7a7372eb7091a54f548beb1dde3d9d5a65dc043d56b2378fc9
Contents?: true
Size: 833 Bytes
Versions: 15
Compression:
Stored size: 833 Bytes
Contents
module CMSScanner module Finders module InterestingFindings # SearchReplaceDB2 finder class SearchReplaceDB2 < Finder # @return [ String ] The url to the searchreplacedb2 PHP file def url target.url('searchreplacedb2.php') end # @return [ InterestingFinding ] def aggressive(_opts = {}) res = NS::Browser.get(url) return unless res && res.code == 200 && res.body =~ /by interconnect/i NS::InterestingFinding.new(url, confidence: 100, found_by: found_by, references: references) end def references %w(https://interconnectit.com/products/search-and-replace-for-wordpress-databases/) end end end end end
Version data entries
15 entries across 15 versions & 1 rubygems