Sha256: e0ac51ffdb234a8552dc7c498198e8546ec374fb2b75ecefd8305e1ca3113911

Contents?: true

Size: 490 Bytes

Versions: 14

Compression:

Stored size: 490 Bytes

Contents

# frozen_string_literal: true

require_relative 'themes/urls_in_homepage'
require_relative 'themes/known_locations'

module WPScan
  module Finders
    module Themes
      # themes Finder
      class Base
        include CMSScanner::Finders::SameTypeFinder

        # @param [ WPScan::Target ] target
        def initialize(target)
          finders <<
            Themes::UrlsInHomepage.new(target) <<
            Themes::KnownLocations.new(target)
        end
      end
    end
  end
end

Version data entries

14 entries across 14 versions & 1 rubygems

Version Path
wpscan-3.7.3 app/finders/themes.rb
wpscan-3.7.2 app/finders/themes.rb
wpscan-3.7.1 app/finders/themes.rb
wpscan-3.7.0 app/finders/themes.rb
wpscan-3.6.3 app/finders/themes.rb
wpscan-3.6.2 app/finders/themes.rb
wpscan-3.6.1 app/finders/themes.rb
wpscan-3.6.0 app/finders/themes.rb
wpscan-3.5.5 app/finders/themes.rb
wpscan-3.5.4 app/finders/themes.rb
wpscan-3.5.3 app/finders/themes.rb
wpscan-3.5.2 app/finders/themes.rb
wpscan-3.5.1 app/finders/themes.rb
wpscan-3.5.0 app/finders/themes.rb