Module Msf::Exploit::CheckCode
In: lib/msf/core/exploit.rb

The various check codes that can be returned from the ``check’’ routine.

Constants

Safe = [ 0, "The target is not exploitable." ]   The target is safe and is therefore not exploitable.
Detected = [ 1, "The target service is running, but could not be validated." ]   The target is running the service in question but may not be exploitable.
Appears = [ 2, "The target appears to be vulnerable." ]   The target appears to be vulnerable.
Vulnerable = [ 3, "The target is vulnerable." ]   The target is vulnerable.
Unsupported = [ 4, "This exploit does not support check." ]   The exploit does not support the check method.

[Validate]