Sha256: 1c336c61527b39764c24e84cbd04d4bcc7019b92d345c3fe12d9524eb07b7692
Contents?: true
Size: 1.02 KB
Versions: 5
Compression:
Stored size: 1.02 KB
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 module Element::Capabilities # @author Tasos "Zapotek" Laskos <tasos.laskos@arachni-scanner.com> module Analyzable # Load all available analysis techniques. Dir.glob( File.dirname( __FILE__ ) + '/analyzable/*.rb' ).each { |f| require f } include Signature include Timeout include Differential # Empties the de-duplication/uniqueness look-up table. # # Unless you're sure you need this, set the :redundant flag to true # when calling audit methods to bypass it. def Analyzable.reset Differential.reset Timeout.reset end reset def self.has_timeout_candidates? Timeout.has_candidates? end def self.timeout_audit_run Timeout.run end end end end
Version data entries
5 entries across 5 versions & 1 rubygems