module Arachni::Element::Capabilities::Analyzable

@author Tasos “Zapotek” Laskos <tasos.laskos@arachni-scanner.com>

Public Class Methods

has_timeout_candidates?() click to toggle source
# File lib/arachni/element/capabilities/analyzable.rb, line 31
def self.has_timeout_candidates?
    Timeout.has_candidates?
end
reset() click to toggle source

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.

# File lib/arachni/element/capabilities/analyzable.rb, line 25
def Analyzable.reset
    Differential.reset
    Timeout.reset
end
timeout_audit_run() click to toggle source
# File lib/arachni/element/capabilities/analyzable.rb, line 35
def self.timeout_audit_run
    Timeout.run
end