Sha256: 17c20fd3ea37bae6d3730d9c3c14a283380000d3e596710a13963f14450c130d

Contents?: true

Size: 746 Bytes

Versions: 21

Compression:

Stored size: 746 Bytes

Contents

class Auditor < Arachni::Check::Base
    include Arachni::Check::Auditor

    attr_accessor :page
    attr_accessor :framework

    self.shortname = 'auditor_test'

    def initialize( page = nil, framework = nil)
        super
        http.update_cookies( page.cookie_jar ) if page
    end

    def self.info
        {
            name: 'Auditor',
            issue:       {
                name:            %q{Test issue},
                description:     %q{Test description},
                tags:            ['some', 'tag'],
                cwe:             '0',
                severity:        Issue::Severity::HIGH,
                remedy_guidance: %q{Watch out!.},
                remedy_code:     ''
            }
        }
    end
end

Version data entries

21 entries across 21 versions & 1 rubygems

Version Path
arachni-1.6.1.3 spec/support/helpers/auditor.rb
arachni-1.6.1.2 spec/support/helpers/auditor.rb
arachni-1.6.1.1 spec/support/helpers/auditor.rb
arachni-1.6.1 spec/support/helpers/auditor.rb
arachni-1.6.0 spec/support/helpers/auditor.rb
arachni-1.5.1 spec/support/helpers/auditor.rb
arachni-1.5 spec/support/helpers/auditor.rb
arachni-1.4 spec/support/helpers/auditor.rb
arachni-1.3.2 spec/support/helpers/auditor.rb
arachni-1.3.1 spec/support/helpers/auditor.rb
arachni-1.3 spec/support/helpers/auditor.rb
arachni-1.2.1 spec/support/helpers/auditor.rb
arachni-1.2 spec/support/helpers/auditor.rb
arachni-1.1 spec/support/helpers/auditor.rb
arachni-1.0.6 spec/support/helpers/auditor.rb
arachni-1.0.5 spec/support/helpers/auditor.rb
arachni-1.0.4 spec/support/helpers/auditor.rb
arachni-1.0.3 spec/support/helpers/auditor.rb
arachni-1.0.2 spec/support/helpers/auditor.rb
arachni-1.0.1 spec/support/helpers/auditor.rb