Class: Msf::Plugin::Lab::LabCommandDispatcher
Instance Attribute Summary collapse
#driver
#shell, #tab_complete_items
Instance Method Summary
collapse
#active_module, #active_module=, #active_session, #active_session=, #build_range_array, #docs_dir, #framework, #load_config, #log_error, #remove_lines
#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
Returns a new instance of LabCommandDispatcher.
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
# File 'plugins/lab.rb', line 18
def initialize(driver)
super(driver)
@controller = nil
begin
require 'lab'
rescue LoadError
raise "WARNING: Lab gem not found, Please 'gem install lab'"
end
end
|
Instance Attribute Details
#controller ⇒ Object
Returns the value of attribute controller.
16
17
18
|
# File 'plugins/lab.rb', line 16
def controller
@controller
end
|
Instance Method Details
#cmd_lab_browse_to(*args) ⇒ Object
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
|
# File 'plugins/lab.rb', line 414
def cmd_lab_browse_to(*args)
return lab_usage if args.empty?
uri = args[args.count-1]
if args[0] == "all"
print_line "Opening: #{uri} on all vms."
@controller.each do |vm|
if vm.running?
print_line "#{vm.hostname} opening to uri: #{uri}."
vm.open_uri(uri)
end
end
else
args[0..-2].each do |name_arg|
next unless @controller.includes_hostname? name_arg
if @controller[name_arg].running?
print_line "#{name_arg} opening to uri: #{uri}."
@controller[name_arg].open_uri(uri)
end
end
end
end
|
#cmd_lab_clear(*args) ⇒ Object
135
136
137
|
# File 'plugins/lab.rb', line 135
def cmd_lab_clear(*args)
@controller.clear!
end
|
#cmd_lab_help(*args) ⇒ Object
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
|
# File 'plugins/lab.rb', line 466
def cmd_lab_help(*args)
if args.empty?
commands.each_pair {|k,v| print_line "%-#{longest_cmd_size}s - %s" % [k,v] }
else
args.each do |c|
if extended_help[c] || commands[c]
print_line "%-#{longest_cmd_size}s - %s" % [c,extended_help[c] || commands[c]]
else
print_error "Unknown command '#{c}'"
end
end
end
print_line
print_line "In order to use this plugin, you'll want to configure a .yml lab file"
print_line "You can find an example in data/lab/test_targets.yml"
print_line
end
|
#cmd_lab_load(*args) ⇒ Object
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
|
# File 'plugins/lab.rb', line 70
def cmd_lab_load(*args)
return lab_usage unless args.count == 1
res = args[0]
good_res = nil
if (File.file? res and File.readable? res)
good_res = res
elsif
[
::Msf::Config.data_directory + File::SEPARATOR + "lab",
].each do |dir|
res_path = dir + File::SEPARATOR + res
if (File.file?(res_path) and File.readable?(res_path))
good_res = res_path
break
end
end
end
if good_res
@controller.from_file(good_res)
else
print_error("#{res} is not a valid lab definition file (.yml)")
end
end
|
#cmd_lab_load_config(*args) ⇒ Object
157
158
159
160
161
162
163
164
165
166
167
168
|
# File 'plugins/lab.rb', line 157
def cmd_lab_load_config(*args)
return lab_usage if args.empty?
if args[0] =~ /^remote_/
return lab_usage unless args.count == 3
@controller.build_from_config(args[0], args[1], args[2])
else
return lab_usage unless args.count == 1
@controller.build_from_config(args[0])
end
end
|
#cmd_lab_load_dir(*args) ⇒ Object
130
131
132
133
|
# File 'plugins/lab.rb', line 130
def cmd_lab_load_dir(*args)
return lab_usage unless args.count == 2
@controller.build_from_dir(args[0],args[1],true)
end
|
#cmd_lab_load_running(*args) ⇒ Object
144
145
146
147
148
149
150
151
152
153
154
155
|
# File 'plugins/lab.rb', line 144
def cmd_lab_load_running(*args)
return lab_usage if args.empty?
if args[0] =~ /^remote_/
return lab_usage unless args.count == 3
@controller.build_from_running(args[0], args[1], args[2])
else
return lab_usage unless args.count == 1
@controller.build_from_running(args[0])
end
end
|
#cmd_lab_load_tabs(str, words) ⇒ Object
Tab completion for the lab_load command
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
|
# File 'plugins/lab.rb', line 102
def cmd_lab_load_tabs(str, words)
tabs = []
if ( str and str =~ /^#{Regexp.escape(File::SEPARATOR)}/ )
return tab_complete_filenames(str,words)
elsif (not words[1] or not words[1].match(/^\//))
begin
[
::Msf::Config.data_directory + File::SEPARATOR + "lab",
].each do |dir|
next if not ::File.exist? dir
tabs += ::Dir.new(dir).find_all { |e|
path = dir + File::SEPARATOR + e
::File.file?(path) and File.readable?(path)
}
end
rescue Exception
end
else
tabs += tab_complete_filenames(str,words)
end
return tabs
end
|
#cmd_lab_reset(*args) ⇒ Object
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
|
# File 'plugins/lab.rb', line 307
def cmd_lab_reset(*args)
return lab_usage if args.empty?
if args[0] == "all"
print_line "Resetting all lab vms."
@controller.each{ |vm| vm.reset }
else
args.each do |arg|
if @controller.includes_hostname? arg
if @controller.find_by_hostname(arg).running?
print_line "Resetting lab vm #{arg}."
@controller.find_by_hostname(arg).reset
end
end
end
end
end
|
#cmd_lab_revert(*args) ⇒ Object
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
|
# File 'plugins/lab.rb', line 343
def cmd_lab_revert(*args)
return lab_usage if args.count < 2
snapshot = args[args.count-1]
if args[0] == "all"
print_line "Reverting all lab vms to snapshot: #{snapshot}."
@controller.each{ |vm| vm.revert_snapshot(snapshot) }
else
args[0..-2].each do |name_arg|
next unless @controller.includes_hostname? name_arg
print_line "Reverting #{name_arg} to snapshot: #{snapshot}."
@controller[name_arg].revert_snapshot(snapshot)
end
end
end
|
#cmd_lab_run_command(*args) ⇒ Object
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
|
# File 'plugins/lab.rb', line 360
def cmd_lab_run_command(*args)
return lab_usage if args.empty?
command = args[args.count-1]
if args[0] == "all"
print_line "Running command #{command} on all vms."
@controller.each do |vm|
if vm.running?
print_line "#{vm.hostname} running command: #{command}."
vm.run_command(command)
end
end
else
args[0..-2].each do |name_arg|
next unless @controller.includes_hostname? name_arg
if @controller[name_arg].running?
print_line "#{name_arg} running command: #{command}."
@controller[name_arg].run_command(command)
end
end
end
end
|
#cmd_lab_save(*args) ⇒ Object
139
140
141
142
|
# File 'plugins/lab.rb', line 139
def cmd_lab_save(*args)
return lab_usage if args.empty?
@controller.to_file(args[0])
end
|
#cmd_lab_search(*args) ⇒ Object
207
208
209
210
211
212
213
214
215
216
217
218
219
|
# File 'plugins/lab.rb', line 207
def cmd_lab_search(*args)
if args.empty?
hlp_print_lab
else
args.each do |arg|
print_line "Searching for vms with hostname matching #{arg}"
@controller.each do |vm|
print_line "checking to see #{vm.hostname} matches #{arg}"
print_line "#{vm.hostname} matched #{arg}" if vm.hostname =~ Regexp.new(arg)
end
end
end
end
|
221
222
223
224
225
226
227
228
229
230
231
232
233
|
# File 'plugins/lab.rb', line 221
def cmd_lab_search_tags(*args)
if args.empty?
hlp_print_lab
else
args.each do |arg|
print_line "Searching for vms with tags matching #{arg}"
@controller.each do |vm|
print_line "checking to see #{vm.hostname} is tagged #{arg}"
print_line "#{vm.hostname} tagged #{arg}" if vm.tagged?(arg)
end
end
end
end
|
#cmd_lab_show(*args) ⇒ Object
Commands for dealing with a currently-loaded lab
188
189
190
191
192
193
194
195
196
197
198
199
200
|
# File 'plugins/lab.rb', line 188
def cmd_lab_show(*args)
if args.empty?
hlp_print_lab
else
args.each do |name|
if @controller.includes_hostname? name
print_line @controller[name].to_yaml
else
print_error "Unknown vm '#{name}'"
end
end
end
end
|
#cmd_lab_show_running(*args) ⇒ Object
202
203
204
|
# File 'plugins/lab.rb', line 202
def cmd_lab_show_running(*args)
hlp_print_lab_running
end
|
#cmd_lab_snapshot(*args) ⇒ Object
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
|
# File 'plugins/lab.rb', line 326
def cmd_lab_snapshot(*args)
return lab_usage if args.count < 2
snapshot = args[args.count-1]
if args[0] == "all"
print_line "Snapshotting all lab vms to snapshot: #{snapshot}."
@controller.each{ |vm| vm.create_snapshot(snapshot) }
else
args[0..-2].each do |name_arg|
next unless @controller.includes_hostname? name_arg
print_line "Snapshotting #{name_arg} to snapshot: #{snapshot}."
@controller[name_arg].create_snapshot(snapshot)
end
end
end
|
#cmd_lab_start(*args) ⇒ Object
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
|
# File 'plugins/lab.rb', line 236
def cmd_lab_start(*args)
return lab_usage if args.empty?
if args[0] == "all"
@controller.each do |vm|
print_line "Starting lab vm #{vm.hostname}."
if !vm.running?
vm.start
else
print_line "Lab vm #{vm.hostname} already running."
end
end
else
args.each do |arg|
if @controller.includes_hostname? arg
vm = @controller.find_by_hostname(arg)
if !vm.running?
print_line "Starting lab vm #{vm.hostname}."
vm.start
else
print_line "Lab vm #{vm.hostname} already running."
end
end
end
end
end
|
#cmd_lab_stop(*args) ⇒ Object
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
|
# File 'plugins/lab.rb', line 263
def cmd_lab_stop(*args)
return lab_usage if args.empty?
if args[0] == "all"
@controller.each do |vm|
print_line "Stopping lab vm #{vm.hostname}."
if vm.running?
vm.stop
else
print_line "Lab vm #{vm.hostname} not running."
end
end
else
args.each do |arg|
if @controller.includes_hostname? arg
vm = @controller.find_by_hostname(arg)
if vm.running?
print_line "Stopping lab vm #{vm.hostname}."
vm.stop
else
print_line "Lab vm #{vm.hostname} not running."
end
end
end
end
end
|
#cmd_lab_suspend(*args) ⇒ Object
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
|
# File 'plugins/lab.rb', line 290
def cmd_lab_suspend(*args)
return lab_usage if args.empty?
if args[0] == "all"
@controller.each{ |vm| vm.suspend }
else
args.each do |arg|
if @controller.includes_hostname? arg
if @controller.find_by_hostname(arg).running?
print_line "Suspending lab vm #{arg}."
@controller.find_by_hostname(arg).suspend
end
end
end
end
end
|
#cmd_lab_upload(*args) ⇒ Object
Command: lab_upload [vmids] [from] [to]
Description: Uploads a file to the guest(s)
Quirks: Pass “all” as a vmid to have it operate on all vms.
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
|
# File 'plugins/lab.rb', line 389
def cmd_lab_upload(*args)
return lab_usage if args.empty?
return lab_usage if args.count < 3
local_path = args[args.count-2]
vm_path = args[args.count-1]
if args[0] == "all"
@controller.each do |vm|
if vm.running?
print_line "Copying from #{local_path} to #{vm_path} on #{vm.hostname}"
vm.copy_to_guest(local_path, vm_path)
end
end
else
args[0..-2].each do |vmid_arg|
next unless @controller.includes_hostname? vmid_arg
if @controller[vmid_arg].running?
print_line "Copying from #{local_path} to #{vm_path} on #{vmid_arg}"
@controller[vmid_arg].copy_to_guest(local_path, vm_path)
end
end
end
end
|
#commands ⇒ Object
Returns the hash of commands supported by this dispatcher.
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
|
# File 'plugins/lab.rb', line 36
def commands
{
"lab_help" => "lab_help <lab command> - Show that command's description.",
"lab_show" => "lab_show - show all vms in the lab.",
"lab_search" => "lab_search - search local vms in the lab.",
"lab_search_tags" => "lab_search_tag - search local vms in the lab.",
"lab_show_running" => "lab_show_running - show running vms.",
"lab_load" => "lab_load [file] - load a lab definition from disk.",
"lab_save" => "lab_save [filename] - persist a lab definition in a file.",
"lab_load_running" => "lab_load_running [type] [user] [host] - use the running vms to create a lab.",
"lab_load_config" => "lab_load_config [type] [user] [host] - use the vms in the config to create a lab.",
"lab_load_dir" => "lab_load_dir [type] [directory] - create a lab from a specified directory.",
"lab_clear" => "lab_clear - clear the running lab.",
"lab_start" => "lab_start [vmid+|all] start the specified vm.",
"lab_reset" => "lab_reset [vmid+|all] reset the specified vm.",
"lab_suspend" => "lab_suspend [vmid+|all] suspend the specified vm.",
"lab_stop" => "lab_stop [vmid+|all] stop the specified vm.",
"lab_revert" => "lab_revert [vmid+|all] [snapshot] revert the specified vm.",
"lab_snapshot" => "lab_snapshot [vmid+|all] [snapshot] snapshot all targets for this exploit.",
"lab_upload" => "lab_upload [vmid] [local_path] [remote_path] upload a file.",
"lab_run_command" => "lab_run_command [vmid+|all] [command] run a command on all targets.",
"lab_browse_to" => "lab_browse_to [vmid+|all] [uri] use the default browser to browse to a uri."
}
end
|
#extended_help ⇒ Object
No extended help yet, but this is where more detailed documentation on particular commands would live. Key is command, (not cmd_command), value is the documentation.
448
449
450
451
452
453
|
# File 'plugins/lab.rb', line 448
def extended_help
{
"lab_fake_cmd" => "This is a fake command. It's got its own special docs." +
(" " * longest_cmd_size) + "It might be long so so deal with formatting somehow."
}
end
|
#lab_usage ⇒ Object
456
457
458
459
460
461
462
463
464
|
# File 'plugins/lab.rb', line 456
def lab_usage
caller[0][/`cmd_(.*)'/]
cmd = $1
if extended_help[cmd] || commands[cmd]
cmd_lab_help cmd
else print_error "Unknown command. Try 'help'"
end
end
|
#longest_cmd_size ⇒ Object
441
442
443
|
# File 'plugins/lab.rb', line 441
def longest_cmd_size
commands.keys.map {|x| x.size}.sort.last
end
|
#name ⇒ Object
62
63
64
|
# File 'plugins/lab.rb', line 62
def name
"Lab"
end
|