Sha256: a90f77d3a3c5b5132a60a06dc72ad3ea06c8e4f5133569ce30fff26845eaa603
Contents?: true
Size: 922 Bytes
Versions: 23
Compression:
Stored size: 922 Bytes
Contents
# Events that occurred when using a {#session}. class Mdm::SessionEvent < ApplicationRecord # # Associations # # The session in which the event occurred. belongs_to :session, class_name: 'Mdm::Session', inverse_of: :events # @!attribute command # The command that was run through the session that triggered this event. # # @return [String] # @!attribute created_at # When this event occurred. # # @return [DateTime] # @!attribute etype # The type of the event. # # @return [String] # @!attribute local_path # The current local directory when {#command} was run. # # @return [String] # @!attribute output # The {#output} of running {#command}. # # @return [String] # @!attribute remote_path # The current remote directory when {#command} was run. # # @return [String] Metasploit::Concern.run(self) end
Version data entries
23 entries across 23 versions & 2 rubygems