Sha256: da98eb91232dd22c4d65e8cc0c67483256e7210d7aaa912e716e9203e3707782
Contents?: true
Size: 1.57 KB
Versions: 3
Compression:
Stored size: 1.57 KB
Contents
# Request sent to a {Mdm::WmapTarget}. WMAP is a plugin to metasploit-framework. class Mdm::WmapRequest < ActiveRecord::Base # # # Attributes # # # @!attribute address # IP address of {#host} to which this request was sent. # # @return [String] # @!attribute body # Body of this request. # # @return [String] # @!attribute created_at # When this request was created. # # @return [DateTime] # @!attribute headers # Headers sent as part of this request. # # @return [String] # @!attribute host # Name of host to which this request was sent. # # @return [String] # @!attribute meth # HTTP Method (or VERB) used for request. # # @return [String] # @!attribute path # Path portion of URL for this request. # # @return [String] # @!attribute port # Port at {#address} to which this request was sent. # # @return [Integer] # @!attribute query # Query portion of URL for this request. # # @return [String] # @!attribute ssl # Version of SSL to use. # # @return [Integer] # @!attribute updated_at # The last time this request was updated. # # @return [DateTime] # # @!group Response # # @!attribute respcode # HTTP status code sent in response to this request from server. # # @return [String] # @!attribute resphead # Headers sent in response from server. # # @return [String] # @!attribute response # Response sent from server. # # @return [String] # # @!endgroup # Metasploit::Concern.run(self) end
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
metasploit_data_models-0.24.4 | app/models/mdm/wmap_request.rb |
metasploit_data_models-0.24.3 | app/models/mdm/wmap_request.rb |
metasploit_data_models-0.24.2 | app/models/mdm/wmap_request.rb |