Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
wpscanteam
GitHub Repository: wpscanteam/wpscan
Path: blob/master/app/finders/timthumbs.rb
485 views
1
# frozen_string_literal: true
2
3
require_relative 'timthumbs/known_locations'
4
5
module 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
19
end
20
21