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:



498
499
500
# File 'lib/rex/ui/text/shell.rb', line 498

def cont_flag
  @cont_flag
end

#cont_promptObject (protected)

:nodoc:



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

def cont_prompt
  @cont_prompt
end

#disable_outputObject

Whether or not output has been disabled.



287
288
289
# File 'lib/rex/ui/text/shell.rb', line 287

def disable_output
  @disable_output
end

#frameworkObject

Returns the value of attribute framework.



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

def framework
  @framework
end

#hist_last_savedObject

the number of history lines when last saved/loaded



301
302
303
# File 'lib/rex/ui/text/shell.rb', line 301

def hist_last_saved
  @hist_last_saved
end

#histfileObject (protected)

:nodoc:



495
496
497
# File 'lib/rex/ui/text/shell.rb', line 495

def histfile
  @histfile
end

#inputObject

The input handle to read user input from.



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

def input
  @input
end

#local_hostnameObject (protected)

:nodoc:



497
498
499
# File 'lib/rex/ui/text/shell.rb', line 497

def local_hostname
  @local_hostname
end

#local_usernameObject (protected)

:nodoc:



497
498
499
# File 'lib/rex/ui/text/shell.rb', line 497

def local_username
  @local_username
end

#log_sourceObject (protected)

:nodoc:



496
497
498
# File 'lib/rex/ui/text/shell.rb', line 496

def log_source
  @log_source
end

#nameObject (protected)

Returns the value of attribute name.



499
500
501
# File 'lib/rex/ui/text/shell.rb', line 499

def name
  @name
end

#on_command_procObject

Returns the value of attribute on_command_proc.



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

def on_command_proc
  @on_command_proc
end

#on_print_procObject

Returns the value of attribute on_print_proc.



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

def on_print_proc
  @on_print_proc
end

#outputObject

The output handle to write output to.



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

def output
  @output
end

#promptObject

Returns the value of attribute prompt.



297
298
299
# File 'lib/rex/ui/text/shell.rb', line 297

def prompt
  @prompt
end

#prompt_charObject

Returns the value of attribute prompt_char.



297
298
299
# File 'lib/rex/ui/text/shell.rb', line 297

def prompt_char
  @prompt_char
end

#stop_countObject (protected)

:nodoc:



496
497
498
# File 'lib/rex/ui/text/shell.rb', line 496

def stop_count
  @stop_count
end

#stop_flagObject (protected)

:nodoc:



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

def stop_flag
  @stop_flag
end

#tab_complete_procObject (protected)

:nodoc:



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

def tab_complete_proc
  @tab_complete_proc
end

Instance Method Details

#_print_prompt(prompt) ⇒ Object (protected)

Print the prompt, but do not log it.



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

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

#format_prompt(str) ⇒ Object (protected)

Handle prompt substitutions



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
484
485
486
487
488
489
# File 'lib/rex/ui/text/shell.rb', line 402

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.



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
342
343
344
345
346
347
# File 'lib/rex/ui/text/shell.rb', line 312

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.



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

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.



383
384
385
# File 'lib/rex/ui/text/shell.rb', line 383

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.



352
353
354
355
356
357
358
359
360
361
362
363
364
# File 'lib/rex/ui/text/shell.rb', line 352

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.



278
279
280
281
282
# File 'lib/rex/ui/text/shell.rb', line 278

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.



224
225
226
227
228
229
230
231
# File 'lib/rex/ui/text/shell.rb', line 224

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.



248
249
250
251
252
253
# File 'lib/rex/ui/text/shell.rb', line 248

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.



258
259
260
261
262
263
# File 'lib/rex/ui/text/shell.rb', line 258

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.



238
239
240
241
242
243
# File 'lib/rex/ui/text/shell.rb', line 238

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.



268
269
270
271
272
273
# File 'lib/rex/ui/text/shell.rb', line 268

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.



390
391
392
393
394
395
396
397
# File 'lib/rex/ui/text/shell.rb', line 390

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
177
178
179
180
181
182
# 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

  framework.history_manager.with_context(history_file: histfile, name: name) do
    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

          if block
            block.call('quit')
          elsif respond_to?(:run_single)
            # PseudoShell does not provide run_single
            run_single('quit')
          end

          # 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
    end
  end
ensure
  framework.history_manager.flush
  self.hist_last_saved = Readline::HISTORY.length
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.



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

def stop
  self.stop_flag = true
end

#stopped?Boolean

Checks to see if the shell has stopped.

Returns:

  • (Boolean)


194
195
196
# File 'lib/rex/ui/text/shell.rb', line 194

def stopped?
  self.stop_flag
end

#supports_color?Boolean (protected)

Returns:

  • (Boolean)


305
306
307
# File 'lib/rex/ui/text/shell.rb', line 305

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



203
204
205
206
207
208
209
210
211
212
213
214
215
# File 'lib/rex/ui/text/shell.rb', line 203

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