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.
-
#platform ⇒ String
The #host platform.
-
#port ⇒ Integer
The remote port on which this session is running on #host.
-
#routes ⇒ Array<Mdm::Route>
Routes tunneled throug this session.
-
#stype ⇒ String
The type of the 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 82
|
#closed_at ⇒ DateTime
When the session was closed on #host.
|
# File 'app/models/mdm/session.rb', line 77
|
#datastore ⇒ Hash
Options for exploit and #via_payload modules.
|
# File 'app/models/mdm/session.rb', line 88
|
#desc ⇒ String
Description of session.
|
# File 'app/models/mdm/session.rb', line 93
|
#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 98
|
#local_id ⇒ Integer
The ID number of the in-memory session.
|
# File 'app/models/mdm/session.rb', line 103
|
#opened_at ⇒ DateTime
When the session was opened on #host.
|
# File 'app/models/mdm/session.rb', line 108
|
#port ⇒ Integer
The remote port on which this session is running on #host.
|
# File 'app/models/mdm/session.rb', line 118
|
#routes ⇒ Array<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 123
|
#task ⇒ Mdm::Session
Session this task touched
71 |
# File 'app/models/mdm/session.rb', line 71 has_many :tasks, :through => :task_sessions, :class_name => 'Mdm::Task' |
#task_sessions ⇒ Array<Mdm::TaskSession>
Details about sessions this task touched
65 |
# File 'app/models/mdm/session.rb', line 65 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 128
|
#via_payload ⇒ String
The full name if the payload module that's running this session.
|
# File 'app/models/mdm/session.rb', line 133
|
#vuln_attempt ⇒ Mdm::VulnAttempt
Vulnerability attempt that created this session.
47 48 49 |
# File 'app/models/mdm/session.rb', line 47 has_one :vuln_attempt, class_name: 'Mdm::VulnAttempt', inverse_of: :session |
#workspace ⇒ Mdm::Workspace (readonly)
The workspace in which this session exists.
59 |
# File 'app/models/mdm/session.rb', line 59 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.
162 163 164 165 166 167 168 |
# File 'app/models/mdm/session.rb', line 162 def upgradeable? if (self.platform =~ /win/i and self.stype == 'shell') return true else return false end end |