Class: Mdm::Session
- Inherits:
-
ActiveRecord::Base
- Object
- ActiveRecord::Base
- Mdm::Session
- Defined in:
- app/models/mdm/session.rb
Overview
Instance Attribute Summary collapse
-
#close_reason ⇒ String
Why the session was closed.
-
#closed_at ⇒ DateTime
When the session was closed on #host.
-
#datastore ⇒ Hash
Options for exploit and #via_payload modules.
-
#desc ⇒ String
Description of session.
-
#events ⇒ Array<Mdm::Event>
Events that occurred when this session was open.
-
#exploit_attempt ⇒ Mdm::ExploitAttempt
Exploit attempt that created this session.
-
#host ⇒ Mdm::Host
Host on which this session was opened.
-
#last_seen ⇒ DateTime
The last time the session was checked to see that it was still open.
-
#local_id ⇒ Integer
The ID number of the in-memory session.
-
#opened_at ⇒ DateTime
When the session was opened on #host.
-
#originating_module_run ⇒ MetasploitDataModels::ModuleRun
Records the Metasploit modules run that created this session.
-
#platform ⇒ String
The #host platform.
-
#port ⇒ Integer
The remote port on which this session is running on #host.
-
#routes ⇒ ActiveRecord::Relation<Mdm::Route>
Routes tunneled throug this session.
-
#stype ⇒ String
The type of the session.
-
#target_module_runs ⇒ ActiveRecord::Relation<MetasploitDataModels::ModuleRun>
Records the Metasploit modules run on this session.
-
#task ⇒ Mdm::Session
Session this task touched.
-
#task_sessions ⇒ Array<Mdm::TaskSession>
Details about sessions this task touched.
-
#via_exploit ⇒ String
The full name of the exploit module that opened this session.
-
#via_payload ⇒ String
The full name if the payload module that's running this session.
-
#vuln_attempt ⇒ Mdm::VulnAttempt
Vulnerability attempt that created this session.
-
#workspace ⇒ Mdm::Workspace
readonly
The workspace in which this session exists.
Instance Method Summary collapse
-
#upgradeable? ⇒ true, false
Returns whether the session can be upgraded to a meterpreter session from a shell session on Windows.
Instance Attribute Details
#close_reason ⇒ String
Why the session was closed. Used to differentiate between user killing it local and the session being killed on the remote end.
|
|
# File 'app/models/mdm/session.rb', line 99
|
#closed_at ⇒ DateTime
When the session was closed on #host.
|
|
# File 'app/models/mdm/session.rb', line 94
|
#datastore ⇒ Hash
Options for exploit and #via_payload modules.
|
|
# File 'app/models/mdm/session.rb', line 105
|
#desc ⇒ String
Description of session.
|
|
# File 'app/models/mdm/session.rb', line 110
|
#events ⇒ Array<Mdm::Event>
Events that occurred when this session was open.
12 13 14 15 16 |
# File 'app/models/mdm/session.rb', line 12 has_many :events, class_name: 'Mdm::SessionEvent', dependent: :delete_all, inverse_of: :session, order: 'created_at' |
#exploit_attempt ⇒ Mdm::ExploitAttempt
Exploit attempt that created this session.
22 23 24 |
# File 'app/models/mdm/session.rb', line 22 has_one :exploit_attempt, class_name: 'Mdm::ExploitAttempt', inverse_of: :session |
#host ⇒ Mdm::Host
Host on which this session was opened.
30 31 32 |
# File 'app/models/mdm/session.rb', line 30 belongs_to :host, class_name: 'Mdm::Host', inverse_of: :sessions |
#last_seen ⇒ DateTime
The last time the session was checked to see that it was still open.
|
|
# File 'app/models/mdm/session.rb', line 115
|
#local_id ⇒ Integer
The ID number of the in-memory session.
|
|
# File 'app/models/mdm/session.rb', line 120
|
#opened_at ⇒ DateTime
When the session was opened on #host.
|
|
# File 'app/models/mdm/session.rb', line 125
|
#originating_module_run ⇒ MetasploitDataModels::ModuleRun
Records the Metasploit modules run that created this session
47 48 49 50 |
# File 'app/models/mdm/session.rb', line 47 belongs_to :originating_module_run, class_name: 'MetasploitDataModels::ModuleRun', foreign_key: :module_run_id, inverse_of: :spawned_session |
#port ⇒ Integer
The remote port on which this session is running on #host.
|
|
# File 'app/models/mdm/session.rb', line 135
|
#routes ⇒ ActiveRecord::Relation<Mdm::Route>
Routes tunneled throug this session.
38 39 40 41 |
# File 'app/models/mdm/session.rb', line 38 has_many :routes, class_name: 'Mdm::Route', dependent: :delete_all, inverse_of: :session |
#stype ⇒ String
The type of the session.
|
|
# File 'app/models/mdm/session.rb', line 140
|
#target_module_runs ⇒ ActiveRecord::Relation<MetasploitDataModels::ModuleRun>
Records the Metasploit modules run on this session
56 57 58 |
# File 'app/models/mdm/session.rb', line 56 has_many :target_module_runs, class_name: 'MetasploitDataModels::ModuleRun', inverse_of: :target_session |
#task ⇒ Mdm::Session
Session this task touched
88 |
# File 'app/models/mdm/session.rb', line 88 has_many :tasks, :through => :task_sessions, :class_name => 'Mdm::Task' |
#task_sessions ⇒ Array<Mdm::TaskSession>
Details about sessions this task touched
82 |
# File 'app/models/mdm/session.rb', line 82 has_many :task_sessions, :dependent => :destroy, :class_name => 'Mdm::TaskSession' |
#via_exploit ⇒ String
The full name of the exploit module that opened this session.
|
|
# File 'app/models/mdm/session.rb', line 145
|
#via_payload ⇒ String
The full name if the payload module that's running this session.
|
|
# File 'app/models/mdm/session.rb', line 150
|
#vuln_attempt ⇒ Mdm::VulnAttempt
Vulnerability attempt that created this session.
64 65 66 |
# File 'app/models/mdm/session.rb', line 64 has_one :vuln_attempt, class_name: 'Mdm::VulnAttempt', inverse_of: :session |
#workspace ⇒ Mdm::Workspace (readonly)
The workspace in which this session exists.
76 |
# File 'app/models/mdm/session.rb', line 76 has_one :workspace, :through => :host, :class_name => 'Mdm::Workspace' |
Instance Method Details
#upgradeable? ⇒ true, false
Returns whether the session can be upgraded to a meterpreter session from a shell session on Windows.
179 180 181 182 183 184 185 |
# File 'app/models/mdm/session.rb', line 179 def upgradeable? if (self.platform =~ /win/i and self.stype == 'shell') return true else return false end end |