Sha256: 800adf9545fb7f0653531be1d2eacfa467ce33161e1a9db7ff638dc07f00aed1
Contents?: true
Size: 863 Bytes
Versions: 5
Compression:
Stored size: 863 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 class State # @author Tasos "Zapotek" Laskos <tasos.laskos@arachni-scanner.com> class Options def statistics { url: Arachni::Options.url, checks: Arachni::Options.checks, plugins: Arachni::Options.plugins.keys } end def dump( directory ) FileUtils.mkdir_p( directory ) Arachni::Options.save( "#{directory}/options" ) end def self.load( directory ) Arachni::Options.load( "#{directory}/options" ) new end def clear end end end end
Version data entries
5 entries across 5 versions & 1 rubygems