Sha256: 48fd1d46ada1fb4618456052b117246828074802bf57aca7e0107bd64822e197
Contents?: true
Size: 504 Bytes
Versions: 25
Compression:
Stored size: 504 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::SearchReplaceDB2.new(target.url(path), confidence: 100, found_by: found_by) end end end end end
Version data entries
25 entries across 25 versions & 3 rubygems