Module: Msf::Module::Failure
- Defined in:
- lib/msf/core/module/failure.rb
Overview
Constants indicating the reason for an unsuccessful module attempt
Constant Summary collapse
- BadConfig =
The exploit settings were incorrect
'bad-config'
- Disconnected =
The network service disconnected us mid-attempt
'disconnected'
- NoAccess =
The application replied indication we do not have access
'no-access'
- None =
No confidence in success or failure
'none'
- NoTarget =
The target is not compatible with this exploit or settings
'no-target'
- NotFound =
The application endpoint or specific service was not found
'not-found'
- NotVulnerable =
The application response indicated it was not vulnerable
'not-vulnerable'
- PayloadFailed =
The payload was delivered but no session was opened (AV, network, etc)
'payload-failed'
- TimeoutExpired =
The exploit triggered some form of timeout
'timeout-expired'
- UnexpectedReply =
The application replied in an unexpected fashion
'unexpected-reply'
- Unknown =
No confidence in success or failure
'unknown'
- Unreachable =
The network service was unreachable (connection refused, etc)
'unreachable'
- UserInterrupt =
The exploit was interrupted by the user
'user-interrupt'