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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

32 lines
418 B
Ruby
Raw Normal View History

# -*- coding: binary -*-
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
end