Module: Rex::Ui::Text::Shell

Includes:
Text::Color
Included in:
DispatcherShell, PseudoShell
Defined in:
lib/rex/ui/text/shell.rb,
lib/rex/ui/text/shell/history_manager.rb

Overview

The shell class provides a command-prompt style interface in a generic fashion.

Defined Under Namespace

Modules: InputShell Classes: HistoryManager

Instance Attribute Summary collapse

Instance Method Summary collapse

Instance Attribute Details

#cont_flagObject (protected)

:nodoc:


492
493
494
# File 'lib/rex/ui/text/shell.rb', line 492

def cont_flag
  @cont_flag
end

#cont_promptObject (protected)

:nodoc:


487
488
489
# File 'lib/rex/ui/text/shell.rb', line 487

def cont_prompt
  @cont_prompt
end

#disable_outputObject

Whether or not output has been disabled.


281
282
283
# File 'lib/rex/ui/text/shell.rb', line 281

def disable_output
  @disable_output
end

#frameworkObject

Returns the value of attribute framework.


294
295
296
# File 'lib/rex/ui/text/shell.rb', line 294

def framework
  @framework
end

#hist_last_savedObject

the number of history lines when last saved/loaded


295
296
297
# File 'lib/rex/ui/text/shell.rb', line 295

def hist_last_saved
  @hist_last_saved
end

#histfileObject (protected)

:nodoc:


489
490
491
# File 'lib/rex/ui/text/shell.rb', line 489

def histfile
  @histfile
end

#inputObject

The input handle to read user input from.


285
286
287
# File 'lib/rex/ui/text/shell.rb', line 285

def input
  @input
end

#local_hostnameObject (protected)

:nodoc:


491
492
493
# File 'lib/rex/ui/text/shell.rb', line 491

def local_hostname
  @local_hostname
end

#local_usernameObject (protected)

:nodoc:


491
492
493
# File 'lib/rex/ui/text/shell.rb', line 491

def local_username
  @local_username
end

#log_sourceObject (protected)

:nodoc:


490
491
492
# File 'lib/rex/ui/text/shell.rb', line 490

def log_source
  @log_source
end

#nameObject (protected)

Returns the value of attribute name.


493
494
495
# File 'lib/rex/ui/text/shell.rb', line 493

def name
  @name
end

#on_command_procObject

Returns the value of attribute on_command_proc.


292
293
294
# File 'lib/rex/ui/text/shell.rb', line 292

def on_command_proc
  @on_command_proc
end

#on_print_procObject

Returns the value of attribute on_print_proc.


293
294
295
# File 'lib/rex/ui/text/shell.rb', line 293

def on_print_proc
  @on_print_proc
end

#outputObject

The output handle to write output to.


289
290
291
# File 'lib/rex/ui/text/shell.rb', line 289

def output
  @output
end

#promptObject

Returns the value of attribute prompt.


291
292
293
# File 'lib/rex/ui/text/shell.rb', line 291

def prompt
  @prompt
end

#prompt_charObject

Returns the value of attribute prompt_char.


291
292
293
# File 'lib/rex/ui/text/shell.rb', line 291

def prompt_char
  @prompt_char
end

#stop_countObject (protected)

:nodoc:


490
491
492
# File 'lib/rex/ui/text/shell.rb', line 490

def stop_count
  @stop_count
end

#stop_flagObject (protected)

:nodoc:


487
488
489
# File 'lib/rex/ui/text/shell.rb', line 487

def stop_flag
  @stop_flag
end

#tab_complete_procObject (protected)

:nodoc:


488
489
490
# File 'lib/rex/ui/text/shell.rb', line 488

def tab_complete_proc
  @tab_complete_proc
end

Instance Method Details

#_print_prompt(prompt) ⇒ Object (protected)

Print the prompt, but do not log it.


363
364
365
# File 'lib/rex/ui/text/shell.rb', line 363

def _print_prompt(prompt)
  output.print(prompt)
end

#format_prompt(str) ⇒ Object (protected)

Handle prompt substitutions


396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
# File 'lib/rex/ui/text/shell.rb', line 396

def format_prompt(str)
  return str unless framework

  # find the active session
  session = framework.sessions.values.find { |session| session.interacting }
  default = 'unknown'

  formatted = ''
  skip_next = false
  for prefix, spec in str.split('').each_cons(2) do
    if skip_next
      skip_next = false
      next
    end

    unless prefix == '%'
      formatted << prefix
      skip_next = false
      next
    end

    skip_next = true
    if spec == 'T'
      if framework.datastore['PromptTimeFormat']
        strftime_format = framework.datastore['PromptTimeFormat']
      else
        strftime_format = ::Time::DATE_FORMATS[:db].to_s
      end
      formatted << ::Time.now.strftime(strftime_format).to_s
    elsif spec == 'W' && framework.db.active
      formatted << framework.db.workspace.name
    elsif session
      sysinfo = session.respond_to?(:sys) ? session.sys.config.sysinfo : nil

      case spec
      when 'A'
        formatted << (sysinfo.nil? ? default : sysinfo['Architecture'])
      when 'D'
        formatted << (session.respond_to?(:fs) ? session.fs.dir.getwd(refresh: false) : default)
      when 'd'
        formatted << ::Dir.getwd
      when 'H'
        formatted << (sysinfo.nil? ? default : sysinfo['Computer'])
      when 'h'
        formatted << (self.local_hostname || default).chomp
      when 'I'
        formatted << session.tunnel_peer
      when 'i'
        formatted << session.tunnel_local
      when 'M'
        formatted << session.session_type
      when 'S'
        formatted << session.sid.to_s
      when 'U'
        formatted << (session.respond_to?(:sys) ? session.sys.config.getuid(refresh: false) : default)
      when 'u'
        formatted << (self.local_username || default).chomp
      else
        formatted << prefix
        skip_next = false
      end
    else
      case spec
      when 'H'
        formatted << (self.local_hostname || default).chomp
      when 'J'
        formatted << framework.jobs.length.to_s
      when 'U'
        formatted << (self.local_username || default).chomp
      when 'S'
        formatted << framework.sessions.length.to_s
      when 'L'
        formatted << Rex::Socket.source_address
      when 'D'
        formatted << ::Dir.getwd
      else
        formatted << prefix
        skip_next = false
      end
    end
  end

  if str.length > 0 && !skip_next
    formatted << str[-1]
  end

  formatted
end

#get_input_lineObject (protected)

Get a single line of input, following continuation directives as necessary.


306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
# File 'lib/rex/ui/text/shell.rb', line 306

def get_input_line
  line = "\\\n"
  prompt_needs_reset = false

  self.cont_flag = false
  while line =~ /(^|[^\\])\\\s*$/
    # Strip \ and all the trailing whitespace
    line.sub!(/\\\s*/, '')

    if line.length > 0
      # Using update_prompt will overwrite the primary prompt
      input.prompt = output.update_prompt(self.cont_prompt)
      self.cont_flag = true
      prompt_needs_reset = true
    end

    output.input = input
    str = input.pgets
    if str
      line << str
    else
      line = nil
    end

    output.input = nil
    log_output(input.prompt)
  end
  self.cont_flag = false

  if prompt_needs_reset
    # The continuation prompt was used so reset the prompt
    update_prompt
  end

  line
end

#init_tab_completeObject


66
67
68
69
70
71
72
# File 'lib/rex/ui/text/shell.rb', line 66

def init_tab_complete
  if (self.input and self.input.supports_readline)
    # Unless cont_flag because there's no tab complete for continuation lines
    self.input = Input::Readline.new(lambda { |str| tab_complete(str) unless cont_flag })
    self.input.output = self.output
  end
end

#init_ui(in_input = nil, in_output = nil) ⇒ Object

Initializes the user interface input/output classes.


77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
# File 'lib/rex/ui/text/shell.rb', line 77

def init_ui(in_input = nil, in_output = nil)
  # Initialize the input and output methods
  self.input  = in_input
  self.output = in_output

  if (self.input)
    # Extend the input medium as an input shell if the input medium
    # isn't intrinsicly a shell.
    if (self.input.intrinsic_shell? == false)
      self.input.extend(InputShell)
    end

    self.input.output = self.output
  end
end

#initialize(prompt, prompt_char = '>', histfile = nil, framework = nil, name = nil) ⇒ Object

Initializes a shell that has a prompt and can be interacted with.


43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
# File 'lib/rex/ui/text/shell.rb', line 43

def initialize(prompt, prompt_char = '>', histfile = nil, framework = nil, name = nil)
  # Set the stop flag to false
  self.stop_flag      = false
  self.disable_output = false
  self.stop_count     = 0
  self.name = name

  # Initialize the prompt
  self.cont_prompt = ' > '
  self.cont_flag = false
  self.prompt = prompt
  self.prompt_char = prompt_char

  self.histfile = histfile
  self.hist_last_saved = 0

  # Static prompt variables
  self.local_hostname = ENV['HOSTNAME'] || try_exec('hostname')&.split('.')&.first&.rstrip || ENV['COMPUTERNAME']
  self.local_username = ENV['USER'] || try_exec('whoami')&.rstrip || ENV['USERNAME']

  self.framework = framework
end

#log_input(buf) ⇒ Object (protected)

Writes the supplied input to the log source if one has been registered.


370
371
372
# File 'lib/rex/ui/text/shell.rb', line 370

def log_input(buf)
  rlog(buf, log_source) if (log_source)
end

#log_output(buf) ⇒ Object (protected)

Writes the supplied output to the log source if one has been registered.


377
378
379
# File 'lib/rex/ui/text/shell.rb', line 377

def log_output(buf)
  rlog(buf, log_source) if (log_source)
end

#parse_line(line) ⇒ Object (protected)

Parse a line into an array of arguments.


346
347
348
349
350
351
352
353
354
355
356
357
358
# File 'lib/rex/ui/text/shell.rb', line 346

def parse_line(line)
  log_input(line)

  line.gsub!(/(\r|\n)/, '')

  begin
    return args = Rex::Parser::Arguments.from_s(line)
  rescue ::ArgumentError
    print_error("Parse error: #{$!}")
  end

  return []
end

Prints a raw message to the output handle.


272
273
274
275
276
# File 'lib/rex/ui/text/shell.rb', line 272

def print(msg='')
  return if (disable_output == true)
  self.on_print_proc.call(msg) if self.on_print_proc
  log_output(output.print(msg))
end

Prints an error message to the output handle.


218
219
220
221
222
223
224
225
# File 'lib/rex/ui/text/shell.rb', line 218

def print_error(msg='')
  return if (output.nil?)
  return if (msg.nil?)

  self.on_print_proc.call(msg) if self.on_print_proc
  # Errors are not subject to disabled output
  log_output(output.print_error(msg))
end

Prints a good message to the output handle.


242
243
244
245
246
247
# File 'lib/rex/ui/text/shell.rb', line 242

def print_good(msg='')
  return if (disable_output == true)

  self.on_print_proc.call(msg) if self.on_print_proc
  log_output(output.print_good(msg))
end

Prints a line of text to the output handle.


252
253
254
255
256
257
# File 'lib/rex/ui/text/shell.rb', line 252

def print_line(msg='')
  return if (disable_output == true)

  self.on_print_proc.call(msg) if self.on_print_proc
  log_output(output.print_line(msg))
end

Prints a status message to the output handle.


232
233
234
235
236
237
# File 'lib/rex/ui/text/shell.rb', line 232

def print_status(msg='')
  return if (disable_output == true)

  self.on_print_proc.call(msg) if self.on_print_proc
  log_output(output.print_status(msg))
end

Prints a warning message to the output handle.


262
263
264
265
266
267
# File 'lib/rex/ui/text/shell.rb', line 262

def print_warning(msg='')
  return if (disable_output == true)

  self.on_print_proc.call(msg) if self.on_print_proc
  log_output(output.print_warning(msg))
end

#prompt_yesno(query) ⇒ Object (protected)

Prompt the user for input if possible. Special edition for use inside commands.


384
385
386
387
388
389
390
391
# File 'lib/rex/ui/text/shell.rb', line 384

def prompt_yesno(query)
  p = "#{query} [y/N]"
  old_p = [self.prompt, self.prompt_char]
  update_prompt p, ' '
  /^y/i === get_input_line
ensure
  update_prompt *old_p
end

#reset_uiObject

Resets the user interface handles.


96
97
98
# File 'lib/rex/ui/text/shell.rb', line 96

def reset_ui
  init_ui
end

#run(&block) ⇒ Object

Run the command processing loop.


124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
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
174
175
176
# File 'lib/rex/ui/text/shell.rb', line 124

def run(&block)
  begin
    require 'pry'
    # pry history will not be loaded by default when pry is used as a breakpoint like `binding.pry`
    Pry.config.history_load = false
  rescue LoadError
    # Pry is a development dependency, if not available suppressing history_load can be safely ignored.
  end

  HistoryManager.push_context(history_file: histfile, name: name)
  self.hist_last_saved = Readline::HISTORY.length

  begin

    while true
      # If the stop flag was set or we've hit EOF, break out
      break if self.stop_flag || self.stop_count > 1

      init_tab_complete
      update_prompt

      line = get_input_line

      # If you have sessions active, this will give you a shot to exit
      # gracefully. If you really are ambitious, 2 eofs will kick this out
      if input.eof? || line == nil
        self.stop_count += 1
        next if self.stop_count > 1
        run_single('quit')

      # If a block was passed in, pass the line to it.  If it returns true,
      # break out of the shell loop.
      elsif block
        break if block.call(line)

      # Otherwise, call what should be an overridden instance method to
      # process the line.
      else
        run_single(line)
        self.stop_count = 0
      end

    end
  # Prevent accidental console quits
  rescue ::Interrupt
    output.print("Interrupt: use the 'exit' command to quit\n")
    retry
  ensure
    HistoryManager.pop_context
    HistoryManager.flush
    self.hist_last_saved = Readline::HISTORY.length
  end
end

#set_log_source(log_source) ⇒ Object

Sets the log source that should be used for logging input and output.


103
104
105
# File 'lib/rex/ui/text/shell.rb', line 103

def set_log_source(log_source)
  self.log_source = log_source
end

#stopObject

Stop processing user input.


181
182
183
# File 'lib/rex/ui/text/shell.rb', line 181

def stop
  self.stop_flag = true
end

#stopped?Boolean

Checks to see if the shell has stopped.

Returns:

  • (Boolean)

188
189
190
# File 'lib/rex/ui/text/shell.rb', line 188

def stopped?
  self.stop_flag
end

#supports_color?Boolean (protected)

Returns:

  • (Boolean)

299
300
301
# File 'lib/rex/ui/text/shell.rb', line 299

def supports_color?
  true
end

#tab_complete(str) ⇒ Object

Performs tab completion on the supplied string.


117
118
119
# File 'lib/rex/ui/text/shell.rb', line 117

def tab_complete(str)
  return tab_complete_proc(str) if (tab_complete_proc)
end

#unset_log_sourceObject

Unsets the log source so that logging becomes disabled.


110
111
112
# File 'lib/rex/ui/text/shell.rb', line 110

def unset_log_source
  set_log_source(nil)
end

#update_prompt(new_prompt = self.prompt, new_prompt_char = self.prompt_char) ⇒ Object

Change the input prompt.

prompt - the actual prompt new_prompt_char the char to append to the prompt


197
198
199
200
201
202
203
204
205
206
207
208
209
# File 'lib/rex/ui/text/shell.rb', line 197

def update_prompt(new_prompt = self.prompt, new_prompt_char = self.prompt_char)
  if (self.input)
    p = substitute_colors(new_prompt + ' ' + new_prompt_char + ' ', true)

    # Save the prompt before any substitutions
    self.prompt = new_prompt
    self.prompt_char  = new_prompt_char

    # Set the actual prompt to the saved prompt with any substitutions
    # or updates from our output driver, be they color or whatever
    self.input.prompt = self.output.update_prompt(format_prompt(p))
  end
end