Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
wpscanteam
GitHub Repository: wpscanteam/wpscan
Path: blob/master/app/finders/themes/urls_in_404_page.rb
485 views
1
# frozen_string_literal: true
2
3
module WPScan
4
module Finders
5
module Themes
6
# URLs In 04 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
15
end
16
17