Sha256: 8acdb880b58a0a56b29278ecd3ea836f41a2b4175f3092c875fa012d0ecad758

Contents?: true

Size: 582 Bytes

Versions: 35

Compression:

Stored size: 582 Bytes

Contents

# frozen_string_literal: true

require_relative 'themes/urls_in_homepage'
require_relative 'themes/urls_in_404_page'
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::UrlsIn404Page.new(target) <<
            Themes::KnownLocations.new(target)
        end
      end
    end
  end
end

Version data entries

35 entries across 35 versions & 1 rubygems

Version Path
wpscan-3.8.6 app/finders/themes.rb
wpscan-3.8.5 app/finders/themes.rb
wpscan-3.8.4 app/finders/themes.rb
wpscan-3.8.3 app/finders/themes.rb
wpscan-3.8.2 app/finders/themes.rb
wpscan-3.8.1 app/finders/themes.rb
wpscan-3.8.0 app/finders/themes.rb
wpscan-3.7.11 app/finders/themes.rb
wpscan-3.7.10 app/finders/themes.rb
wpscan-3.7.9 app/finders/themes.rb
wpscan-3.7.8 app/finders/themes.rb
wpscan-3.7.7 app/finders/themes.rb
wpscan-3.7.6 app/finders/themes.rb
wpscan-3.7.5 app/finders/themes.rb
wpscan-3.7.4 app/finders/themes.rb