Files
metasploit-gs/lib/msf/core/handler/none.rb
T

30 lines
377 B
Ruby
Raw Normal View History

module Msf
module Handler
###
#
# The 'none' handler, for no connection.
#
###
module None
include Msf::Handler
#
2005-11-15 15:11:43 +00:00
# Returns the handler type of none since payloads that use this handler
# have no connection.
#
def self.handler_type
return "none"
end
2005-11-15 15:11:43 +00:00
#
# Returns none to indicate no connection.
#
def self.general_handler_type
return "none"
end
end
end
2008-10-19 21:03:39 +00:00
end