Class: Arachni::Element::Cookie::DOM
- Defined in:
- lib/arachni/element/cookie/dom.rb
Overview
Provides access to DOM operations for cookies.
Constant Summary
Constants included from Arachni::Element::Capabilities::Auditable::DOM
Arachni::Element::Capabilities::Auditable::DOM::INVALID_INPUT_DATA
Constants included from Arachni::Element::Capabilities::Auditable
Arachni::Element::Capabilities::Auditable::OPTIONS
Constants included from Arachni::Element::Capabilities::Mutable
Arachni::Element::Capabilities::Mutable::MUTATION_OPTIONS
Instance Attribute Summary
Attributes included from Arachni::Element::Capabilities::Auditable::DOM
Attributes included from Arachni::Element::Capabilities::Auditable
Attributes included from Arachni::Element::Capabilities::WithAuditor
Attributes included from Arachni::Element::Capabilities::Mutable
#affected_input_name, #format, #seed
Attributes included from Arachni::Element::Capabilities::Inputtable
Attributes included from Arachni::Element::Capabilities::WithNode
Attributes inherited from Base
Class Method Summary collapse
Instance Method Summary collapse
- #decode(*args) ⇒ Object
- #encode(*args) ⇒ Object
- #initialization_options ⇒ Object
-
#initialize(options) ⇒ DOM
constructor
A new instance of DOM.
- #name ⇒ Object
- #to_set_cookie ⇒ Object
-
#trigger ⇒ Object
Submits the cookie using the configured Arachni::Element::Capabilities::Inputtable#inputs.
- #type ⇒ Object
- #value ⇒ Object
Methods included from Arachni::Element::Capabilities::Auditable::DOM
#dup, #element, #locate, #locator, #marshal_dump, #page, #prepare_for_report, #submit, #url=, #valid_input_data?, #with_browser, #with_browser_cluster
Methods included from Arachni::Element::Capabilities::Auditable
#audit, #audit_id, #audit_status_message, #audit_status_message_action, #audit_verbose_message, #coverage_hash, #coverage_id, #dup, #matches_skip_like_blocks?, #reset, reset, #skip?, skip_like
Methods included from Arachni::Element::Capabilities::WithAuditor
#dup, #marshal_dump, #orphan?, #prepare_for_report, #remove_auditor
Methods included from Arachni::Element::Capabilities::Mutable
#affected_input_value, #affected_input_value=, #dup, #each_mutation, #immutables, #mutation?, #mutations, #reset, #switch_method, #to_h
Methods included from Arachni::Element::Capabilities::Submittable
#action, #action=, #dup, #http, #http_request, #id, #method, #method=, #platforms, #submit, #to_h
Methods included from Arachni::Element::Capabilities::Inputtable
#[], #[]=, #changes, #dup, #has_inputs?, #inputtable_id, #reset, #to_h, #try_input, #update, #valid_input_data?, #valid_input_name?, #valid_input_name_data?, #valid_input_value?, #valid_input_value_data?
Methods included from Utilities
#available_port, #caller_name, #caller_path, #cookie_decode, #cookie_encode, #cookies_from_document, #cookies_from_file, #cookies_from_response, #exception_jail, #exclude_path?, #follow_protocol?, #form_decode, #form_encode, #forms_from_document, #forms_from_response, #generate_token, #get_path, #hms_to_seconds, #html_decode, #html_encode, #include_path?, #links_from_document, #links_from_response, #normalize_url, #page_from_response, #page_from_url, #parse_set_cookie, #path_in_domain?, #path_too_deep?, #port_available?, #rand_port, #random_seed, #redundant_path?, #remove_constants, #request_parse_body, #seconds_to_hms, #skip_page?, #skip_path?, #skip_resource?, #skip_response?, #to_absolute, #uri_decode, #uri_encode, #uri_parse, #uri_parse_query, #uri_parser, #uri_rewrite
Methods included from Arachni::Element::Capabilities::WithNode
Methods inherited from Base
#==, #action, #dup, from_rpc_data, #hash, #id, #marshal_dump, #marshal_load, #persistent_hash, #prepare_for_report, #reset, #to_h, #to_hash, #to_rpc_data, #url, #url=
Methods included from Arachni::Element::Capabilities::WithScope
Constructor Details
#initialize(options) ⇒ DOM
Returns a new instance of DOM.
18 19 20 21 22 23 |
# File 'lib/arachni/element/cookie/dom.rb', line 18 def initialize( ) super self.inputs = ([:inputs] || self.parent.inputs).dup @default_inputs = self.inputs.dup.freeze end |
Class Method Details
.type ⇒ Object
56 57 58 |
# File 'lib/arachni/element/cookie/dom.rb', line 56 def self.type :cookie_dom end |
Instance Method Details
#decode(*args) ⇒ Object
49 50 51 |
# File 'lib/arachni/element/cookie/dom.rb', line 49 def decode( *args ) Cookie.decode( *args ) end |
#encode(*args) ⇒ Object
45 46 47 |
# File 'lib/arachni/element/cookie/dom.rb', line 45 def encode( *args ) Cookie.encode( *args ) end |
#initialization_options ⇒ Object
60 61 62 |
# File 'lib/arachni/element/cookie/dom.rb', line 60 def super.merge( inputs: inputs.dup ) end |
#name ⇒ Object
31 32 33 |
# File 'lib/arachni/element/cookie/dom.rb', line 31 def name inputs.keys.first end |
#to_set_cookie ⇒ Object
39 40 41 42 43 |
# File 'lib/arachni/element/cookie/dom.rb', line 39 def p = parent.dup p.inputs = inputs p. end |
#trigger ⇒ Object
Submits the cookie using the configured Arachni::Element::Capabilities::Inputtable#inputs.
26 27 28 29 |
# File 'lib/arachni/element/cookie/dom.rb', line 26 def trigger browser.goto action, take_snapshot: false, cookies: self.inputs, update_transitions: false end |
#type ⇒ Object
53 54 55 |
# File 'lib/arachni/element/cookie/dom.rb', line 53 def type self.class.type end |
#value ⇒ Object
35 36 37 |
# File 'lib/arachni/element/cookie/dom.rb', line 35 def value inputs.values.first end |