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

Version Path
arachni-1.6.1.3 lib/arachni/rpc/server/check/manager.rb
arachni-1.6.1.2 lib/arachni/rpc/server/check/manager.rb
arachni-1.6.1.1 lib/arachni/rpc/server/check/manager.rb
arachni-1.6.1 lib/arachni/rpc/server/check/manager.rb
arachni-1.6.0 lib/arachni/rpc/server/check/manager.rb