CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutSign UpSign In
rapid7

CoCalc provides the best real-time collaborative environment for Jupyter Notebooks, LaTeX documents, and SageMath, scalable from individual users to large groups and classes!

GitHub Repository: rapid7/metasploit-framework
Path: blob/master/lib/msf/core/host_state.rb
Views: 1904
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