1# frozen_string_literal: true 2 3require_relative 'timthumbs/known_locations' 4 5module WPScan 6 module Finders 7 module Timthumbs 8 # Timthumbs Finder 9 class Base 10 include CMSScanner::Finders::SameTypeFinder 11 12 # @param [ WPScan::Target ] target 13 def initialize(target) 14 finders << Timthumbs::KnownLocations.new(target) 15 end 16 end 17 end 18 end 19end 20 21