class Rex::Post::Meterpreter::Ui::Console::CommandDispatcher::Extapi
Extended API user interface.
Constants
- Dispatchers
- Klass
Public Class Methods
new(shell)
click to toggle source
Initializes an instance of the extended API command interaction.
Calls superclass method
Rex::Post::Meterpreter::Ui::Console::CommandDispatcher::new
# File lib/rex/post/meterpreter/ui/console/command_dispatcher/extapi.rb, line 37 def initialize(shell) super Dispatchers.each { |d| shell.enstack_dispatcher(d) } end
Public Instance Methods
commands()
click to toggle source
List of supported commands.
# File lib/rex/post/meterpreter/ui/console/command_dispatcher/extapi.rb, line 47 def commands { } end
name()
click to toggle source
Name for this dispatcher
# File lib/rex/post/meterpreter/ui/console/command_dispatcher/extapi.rb, line 55 def name "Extended API Extension" end