/
githubmirror
/
metasploit-framework
Обзор
Документация
Войти
/
githubmirror
/
metasploit-framework
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
lib/msf/core/handler/none.rb
31 строка
418 B
Tab Assassin
Retab lib
31 авг 2013, 01:28
31 авг 2013, 01:28
7e5e0f7
Код
Авторство
О чём код?
# -*- 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