Sha256: 884fff166323fc051d9562e004c005d8e0a66b2422ecb7274cae9d75cfa91124
Contents?: true
Size: 877 Bytes
Versions: 5
Compression:
Stored size: 877 Bytes
Contents
=begin Copyright 2010-2022 Ecsypno <http://www.ecsypno.com> This file is part of the Arachni Framework project and is subject to redistribution and commercial restrictions. Please see the Arachni Framework web site for more information on licensing and terms of use. =end module Arachni require Options.paths.lib + 'check/manager' module RPC class Server # @private module Check # We need to extend the original Manager and re-declare its inherited methods # which are required over RPC. # # @author Tasos "Zapotek" Laskos <tasos.laskos@arachni-scanner.com> class Manager < ::Arachni::Check::Manager # make these inherited methods visible again private :load, :available, :loaded, :load_all public :load, :available, :loaded, :load_all def load( checks ) @framework.options.checks = super( checks ) end end end end end end
Version data entries
5 entries across 5 versions & 1 rubygems