/
githubmirror
/
metasploit-framework
Обзор
Документация
Войти
/
githubmirror
/
metasploit-framework
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
lib/msf/ui/console/command_dispatcher/encoder.rb
32 строки
409 B
Tab Assassin
Retab lib
31 авг 2013, 01:28
31 авг 2013, 01:28
7e5e0f7
Код
Авторство
О чём код?
# -*- coding: binary -*- module Msf module Ui module Console module CommandDispatcher ### # # Command dispatcher for encoder modules. # ### class Encoder include Msf::Ui::Console::ModuleCommandDispatcher # # Returns the name of the command dispatcher. # def name "Encoder" end # # Encoder's don't currently have a user interface. # def commands { } end end end end end end