Sha256: c7837a88d3709a6efffafd2019088affd02078366bb14fa6042420690ee0abe5
Contents?: true
Size: 799 Bytes
Versions: 13
Compression:
Stored size: 799 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 /by interconnect/i.match?(target.head_and_get(path).body) 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