Sha256: 35fa1f5fd8d5a2993ac080312beb9743e6e6e1bb0916d43422ff397ebb4f1d17

Contents?: true

Size: 734 Bytes

Versions: 35

Compression:

Stored size: 734 Bytes

Contents

# frozen_string_literal: true

module WPScan
  module Error
    class PluginsThresholdReached < Standard
      def to_s
        "The number of plugins detected reached the threshold of #{ParsedCli.plugins_threshold} " \
        'which might indicate False Positive. It would be recommended to use the --exclude-content-based ' \
        'option to ignore the bad responses.'
      end
    end

    class ThemesThresholdReached < Standard
      def to_s
        "The number of themes detected reached the threshold of #{ParsedCli.themes_threshold} " \
        'which might indicate False Positive. It would be recommended to use the --exclude-content-based ' \
        'option to ignore the bad responses.'
      end
    end
  end
end

Version data entries

35 entries across 35 versions & 1 rubygems

Version Path
wpscan-3.8.18 lib/wpscan/errors/enumeration.rb
wpscan-3.8.17 lib/wpscan/errors/enumeration.rb
wpscan-3.8.16 lib/wpscan/errors/enumeration.rb
wpscan-3.8.15 lib/wpscan/errors/enumeration.rb
wpscan-3.8.14 lib/wpscan/errors/enumeration.rb
wpscan-3.8.13 lib/wpscan/errors/enumeration.rb
wpscan-3.8.12 lib/wpscan/errors/enumeration.rb
wpscan-3.8.11 lib/wpscan/errors/enumeration.rb
wpscan-3.8.10 lib/wpscan/errors/enumeration.rb
wpscan-3.8.9 lib/wpscan/errors/enumeration.rb
wpscan-3.8.8 lib/wpscan/errors/enumeration.rb
wpscan-3.8.7 lib/wpscan/errors/enumeration.rb
wpscan-3.8.6 lib/wpscan/errors/enumeration.rb
wpscan-3.8.5 lib/wpscan/errors/enumeration.rb
wpscan-3.8.4 lib/wpscan/errors/enumeration.rb
wpscan-3.8.3 lib/wpscan/errors/enumeration.rb
wpscan-3.8.2 lib/wpscan/errors/enumeration.rb
wpscan-3.8.1 lib/wpscan/errors/enumeration.rb
wpscan-3.8.0 lib/wpscan/errors/enumeration.rb
wpscan-3.7.11 lib/wpscan/errors/enumeration.rb