Class: Rex::Post::Meterpreter::Ui::Console::CommandDispatcher::Lanattacks::Dhcp

Inherits:
Object
  • Object
show all
Includes:
Rex::Post::Meterpreter::Ui::Console::CommandDispatcher
Defined in:
lib/rex/post/meterpreter/ui/console/command_dispatcher/lanattacks/dhcp.rb

Overview

The DHCP portion of the lanattacks extension.

Constant Summary collapse

Klass =
Console::CommandDispatcher::Lanattacks::Dhcp
@@dhcp_start_opts =
Rex::Parser::Arguments.new(
"-h" => [ false, "Help banner." ])
@@dhcp_stop_opts =
Rex::Parser::Arguments.new(
"-h" => [ false, "Help banner." ])
@@dhcp_reset_opts =
Rex::Parser::Arguments.new(
"-h" => [ false, "Help banner." ])
@@dhcp_set_option_opts =
Rex::Parser::Arguments.new(
"-h" => [ false, "Help banner." ])
@@dhcp_set_option_valid_options =
[
  "BROADCAST", "DHCPIPEND", "DHCPIPSTART", "DNSSERVER",
  "FILENAME", "HOSTNAME", "HOSTSTART", "NETMASK",
  "PXE", "PXECONF", "ROUTER", "SERVEONCE", "SRVHOST"
]
@@dhcp_load_options_opts =
Rex::Parser::Arguments.new(
"-h" => [ false, "Help banner." ])
@@dhcp_log_opts =
Rex::Parser::Arguments.new(
"-h" => [ false, "Help banner." ])

Instance Attribute Summary

Attributes included from Ui::Text::DispatcherShell::CommandDispatcher

#shell, #tab_complete_items

Instance Method Summary collapse

Methods included from Rex::Post::Meterpreter::Ui::Console::CommandDispatcher

check_hash, #client, #initialize, #log_error, #msf_loaded?, set_hash

Methods included from Ui::Text::DispatcherShell::CommandDispatcher

#cmd_help, #cmd_help_help, #cmd_help_tabs, #deprecated_cmd, #deprecated_commands, #deprecated_help, #help_to_s, #initialize, #print, #print_error, #print_good, #print_line, #print_status, #print_warning, #tab_complete_filenames, #update_prompt

Instance Method Details

#cmd_dhcp_load_options(*args) ⇒ Object



187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
# File 'lib/rex/post/meterpreter/ui/console/command_dispatcher/lanattacks/dhcp.rb', line 187

def cmd_dhcp_load_options(*args)
  @@dhcp_set_option_opts.parse(args) { |opt, idx, val|
    case opt
    when '-h'
      print_dhcp_set_option_usage
      return true
    end
  }

  if args.length < 1
    print_dhcp_load_options_usage
    return true
  end

  datastore = args.shift

  if not datastore.is_a?(Hash)
    print_dhcp_load_options_usage
    return true
  end

  client.lanattacks.dhcp.load_options(datastore)
end

#cmd_dhcp_log(*args) ⇒ Object



220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
# File 'lib/rex/post/meterpreter/ui/console/command_dispatcher/lanattacks/dhcp.rb', line 220

def cmd_dhcp_log(*args)
  @@dhcp_log_opts.parse(args) { |opt, idx, val|
    case opt
    when '-h'
      print_dhcp_log_usage
      return true
    end
  }

  log = client.lanattacks.dhcp.log

  table = Rex::Ui::Text::Table.new(
    'Header'    => 'DHCP Server Log',
    'Indent'    => 0,
    'SortIndex' => 0,
    'Columns'   => [ 'MAC Address', 'IP Address' ]
  )

  log.each { |l|
    table << [ l[:mac], l[:ip] ]
  }

  print_line
  print_line( table.to_s )
  print_line( "Total log entries: #{log.length}" )
  print_line
end

#cmd_dhcp_reset(*args) ⇒ Object



118
119
120
121
122
123
124
125
126
127
128
129
130
# File 'lib/rex/post/meterpreter/ui/console/command_dispatcher/lanattacks/dhcp.rb', line 118

def cmd_dhcp_reset(*args)
  @@dhcp_reset_opts.parse(args) { |opt, idx, val|
    case opt
    when '-h'
      print_dhcp_reset_usage
      return true
    end
  }

  print_status( "Resetting DHCP server ...")
  client.lanattacks.dhcp.reset
  print_good( "DHCP server reset.")
end

#cmd_dhcp_set_option(*args) ⇒ Object



149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
# File 'lib/rex/post/meterpreter/ui/console/command_dispatcher/lanattacks/dhcp.rb', line 149

def cmd_dhcp_set_option(*args)
  @@dhcp_set_option_opts.parse(args) { |opt, idx, val|
    case opt
    when '-h'
      print_dhcp_set_option_usage
      return true
    end
  }

  if args.length < 2
    print_dhcp_set_option_usage
    return true
  end


  name = args.shift.upcase
  value = args.shift

  if not @@dhcp_set_option_valid_options.include? name
    print_error( "Invalid option name '#{name}'." )
    return true
  end

  client.lanattacks.dhcp.set_option(name, value)
end

#cmd_dhcp_start(*args) ⇒ Object



72
73
74
75
76
77
78
79
80
81
82
83
84
# File 'lib/rex/post/meterpreter/ui/console/command_dispatcher/lanattacks/dhcp.rb', line 72

def cmd_dhcp_start(*args)
  @@dhcp_start_opts.parse(args) { |opt, idx, val|
    case opt
    when '-h'
      print_dhcp_start_usage
      return true
    end
  }

  print_status( "Starting DHCP server ...")
  client.lanattacks.dhcp.start
  print_good( "DHCP server startd.")
end

#cmd_dhcp_stop(*args) ⇒ Object



95
96
97
98
99
100
101
102
103
104
105
106
107
# File 'lib/rex/post/meterpreter/ui/console/command_dispatcher/lanattacks/dhcp.rb', line 95

def cmd_dhcp_stop(*args)
  @@dhcp_stop_opts.parse(args) { |opt, idx, val|
    case opt
    when '-h'
      print_dhcp_stop_usage
      return true
    end
  }

  print_status( "Stopping DHCP server ...")
  client.lanattacks.dhcp.stop
  print_good( "DHCP server stopped.")
end

#commandsObject

List of supported commands.



23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
# File 'lib/rex/post/meterpreter/ui/console/command_dispatcher/lanattacks/dhcp.rb', line 23

def commands
  all = {
    "dhcp_start"        => "Start the DHCP server",
    "dhcp_stop"         => "Stop the DHCP server",
    "dhcp_reset"        => "Reset the DHCP server",
    "dhcp_set_option"   => "Set a DHCP server option",
    "dhcp_load_options" => "Load DHCP optionis from a datastore",
    "dhcp_log"          => "Log DHCP server activity"
  }

  reqs = {
    "dhcp_start"        => [ "lanattacks_start_dhcp" ],
    "dhcp_stop"         => [ "lanattacks_stop_dhcp" ],
    "dhcp_reset"        => [ "lanattacks_reset_dhcp" ],
    "dhcp_set_option"   => [ "lanattacks_set_dhcp_option" ],
    "dhcp_load_options" => [ "lanattacks_set_dhcp_option" ],
    "dhcp_log"          => [ "lanattacks_dhcp_log" ]
  }

  all.delete_if do |cmd, desc|
    del = false
    reqs[cmd].each do |req|
      next if client.commands.include? req
      del = true
      break
    end

    del
  end

  all
end

#nameObject

Name for this dispatcher.



59
60
61
# File 'lib/rex/post/meterpreter/ui/console/command_dispatcher/lanattacks/dhcp.rb', line 59

def name
  "Lanattacks: DHCP"
end


178
179
180
181
182
183
184
185
# File 'lib/rex/post/meterpreter/ui/console/command_dispatcher/lanattacks/dhcp.rb', line 178

def print_dhcp_load_options_usage
  print("dhcp_load_options <datastore> [-h]\n\n" +
        "Load settings from a datstore to the active DHCP server.\n\n" +
        "The datastore must be a hash of name/value pairs.\n" +
        "Valid names are:\n" +
        @@dhcp_set_option_valid_options.map {|o| "  - #{o}\n" }.join('') +
        @@dhcp_set_option_opts.usage + "\n")
end


214
215
216
217
218
# File 'lib/rex/post/meterpreter/ui/console/command_dispatcher/lanattacks/dhcp.rb', line 214

def print_dhcp_log_usage
  print("dhcp_log [-h]\n\n" +
        "Logs the DHCP operations captured by the DHCP server.\n" +
        @@dhcp_log_opts.usage + "\n")
end


112
113
114
115
116
# File 'lib/rex/post/meterpreter/ui/console/command_dispatcher/lanattacks/dhcp.rb', line 112

def print_dhcp_reset_usage
  print("dhcp_reset [-h]\n\n" +
        "Resets the currently running DHCP server.\n" +
        @@dhcp_reset_opts.usage + "\n")
end


141
142
143
144
145
146
147
# File 'lib/rex/post/meterpreter/ui/console/command_dispatcher/lanattacks/dhcp.rb', line 141

def print_dhcp_set_option_usage
  print("dhcp_set_option <name> <value> [-h]\n\n" +
        "Set a DHCP server option.\n\n" +
        "Valid names are:\n" +
        @@dhcp_set_option_valid_options.map {|o| "  - #{o}\n" }.join('') +
        @@dhcp_set_option_opts.usage + "\n")
end


66
67
68
69
70
# File 'lib/rex/post/meterpreter/ui/console/command_dispatcher/lanattacks/dhcp.rb', line 66

def print_dhcp_start_usage
  print("dhcp_start [-h]\n\n" +
        "Starts a DHCP server in the current Meterpreter session.\n" +
        @@dhcp_start_opts.usage + "\n")
end


89
90
91
92
93
# File 'lib/rex/post/meterpreter/ui/console/command_dispatcher/lanattacks/dhcp.rb', line 89

def print_dhcp_stop_usage
  print("dhcp_stop [-h]\n\n" +
        "Stops the currently running DHCP server.\n" +
        @@dhcp_stop_opts.usage + "\n")
end