Sha256: a1843979eed02cfff86c0f3cde5d566b9c8339c0c9466c2397e450734b929f59
Contents?: true
Size: 605 Bytes
Versions: 39
Compression:
Stored size: 605 Bytes
Contents
module CMSScanner module Finders # This class is designed to handle independent results # which are not related with each others # e.g: interesting files class IndependentFinders < BaseFinders # @param [ Hash ] opts # @option opts [ Symbol ] mode :mixed, :passive or :aggressive # # @return [ Findings ] def run(opts = {}) methods = symbols_from_mode(opts[:mode]) each do |finder| methods.each do |symbol| run_finder(finder, symbol, opts) end end filter_findings end end end end
Version data entries
39 entries across 39 versions & 1 rubygems