class Rex::Post::Meterpreter::Ui::Console::CommandDispatcher::Lanattacks

Lanattacks extension.

Constants

Dispatchers
Klass

Public Class Methods

new(shell) click to toggle source

Initializes an instance of the lanattacks command interaction.

# File lib/rex/post/meterpreter/ui/console/command_dispatcher/lanattacks.rb, line 31
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/lanattacks.rb, line 42
def commands
  {
  }
end
name() click to toggle source

Name for this dispatcher

# File lib/rex/post/meterpreter/ui/console/command_dispatcher/lanattacks.rb, line 50
def name
  "Lanattacks extension"
end