Class: Rex::Post::Meterpreter::Ui::Console::CommandDispatcher::Priv
- Inherits:
-
Object
- Object
- Rex::Post::Meterpreter::Ui::Console::CommandDispatcher::Priv
- Defined in:
- lib/rex/post/meterpreter/ui/console/command_dispatcher/priv.rb
Overview
Privilege escalation extension user interface.
Defined Under Namespace
Classes: Elevate, Passwd, Timestomp
Constant Summary collapse
- Klass =
Console::CommandDispatcher::Priv
- Dispatchers =
[ Klass::Elevate, Klass::Passwd, Klass::Timestomp, ]
Instance Attribute Summary
Attributes included from Ui::Text::DispatcherShell::CommandDispatcher
Class Method Summary collapse
Instance Method Summary collapse
-
#commands ⇒ Object
List of supported commands.
-
#initialize(shell) ⇒ Priv
constructor
Initializes an instance of the priv command interaction.
-
#name ⇒ Object
Name for this dispatcher.
Methods included from Rex::Post::Meterpreter::Ui::Console::CommandDispatcher
check_hash, #client, #docs_dir, #filter_commands, #log_error, #msf_loaded?, #session, set_hash, #unknown_command
Methods included from Msf::Ui::Console::CommandDispatcher::Session
#cmd_background, #cmd_background_help, #cmd_exit, #cmd_irb, #cmd_irb_help, #cmd_irb_tabs, #cmd_pry, #cmd_pry_help, #cmd_resource, #cmd_resource_help, #cmd_resource_tabs, #cmd_sessions, #cmd_sessions_help
Methods included from Ui::Text::DispatcherShell::CommandDispatcher
#cmd_help, #cmd_help_help, #cmd_help_tabs, #deprecated_cmd, #deprecated_commands, #deprecated_help, #docs_dir, #help_to_s, included, #print, #print_error, #print_good, #print_line, #print_status, #print_warning, #tab_complete_directory, #tab_complete_filenames, #tab_complete_generic, #tab_complete_source_address, #unknown_command, #update_prompt
Constructor Details
#initialize(shell) ⇒ Priv
Initializes an instance of the priv command interaction.
38 39 40 41 42 43 44 |
# File 'lib/rex/post/meterpreter/ui/console/command_dispatcher/priv.rb', line 38 def initialize(shell) super Dispatchers.each { |d| shell.enstack_dispatcher(d) } end |
Class Method Details
.has_command?(name) ⇒ Boolean
31 32 33 |
# File 'lib/rex/post/meterpreter/ui/console/command_dispatcher/priv.rb', line 31 def self.has_command?(name) Dispatchers.any? { |klass| klass.has_command?(name) } end |
Instance Method Details
#commands ⇒ Object
List of supported commands.
49 50 51 52 |
# File 'lib/rex/post/meterpreter/ui/console/command_dispatcher/priv.rb', line 49 def commands { } end |
#name ⇒ Object
Name for this dispatcher
57 58 59 |
# File 'lib/rex/post/meterpreter/ui/console/command_dispatcher/priv.rb', line 57 def name "Privilege Escalation" end |