Sha256: cd953d1ef0a70f9db9d33e9aaee4088c1093b11c0a58229bf620cbc8f99ced03
Contents?: true
Size: 574 Bytes
Versions: 11
Compression:
Stored size: 574 Bytes
Contents
module CMSScanner # Exit Code Values module ExitCode # No error, scan finished w/o any vulnerabilies found OK = 0 # All exceptions raised by OptParseValidator and OptionParser CLI_OPTION_ERROR = 1 # Interrupt received INTERRUPTED = 2 # Unhandled/unexpected Exception occured EXCEPTION = 3 # Error, scan did not finish ERROR = 4 # The target has at least one vulnerability. # Currently, the interesting findings do not count as vulnerable things VULNERABLE = 5 end end
Version data entries
11 entries across 11 versions & 1 rubygems