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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

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
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
end end end end