Class: WPScan::Finders::MainTheme::UrlsInHomepage
- Inherits:
-
CMSScanner::Finders::Finder
- Object
- CMSScanner::Finders::Finder
- WPScan::Finders::MainTheme::UrlsInHomepage
- Includes:
- WpItems::UrlsInPage
- Defined in:
- app/finders/main_theme/urls_in_homepage.rb
Overview
URLs In Homepage Finder
Direct Known Subclasses
Instance Method Summary collapse
Methods included from WpItems::UrlsInPage
#item_attribute_pattern, #item_code_pattern, #item_url_pattern, #items_from_codes, #items_from_links
Instance Method Details
#page_res ⇒ Typhoeus::Response
26 27 28 |
# File 'app/finders/main_theme/urls_in_homepage.rb', line 26 def page_res @page_res ||= target.homepage_res end |
#passive(opts = {}) ⇒ Array<Theme>
13 14 15 16 17 18 19 20 21 22 23 |
# File 'app/finders/main_theme/urls_in_homepage.rb', line 13 def passive(opts = {}) found = [] slugs = items_from_links('themes', uniq: false) + items_from_codes('themes', uniq: false) slugs.each_with_object(Hash.new(0)) { |slug, counts| counts[slug] += 1 }.each do |slug, occurences| found << Model::Theme.new(slug, target, opts.merge(found_by: found_by, confidence: 2 * occurences)) end found end |