1# -*- coding: binary -*- 2module Msf 3module Handler 4 5### 6# 7# The 'none' handler, for no connection. 8# 9### 10module None 11 include Msf::Handler 12 13 # 14 # Returns the handler type of none since payloads that use this handler 15 # have no connection. 16 # 17 def self.handler_type 18 return "none" 19 end 20 21 # 22 # Returns none to indicate no connection. 23 # 24 def self.general_handler_type 25 return "none" 26 end 27 28end 29 30end 31end 32 33