Sha256: bbfcf681e5919b4d4d2284fc49e0d7fae6d3154b6277aa52a7c873cfff315ade
Contents?: true
Size: 803 Bytes
Versions: 5
Compression:
Stored size: 803 Bytes
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 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
5 entries across 5 versions & 1 rubygems