Sha256: e11789a58312542e0f6ab02830a74de41cfa0c1640f1530ad02ef2357efd8d15
Contents?: true
Size: 633 Bytes
Versions: 15
Compression:
Stored size: 633 Bytes
Contents
module WPScan module Finders module InterestingFindings # Full Path Disclosure finder class FullPathDisclosure < CMSScanner::Finders::Finder # @return [ InterestingFinding ] def aggressive(_opts = {}) path = 'wp-includes/rss-functions.php' fpd_entries = target.full_path_disclosure_entries(path) return if fpd_entries.empty? WPScan::InterestingFinding.new( target.url(path), confidence: 100, found_by: DIRECT_ACCESS, interesting_entries: fpd_entries ) end end end end end
Version data entries
15 entries across 15 versions & 1 rubygems