Sha256: d2c2f9611e65a562f1bb2a0c6052e241622980032df6131248d53b5d38ae55b9
Contents?: true
Size: 818 Bytes
Versions: 3
Compression:
Stored size: 818 Bytes
Contents
=begin Copyright 2010-2015 Tasos Laskos <tasos.laskos@arachni-scanner.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 require Options.paths.lib + 'issue/severity/base' class Issue # Holds different severity levels. # # @author Tasos "Zapotek" Laskos <tasos.laskos@arachni-scanner.com> module Severity ORDER = [ :high, :medium, :low, :informational ] HIGH = Base.new( :high ) MEDIUM = Base.new( :medium ) LOW = Base.new( :low ) INFORMATIONAL = Base.new( :informational ) end end end Arachni::Severity = Arachni::Issue::Severity
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
arachni-1.3.2 | lib/arachni/issue/severity.rb |
arachni-1.3.1 | lib/arachni/issue/severity.rb |
arachni-1.3 | lib/arachni/issue/severity.rb |