Class: Arachni::Element::Link::DOM

Inherits:
Base show all
Includes:
Capabilities::Auditable::DOM, Capabilities::WithNode
Defined in:
lib/arachni/element/link/dom.rb

Overview

Provides access to DOM operations for links.

Author:

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

Base::MAX_SIZE

Instance Attribute Summary collapse

Attributes included from Capabilities::Auditable::DOM

#action, #browser, #parent

Attributes included from Capabilities::Auditable

#audit_options

Attributes included from Capabilities::WithAuditor

#auditor

Attributes included from Capabilities::Mutable

#affected_input_name, #format, #seed

Attributes included from Capabilities::Inputtable

#default_inputs, #inputs

Attributes included from Capabilities::WithSource

#source

Attributes inherited from Base

#initialization_options, #page

Class Method Summary collapse

Instance Method Summary collapse

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, #to_rpc_data

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

#node

Methods included from Capabilities::WithSource

#dup, #to_h, #to_rpc_data

Methods inherited from Base

#==, #action, #dup, from_rpc_data, #id, #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

#scope

Constructor Details

#initializeDOM

Returns a new instance of DOM.



40
41
42
43
44
45
# File 'lib/arachni/element/link/dom.rb', line 40

def initialize(*)
    super

    prepare_data_from_node
    @method = :get
end

Instance Attribute Details

#fragmentString? (readonly)

Returns URL fragment.

test.com/stuff#/path/in/fragment?with-input=too` => `/path/in/fragment?with-input=too`.

Returns:



24
25
26
# File 'lib/arachni/element/link/dom.rb', line 24

def fragment
  @fragment
end

#fragment_pathString? (readonly)

Returns Path extracted from the #fragment.

test.com/stuff#/path/in/fragment?with-input=too` => `/path/in/fragment`.

Returns:



31
32
33
# File 'lib/arachni/element/link/dom.rb', line 31

def fragment_path
  @fragment_path
end

#fragment_queryString? (readonly)

Returns Query extracted from the #fragment.

test.com/stuff#/path/in/fragment?with-input=too` => `with-input=too`.

Returns:



38
39
40
# File 'lib/arachni/element/link/dom.rb', line 38

def fragment_query
  @fragment_query
end

Class Method Details

.data_from_node(node) ⇒ Object



75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
# File 'lib/arachni/element/link/dom.rb', line 75

def self.data_from_node( node )
    fragment_path = fragment = nil

    href = node.attributes['href'].to_s
    return if !href.include? '#'

    fragment = href.split( '#', 2 ).last
    fragment_path, fragment_query = fragment.split( '?', 2 )

    inputs = uri_parse_query( "?#{fragment_query}" )
    return if inputs.empty?

    {
        inputs:         inputs,
        fragment:       fragment.freeze,
        fragment_path:  fragment_path.freeze,
        fragment_query: fragment_query.freeze,
    }
end

.typeObject



71
72
73
# File 'lib/arachni/element/link/dom.rb', line 71

def self.type
    :link_dom
end

Instance Method Details

#hashObject



95
96
97
# File 'lib/arachni/element/link/dom.rb', line 95

def hash
    to_s.hash
end

#message_actionObject



64
65
66
# File 'lib/arachni/element/link/dom.rb', line 64

def message_action
    "#{@action}##{fragment}"
end

#to_sString

Returns URL including the DOM Capabilities::Inputtable#inputs.

Returns:



58
59
60
61
62
# File 'lib/arachni/element/link/dom.rb', line 58

def to_s
    "#{@action}##{fragment_path}?" << inputs.
        map { |k, v| "#{encode(k)}=#{encode(v)}" }.
        join( '&' )
end

#triggerObject

Loads the page with the Capabilities::Inputtable#inputs in the #fragment.



48
49
50
# File 'lib/arachni/element/link/dom.rb', line 48

def trigger
    browser.goto to_s, take_snapshot: false, update_transitions: false
end

#typeObject



68
69
70
# File 'lib/arachni/element/link/dom.rb', line 68

def type
    self.class.type
end

#valid_input_name?(name) ⇒ Boolean

Returns:

  • (Boolean)


52
53
54
# File 'lib/arachni/element/link/dom.rb', line 52

def valid_input_name?( name )
    @valid_input_names.include? name
end