CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutSign UpSign In
rapid7

Real-time collaboration for Jupyter Notebooks, Linux Terminals, LaTeX, VS Code, R IDE, and more,
all in one place.

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