Files
metasploit-gs/lib/msf/core/handler/none.rb
T
Tab Assassin 7e5e0f7fc8 Retab lib
2013-08-30 16:28:33 -05:00

32 lines
418 B
Ruby

# -*- coding: binary -*-
module Msf
module Handler
###
#
# The 'none' handler, for no connection.
#
###
module None
include Msf::Handler
#
# Returns the handler type of none since payloads that use this handler
# have no connection.
#
def self.handler_type
return "none"
end
#
# Returns none to indicate no connection.
#
def self.general_handler_type
return "none"
end
end
end
end