Sha256: 731641521f464721e64813117299313f671eb8b935db134e6d8a725921e29892
Contents?: true
Size: 881 Bytes
Versions: 45
Compression:
Stored size: 881 Bytes
Contents
# Client used for `report_client` in metasploit-framework Metasploit Modules. class Mdm::Client < ActiveRecord::Base # # Associations # # {Mdm::Host} from which this client connected. belongs_to :host, class_name: 'Mdm::Host', inverse_of: :clients # # Attributes # # @!attribute created_at # When this client was created. # # @return [DateTime] # @!attribute updated_at # When this client was last updated. # # @return [DateTime] # # @!group User Agent # # @!attribute ua_name # Parsed name from {#ua_string user agent string} # # @return [String] # @!attribute ua_string # Raw user agent string from client browser # # @return [String] # @!attribute ua_ver # Version of user agent. # # @return [String] # # @!endgroup # Metasploit::Concern.run(self) end
Version data entries
45 entries across 45 versions & 1 rubygems