Sha256: 189f6747695e15c6513bf5a8dec8c2c711f64ca8506fc8dc4edacdee377c7249
Contents?: true
Size: 481 Bytes
Versions: 15
Compression:
Stored size: 481 Bytes
Contents
module WPScan module Finders module InterestingFindings # debug.log finder class DebugLog < CMSScanner::Finders::Finder # @return [ InterestingFinding ] def aggressive(_opts = {}) path = 'wp-content/debug.log' return unless target.debug_log?(path) WPScan::InterestingFinding.new( target.url(path), confidence: 100, found_by: DIRECT_ACCESS ) end end end end end
Version data entries
15 entries across 15 versions & 1 rubygems