1# frozen_string_literal: true 2 3module WPScan 4 module Finders 5 module MainTheme 6 # URLs In 404 Page Finder 7 class UrlsIn404Page < UrlsInHomepage 8 # @return [ Typhoeus::Response ] 9 def page_res 10 @page_res ||= target.error_404_res 11 end 12 end 13 end 14 end 15end 16 17