Class: Mdm::WebForm
- Inherits:
-
ApplicationRecord
- Object
- ApplicationRecord
- Mdm::WebForm
- Defined in:
- app/models/mdm/web_form.rb
Overview
A filled-in form on a #web_site.
Instance Attribute Summary collapse
-
#created_at ⇒ DateTime
When this web form was created.
-
#method ⇒ String
HTTP method (or verb) used to submitted this form, such as GET or POST.
-
#path ⇒ String
Path portion of URL to which this form was submitted.
-
#query ⇒ String
URL query that submitted for this form.
-
#updated_at ⇒ DateTime
The last time this web form was updated.
Instance Method Summary collapse
-
#params ⇒ Array<Array(String, String)>
Parameters submitted in this form.
Instance Attribute Details
#created_at ⇒ DateTime
When this web form was created.
|
# File 'app/models/mdm/web_form.rb', line 17
|
#method ⇒ String
HTTP method (or verb) used to submitted this form, such as GET or POST.
|
# File 'app/models/mdm/web_form.rb', line 22
|
#path ⇒ String
Path portion of URL to which this form was submitted.
|
# File 'app/models/mdm/web_form.rb', line 27
|
#query ⇒ String
URL query that submitted for this form.
|
# File 'app/models/mdm/web_form.rb', line 32
|
#updated_at ⇒ DateTime
The last time this web form was updated.
|
# File 'app/models/mdm/web_form.rb', line 37
|
Instance Method Details
#params ⇒ Array<Array(String, String)>
Parameters submitted in this form.
49 |
# File 'app/models/mdm/web_form.rb', line 49 serialize :params, MetasploitDataModels::Base64Serializer.new |