Sha256: 735fa988989b238f14b27a8a0e52814711cf09723ba02435c24344eab8eef6fd
Contents?: true
Size: 1.26 KB
Versions: 5
Compression:
Stored size: 1.26 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 require_relative 'with_auditor/output' module Arachni module Element::Capabilities # @author Tasos "Zapotek" Laskos <tasos.laskos@arachni-scanner.com> module WithAuditor include Output # Sets the auditor for this element. # # The auditor provides its output, HTTP and issue logging interfaces. # # @return [Arachni::Check::Auditor] attr_accessor :auditor # Removes the {#auditor} from this element. def remove_auditor self.auditor = nil end # Removes the associated {#auditor}. def prepare_for_report super if defined? super remove_auditor end # @return [Bool] # `true` if it has no auditor, `false` otherwise. def orphan? !auditor end def dup copy_with_auditor( super ) end def marshal_dump super.tap { |h| h.delete :@auditor } end private def copy_with_auditor( other ) other.auditor = self.auditor other end end end end
Version data entries
5 entries across 5 versions & 1 rubygems