Class: Arachni::Element::LinkTemplate::DOM
- Defined in:
- lib/arachni/element/link_template/dom.rb
Overview
Provides access to DOM operations for link templates.
Constant Summary
Constants included from Capabilities::Auditable::DOM
Capabilities::Auditable::DOM::INVALID_INPUT_DATA
Constants included from Capabilities::Auditable
Capabilities::Auditable::OPTIONS
Constants included from Capabilities::Mutable
Capabilities::Mutable::EXTRA_NAME, Capabilities::Mutable::FUZZ_NAME, Capabilities::Mutable::FUZZ_NAME_VALUE, Capabilities::Mutable::MUTATION_OPTIONS
Constants included from Capabilities::Inputtable
Capabilities::Inputtable::INPUTTABLE_CACHE
Constants inherited from Base
Instance Attribute Summary collapse
-
#fragment ⇒ String?
readonly
URL fragment.
-
#template ⇒ Regexp
readonly
Regular expressions with named captures, serving as templates used to identify and manipulate inputs in Capabilities::Auditable::DOM#action.
Attributes included from Capabilities::Auditable::DOM
Attributes included from Capabilities::Auditable
Attributes included from Capabilities::WithAuditor
Attributes included from Capabilities::Mutable
#affected_input_name, #format, #seed
Attributes included from Capabilities::Inputtable
Attributes included from Capabilities::WithSource
Attributes inherited from Base
#initialization_options, #page
Class Method Summary collapse
- .data_from_node(node) ⇒ Object
- .extract_inputs(url, templates = Arachni::Options.audit.link_template_doms) ⇒ Object
- .from_rpc_data(data) ⇒ Object
- .type ⇒ Object
Instance Method Summary collapse
- #extract_inputs(*args) ⇒ Object
- #hash ⇒ Object
-
#initialize ⇒ DOM
constructor
A new instance of DOM.
- #message_action ⇒ Object
- #to_rpc_data ⇒ Object
-
#to_s ⇒ String
Capabilities::Auditable::DOM#action updated with the the DOM Capabilities::Inputtable#inputs.
-
#trigger ⇒ Object
Loads #to_s.
- #type ⇒ Object
-
#valid_input_name?(name) ⇒ Bool
‘true` if the `name` can be found as a named capture in #template, `false` otherwise.
Methods included from Capabilities::Auditable::DOM
#decode, #dup, #element, #encode, included, #initialization_options, #locate, #locator, #marshal_dump, #page, #prepare_for_report, #submit, #url=, #valid_input_data?, #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, #coverage_id, #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 Capabilities::Mutable
#affected_input_value, #affected_input_value=, #dup, #each_mutation, #immutables, #inspect, #mutation?, #mutations, #reset, #switch_method, #to_h
Methods included from Capabilities::Submittable
#action, #action=, #dup, #http, #http_request, #id, #method, #method=, #platforms, #submit, #to_h
Methods included from Capabilities::Inputtable
#[], #[]=, #changes, #dup, #has_inputs?, #inputtable_id, #reset, #to_h, #try_input, #update, #valid_input_data?, #valid_input_name_data?, #valid_input_value?, #valid_input_value_data?
Methods included from Utilities
#available_port, #bytes_to_kilobytes, #bytes_to_megabytes, #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, #full_and_absolute_url?, #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?, #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 Capabilities::WithNode
Methods included from Capabilities::WithSource
Methods inherited from Base
#==, #action, #dup, #id, #marshal_dump, #marshal_load, #persistent_hash, #prepare_for_report, #reset, #to_h, #to_hash, too_big?, #url, #url=
Methods included from Capabilities::WithScope
Constructor Details
#initialize ⇒ DOM
Returns a new instance of DOM.
31 32 33 34 35 36 |
# File 'lib/arachni/element/link_template/dom.rb', line 31 def initialize(*) super prepare_data_from_node @method = :get end |
Instance Attribute Details
#fragment ⇒ String? (readonly)
Returns URL fragment.
‘test.com/stuff#/path/in/fragment?with-input=too` => `/path/in/fragment?with-input=too`.
24 25 26 |
# File 'lib/arachni/element/link_template/dom.rb', line 24 def fragment @fragment end |
#template ⇒ Regexp (readonly)
Returns Regular expressions with named captures, serving as templates used to identify and manipulate inputs in Capabilities::Auditable::DOM#action.
29 30 31 |
# File 'lib/arachni/element/link_template/dom.rb', line 29 def template @template end |
Class Method Details
.data_from_node(node) ⇒ Object
79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 |
# File 'lib/arachni/element/link_template/dom.rb', line 79 def self.data_from_node( node ) href = node.attributes['href'].to_s return if !href.include? '#' fragment = Link.decode( href.split( '#', 2 ).last.to_s ) template, inputs = extract_inputs( fragment ) return if !template || inputs.empty? { inputs: inputs, template: template, fragment: fragment } end |
.extract_inputs(url, templates = Arachni::Options.audit.link_template_doms) ⇒ Object
67 68 69 |
# File 'lib/arachni/element/link_template/dom.rb', line 67 def self.extract_inputs( url, templates = Arachni::Options.audit.link_template_doms ) LinkTemplate.extract_inputs( url, templates ) end |
.from_rpc_data(data) ⇒ Object
103 104 105 |
# File 'lib/arachni/element/link_template/dom.rb', line 103 def self.from_rpc_data( data ) super data.merge( 'template' => Regexp.new( data['template'] ) ) end |
.type ⇒ Object
75 76 77 |
# File 'lib/arachni/element/link_template/dom.rb', line 75 def self.type :link_template_dom end |
Instance Method Details
#extract_inputs(*args) ⇒ Object
64 65 66 |
# File 'lib/arachni/element/link_template/dom.rb', line 64 def extract_inputs( *args ) self.class.extract_inputs( *args ) end |
#hash ⇒ Object
95 96 97 |
# File 'lib/arachni/element/link_template/dom.rb', line 95 def hash to_s.hash end |
#message_action ⇒ Object
60 61 62 |
# File 'lib/arachni/element/link_template/dom.rb', line 60 def "#{@action}##{fragment}" end |
#to_rpc_data ⇒ Object
99 100 101 |
# File 'lib/arachni/element/link_template/dom.rb', line 99 def to_rpc_data super.merge( 'template' => @template.source ) end |
#to_s ⇒ String
Returns Capabilities::Auditable::DOM#action updated with the the DOM Capabilities::Inputtable#inputs.
56 57 58 |
# File 'lib/arachni/element/link_template/dom.rb', line 56 def to_s "#{@action}#" + fragment.sub_in_groups( @template, inputs ) end |
#trigger ⇒ Object
Loads #to_s.
39 40 41 |
# File 'lib/arachni/element/link_template/dom.rb', line 39 def trigger browser.goto to_s, take_snapshot: false, update_transitions: false end |
#type ⇒ Object
71 72 73 |
# File 'lib/arachni/element/link_template/dom.rb', line 71 def type self.class.type end |
#valid_input_name?(name) ⇒ Bool
Returns ‘true` if the `name` can be found as a named capture in #template, `false` otherwise.
49 50 51 52 |
# File 'lib/arachni/element/link_template/dom.rb', line 49 def valid_input_name?( name ) return if !@template @template.names.include? name end |