Class: Arachni::Element::UIInput::DOM
- Includes:
- Capabilities::WithNode, DOM::Capabilities::Auditable, DOM::Capabilities::Inputtable, DOM::Capabilities::Locatable, DOM::Capabilities::Mutable, DOM::Capabilities::Submittable
- Defined in:
- lib/arachni/element/ui_input/dom.rb
Overview
Constant Summary
Constants included from Capabilities::Auditable
Capabilities::Auditable::OPTIONS
Constants included from DOM::Capabilities::Inputtable
DOM::Capabilities::Inputtable::INVALID_INPUT_DATA
Constants included from Capabilities::Inputtable
Capabilities::Inputtable::INPUTTABLE_CACHE
Constants included from Capabilities::Mutable
Capabilities::Mutable::EXTRA_NAME, Capabilities::Mutable::FUZZ_NAME, Capabilities::Mutable::FUZZ_NAME_VALUE, Capabilities::Mutable::MUTATION_OPTIONS
Constants inherited from Base
Instance Attribute Summary
Attributes included from Capabilities::Auditable
Attributes included from Capabilities::WithAuditor
Attributes included from Capabilities::Inputtable
#default_inputs, #inputs, #raw_inputs
Attributes included from Capabilities::Mutable
#affected_input_name, #format, #seed
Attributes included from Capabilities::WithSource
Attributes inherited from DOM
Attributes inherited from Base
Class Method Summary collapse
Instance Method Summary collapse
- #coverage_id ⇒ Object
- #id ⇒ Object
- #initialization_options ⇒ Object
-
#initialize(options) ⇒ DOM
constructor
A new instance of DOM.
- #name ⇒ Object
-
#trigger ⇒ Object
Submits the form using the configured Capabilities::Inputtable#inputs.
- #type ⇒ Object
- #valid_input_name?(name) ⇒ Boolean
- #value ⇒ Object
Methods included from DOM::Capabilities::Auditable
audit_handle_submit, audit_handle_submit_cb, handle_submission_result, #submit_and_process, #with_browser, #with_browser_cluster
Methods included from Capabilities::Auditable
#audit, #audit_id, #audit_status_message, #audit_status_message_action, #audit_verbose_message, #coverage_hash, #dup, #matches_skip_like_blocks?, #reset, reset, #skip?, skip_like
Methods included from Capabilities::WithAuditor
#dup, #marshal_dump, #orphan?, #prepare_for_report, #remove_auditor
Methods included from Utilities
#available_port, available_port_mutex, #bytes_to_kilobytes, #bytes_to_megabytes, #caller_name, #caller_path, #cookie_decode, #cookie_encode, #cookies_from_file, #cookies_from_parser, #cookies_from_response, #exception_jail, #exclude_path?, #follow_protocol?, #form_decode, #form_encode, #forms_from_parser, #forms_from_response, #full_and_absolute_url?, #generate_token, #get_path, #hms_to_seconds, #html_decode, #html_encode, #include_path?, #links_from_parser, #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?, #regexp_array_match, #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 DOM::Capabilities::Submittable
prepare_browser, prepare_callback, #submit, submit_with_browser
Methods included from Capabilities::Submittable
#action, #action=, #dup, #http, #http_request, #method, #method=, #platforms, #submit, #to_h
Methods included from DOM::Capabilities::Inputtable
Methods included from Capabilities::Inputtable
#[], #[]=, #changes, #dup, #has_inputs?, #inputtable_id, inputtable_id, #raw_input?, #reset, #to_h, #try_input, #update, #updated?, #valid_input_data?, #valid_input_name_data?, #valid_input_value?, #valid_input_value_data?
Methods included from Capabilities::Mutable
#affected_input_value, #affected_input_value=, #dup, #each_mutation, #immutables, #inspect, #mutation?, #mutations, #parameter_name_audit?, #reset, #switch_method, #to_h, #to_rpc_data, #with_raw_payload, #with_raw_payload?
Methods included from DOM::Capabilities::Locatable
Methods included from Capabilities::WithNode
Methods included from Capabilities::WithSource
Methods inherited from DOM
#decode, decode, #dup, encode, #encode, #marshal_dump, #page, #prepare_for_report, #url=
Methods inherited from Base
#==, #action, #dup, from_rpc_data, #hash, #marshal_dump, #marshal_load, #persistent_hash, #prepare_for_report, #reset, #to_h, #to_hash, #to_rpc_data, too_big?, #url, #url=
Methods included from Capabilities::WithScope
Constructor Details
#initialize(options) ⇒ DOM
Returns a new instance of DOM.
24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 |
# File 'lib/arachni/element/ui_input/dom.rb', line 24 def initialize( ) super self.method = [:method] || self.parent.method if [:inputs] @valid_input_name = [:inputs].keys.first.to_s self.inputs = [:inputs] else @valid_input_name = (locator.attributes['name'] || locator.attributes['id']).to_s self.inputs = { @valid_input_name => locator.attributes['value'] } end @default_inputs = self.inputs.dup.freeze end |
Class Method Details
.type ⇒ Object
70 71 72 |
# File 'lib/arachni/element/ui_input/dom.rb', line 70 def self.type :ui_input_dom end |
Instance Method Details
#coverage_id ⇒ Object
59 60 61 |
# File 'lib/arachni/element/ui_input/dom.rb', line 59 def coverage_id "#{super}:#{@method}:#{locator}" end |
#id ⇒ Object
63 64 65 |
# File 'lib/arachni/element/ui_input/dom.rb', line 63 def id "#{super}:#{@method}:#{locator}" end |
#initialization_options ⇒ Object
74 75 76 |
# File 'lib/arachni/element/ui_input/dom.rb', line 74 def super.merge( inputs: inputs.dup, method: @method ) end |
#name ⇒ Object
47 48 49 |
# File 'lib/arachni/element/ui_input/dom.rb', line 47 def name inputs.keys.first end |
#trigger ⇒ Object
Submits the form using the configured Capabilities::Inputtable#inputs.
43 44 45 |
# File 'lib/arachni/element/ui_input/dom.rb', line 43 def trigger [ browser.fire_event( locate, @method, value: value ) ] end |
#type ⇒ Object
67 68 69 |
# File 'lib/arachni/element/ui_input/dom.rb', line 67 def type self.class.type end |
#valid_input_name?(name) ⇒ Boolean
55 56 57 |
# File 'lib/arachni/element/ui_input/dom.rb', line 55 def valid_input_name?( name ) @valid_input_name == name.to_s end |
#value ⇒ Object
51 52 53 |
# File 'lib/arachni/element/ui_input/dom.rb', line 51 def value inputs.values.first end |