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

33 lines
409 B
Ruby
Raw Normal View History

# -*- coding: binary -*-
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
2013-08-30 16:28:33 -05:00
include Msf::Ui::Console::ModuleCommandDispatcher
2005-05-22 19:39:21 +00:00
2013-08-30 16:28:33 -05:00
#
# Returns the name of the command dispatcher.
#
def name
"Encoder"
end
2005-07-14 20:18:36 +00:00
2013-08-30 16:28:33 -05:00
#
# Encoder's don't currently have a user interface.
#
def commands
{ }
end
2007-01-05 02:48:45 +00:00
2005-05-22 19:39:21 +00:00
end
end end end end