Files
metasploit-gs/lib/msf/ui/console/command_dispatcher/encoder.rb
T

31 lines
368 B
Ruby
Raw Normal View History

2005-05-22 19:39:21 +00:00
module Msf
module Ui
module Console
module CommandDispatcher
2005-11-15 15:11:43 +00:00
###
#
# Command dispatcher for encoder modules.
#
###
2005-05-22 19:39:21 +00:00
class Encoder
include Msf::Ui::Console::ModuleCommandDispatcher
2005-11-15 15:11:43 +00:00
#
# Returns the name of the command dispatcher.
#
2005-07-14 20:18:36 +00:00
def name
"Encoder"
end
2007-01-05 02:48:45 +00:00
#
# Encoder's don't currently have a user interface.
#
def commands
{ }
end
2005-05-22 19:39:21 +00:00
end
2008-10-19 21:03:39 +00:00
end end end end