Sha256: 5d92d1d52942e3a88475a87747c9f0588065ac5a89f65cb44d0e0d8235989615

Contents?: true

Size: 742 Bytes

Versions: 9

Compression:

Stored size: 742 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

9 entries across 9 versions & 1 rubygems

Version Path
wpscan-3.8.28 lib/wpscan/errors/enumeration.rb
wpscan-3.8.27 lib/wpscan/errors/enumeration.rb
wpscan-3.8.26 lib/wpscan/errors/enumeration.rb
wpscan-3.8.25 lib/wpscan/errors/enumeration.rb
wpscan-3.8.24 lib/wpscan/errors/enumeration.rb
wpscan-3.8.22 lib/wpscan/errors/enumeration.rb
wpscan-3.8.21 lib/wpscan/errors/enumeration.rb
wpscan-3.8.20 lib/wpscan/errors/enumeration.rb
wpscan-3.8.19 lib/wpscan/errors/enumeration.rb