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.27 app/finders/themes.rb
wpscan-3.8.26 app/finders/themes.rb
wpscan-3.8.25 app/finders/themes.rb
wpscan-3.8.24 app/finders/themes.rb
wpscan-3.8.22 app/finders/themes.rb
wpscan-3.8.21 app/finders/themes.rb
wpscan-3.8.20 app/finders/themes.rb
wpscan-3.8.19 app/finders/themes.rb
wpscan-3.8.18 app/finders/themes.rb
wpscan-3.8.17 app/finders/themes.rb
wpscan-3.8.16 app/finders/themes.rb
wpscan-3.8.15 app/finders/themes.rb
wpscan-3.8.14 app/finders/themes.rb
wpscan-3.8.13 app/finders/themes.rb
wpscan-3.8.12 app/finders/themes.rb
wpscan-3.8.11 app/finders/themes.rb
wpscan-3.8.10 app/finders/themes.rb
wpscan-3.8.9 app/finders/themes.rb
wpscan-3.8.8 app/finders/themes.rb
wpscan-3.8.7 app/finders/themes.rb