Class: Msf::Sessions::Custom

Inherits:
Object
  • Object
show all
Includes:
Msf::Session, Msf::Session::Basic
Defined in:
lib/msf/base/sessions/custom.rb

Overview

This class provides the ability to receive a custom stage callback

Instance Attribute Summary collapse

Attributes included from Msf::Session::Interactive

#rstream

Attributes included from Rex::Ui::Interactive

#completed, #interacting, #next_session, #on_command_proc, #on_print_proc, #on_run_command_error_proc, #orig_suspend, #orig_usr1, #orig_winch

Attributes included from Rex::Ui::Subscriber::Input

#user_input

Attributes included from Rex::Ui::Subscriber::Output

#user_output

Attributes included from Msf::Session

#alive, #db_record, #exploit, #exploit_datastore, #exploit_task, #exploit_uuid, #framework, #info, #machine_id, #payload_uuid, #routes, #sid, #sname, #target_host, #target_port, #username, #uuid, #via, #workspace

Attributes included from Framework::Offspring

#framework

Class Method Summary collapse

Instance Method Summary collapse

Methods included from Msf::Session::Basic

#_interact

Methods included from Msf::Session::Interactive

#_interact, #_interact_complete, #_interrupt, #_suspend, #_usr1, #abort_foreground, #abort_foreground_supported, #comm_channel, #interactive?, #kill, #run_cmd, #tunnel_local, #tunnel_peer, #user_want_abort?

Methods included from Rex::Ui::Interactive

#_interact, #_interact_complete, #_interrupt, #_local_fd, #_remote_fd, #_stream_read_local_write_remote, #_stream_read_remote_write_local, #_suspend, #_winch, #detach, #handle_suspend, #handle_usr1, #handle_winch, #interact, #interact_stream, #prompt, #prompt_yesno, #restore_suspend, #restore_usr1, #restore_winch

Methods included from Rex::Ui::Subscriber

#copy_ui, #init_ui, #reset_ui

Methods included from Rex::Ui::Subscriber::Input

#gets

Methods included from Rex::Ui::Subscriber::Output

#flush, #print, #print_blank_line, #print_error, #print_good, #print_line, #print_status, #print_warning

Methods included from Msf::Session

#alive?, #comm_channel, #dead?, #inspect, #interactive?, #kill, #log_file_name, #log_source, #name, #name=, #register?, #session_host, #session_host=, #session_port, #session_port=, #session_type, #set_from_exploit, #set_via, #tunnel_local, #tunnel_peer, #tunnel_to_s, #via_exploit, #via_payload

Constructor Details

#initialize(rstream, opts = {}) ⇒ Custom

Returns a new instance of Custom.



29
30
31
32
33
34
# File 'lib/msf/base/sessions/custom.rb', line 29

def initialize(rstream, opts = {})
  super
  self.platform ||= ""
  self.arch     ||= ""
  datastore = opts[:datastore]
end

Instance Attribute Details

#archObject

Returns the value of attribute arch.



19
20
21
# File 'lib/msf/base/sessions/custom.rb', line 19

def arch
  @arch
end

#platformObject

Returns the value of attribute platform.



20
21
22
# File 'lib/msf/base/sessions/custom.rb', line 20

def platform
  @platform
end

Class Method Details

.can_cleanup_filesObject



60
61
62
# File 'lib/msf/base/sessions/custom.rb', line 60

def self.can_cleanup_files
  false
end

.create_session(rstream, opts = {}) ⇒ Object



36
37
38
# File 'lib/msf/base/sessions/custom.rb', line 36

def self.create_session(rstream, opts = {})
  Msf::Sessions::Custom.new(rstream, opts)
end

.typeObject

Returns the type of session.



25
26
27
# File 'lib/msf/base/sessions/custom.rb', line 25

def self.type
  "custom"
end

Instance Method Details

#cleanupObject



44
45
46
47
48
49
50
51
# File 'lib/msf/base/sessions/custom.rb', line 44

def cleanup
  print_good("Custom stage sent; session has been closed")
  if rstream
    # this is also a best-effort
    rstream.close rescue nil
    rstream = nil
  end
end

#descObject

Returns the session description.



56
57
58
# File 'lib/msf/base/sessions/custom.rb', line 56

def desc
  "Custom"
end

#process_autoruns(datastore) ⇒ Object



40
41
42
# File 'lib/msf/base/sessions/custom.rb', line 40

def process_autoruns(datastore)
  cleanup
end

#typeObject

Calls the class method



67
68
69
# File 'lib/msf/base/sessions/custom.rb', line 67

def type
  self.class.type
end