Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
rapid7
GitHub Repository: rapid7/metasploit-framework
Path: blob/master/lib/msf/core/host_state.rb
21549 views
1
# The states that a host can be in.
2
module Msf::HostState
3
# The host is alive.
4
Alive = "alive"
5
# The host is dead.
6
Dead = "down"
7
# The host state is unknown.
8
Unknown = "unknown"
9
end
10
11