Sha256: 7bd24d70a41ded48c2d839bbbb32717588966ccc72a79e5b7ba347cec6dd5cc0

Contents?: true

Size: 620 Bytes

Versions: 14

Compression:

Stored size: 620 Bytes

Contents

# frozen_string_literal: true

require_relative 'main_theme/css_style'
require_relative 'main_theme/woo_framework_meta_generator'
require_relative 'main_theme/urls_in_homepage'

module WPScan
  module Finders
    module MainTheme
      # Main Theme Finder
      class Base
        include CMSScanner::Finders::UniqueFinder

        # @param [ WPScan::Target ] target
        def initialize(target)
          finders <<
            MainTheme::CssStyle.new(target) <<
            MainTheme::WooFrameworkMetaGenerator.new(target) <<
            MainTheme::UrlsInHomepage.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/main_theme.rb
wpscan-3.7.2 app/finders/main_theme.rb
wpscan-3.7.1 app/finders/main_theme.rb
wpscan-3.7.0 app/finders/main_theme.rb
wpscan-3.6.3 app/finders/main_theme.rb
wpscan-3.6.2 app/finders/main_theme.rb
wpscan-3.6.1 app/finders/main_theme.rb
wpscan-3.6.0 app/finders/main_theme.rb
wpscan-3.5.5 app/finders/main_theme.rb
wpscan-3.5.4 app/finders/main_theme.rb
wpscan-3.5.3 app/finders/main_theme.rb
wpscan-3.5.2 app/finders/main_theme.rb
wpscan-3.5.1 app/finders/main_theme.rb
wpscan-3.5.0 app/finders/main_theme.rb