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

Version Path
wpscan-3.3.2 app/finders/interesting_findings/debug_log.rb
wpscan-3.3.1 app/finders/interesting_findings/debug_log.rb
wpscan-3.3.0 app/finders/interesting_findings/debug_log.rb
wpscan-3.2.1 app/finders/interesting_findings/debug_log.rb
wpscan-3.2.0 app/finders/interesting_findings/debug_log.rb
wpscan-3.1.0 app/finders/interesting_findings/debug_log.rb
wpscan-3.0.8 app/finders/interesting_findings/debug_log.rb
wpscan-3.0.7 app/finders/interesting_findings/debug_log.rb
wpscan-3.0.6 app/finders/interesting_findings/debug_log.rb
wpscan-3.0.5 app/finders/interesting_findings/debug_log.rb
wpscan-3.0.4 app/finders/interesting_findings/debug_log.rb
wpscan-3.0.3 app/finders/interesting_findings/debug_log.rb
wpscan-3.0.2 app/finders/interesting_findings/debug_log.rb
wpscan-3.0.1 app/finders/interesting_findings/debug_log.rb
wpscan-3.0 app/finders/interesting_findings/debug_log.rb