18 lines
384 B
Ruby
18 lines
384 B
Ruby
require_relative 'timthumb_version/bad_request'
|
|
|
|
module WPScan
|
|
module Finders
|
|
module TimthumbVersion
|
|
# Timthumb Version Finder
|
|
class Base
|
|
include CMSScanner::Finders::UniqueFinder
|
|
|
|
# @param [ WPScan::Timthumb ] target
|
|
def initialize(target)
|
|
finders << TimthumbVersion::BadRequest.new(target)
|
|
end
|
|
end
|
|
end
|
|
end
|
|
end
|