wpscanteam/wpscan

View on GitHub
app/finders/main_theme/urls_in_404_page.rb

Summary

Maintainability
A
0 mins
Test Coverage
# frozen_string_literal: true

module WPScan
  module Finders
    module MainTheme
      # URLs In 404 Page Finder
      class UrlsIn404Page < UrlsInHomepage
        # @return [ Typhoeus::Response ]
        def page_res
          @page_res ||= target.error_404_res
        end
      end
    end
  end
end