Module: Arachni::Element::Cookie::Capabilities::Mutable
- Includes:
- Arachni::Element::Capabilities::Mutable
- Defined in:
- lib/arachni/element/cookie/capabilities/mutable.rb
Overview
Extends Arachni::Element::Capabilities::Mutable with Arachni::Element::Cookie-specific functionality.
Constant Summary
Constants included from Arachni::Element::Capabilities::Mutable
Arachni::Element::Capabilities::Mutable::EXTRA_NAME, Arachni::Element::Capabilities::Mutable::FUZZ_NAME, Arachni::Element::Capabilities::Mutable::FUZZ_NAME_VALUE, Arachni::Element::Capabilities::Mutable::MUTATION_OPTIONS
Instance Attribute Summary
Attributes included from Arachni::Element::Capabilities::Mutable
#affected_input_name, #format, #seed
Instance Method Summary collapse
- #each_extensive_mutation(mutation) ⇒ Object
-
#each_mutation(payload, options = {}) {|mutation| ... } ⇒ Object
Overrides Arachni::Element::Capabilities::Mutable#each_mutation to handle cookie-specific limitations and the OptionGroups::Audit#cookies_extensively option.
Methods included from Arachni::Element::Capabilities::Mutable
#affected_input_value, #affected_input_value=, #dup, #immutables, #inspect, #mutation?, #mutations, #reset, #switch_method, #to_h, #to_rpc_data
Instance Method Details
#each_extensive_mutation(mutation) ⇒ Object
74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 |
# File 'lib/arachni/element/cookie/capabilities/mutable.rb', line 74 def each_extensive_mutation( mutation ) return if orphan? (auditor.page.links | auditor.page.forms).each do |e| next if e.inputs.empty? c = e.dup c.affected_input_name = "Mutation for the '#{name}' cookie" c.auditor = auditor c.[:submit] ||= {} c.[:submit][:cookies] = mutation.inputs.dup c.inputs = Arachni::Options.input.fill( c.inputs.dup ) yield c end end |
#each_mutation(payload, options = {}) {|mutation| ... } ⇒ Object
Overrides Arachni::Element::Capabilities::Mutable#each_mutation to handle cookie-specific limitations and the OptionGroups::Audit#cookies_extensively option.
29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 |
# File 'lib/arachni/element/cookie/capabilities/mutable.rb', line 29 def each_mutation( payload, = {}, &block ) = ( ) parameter_names = .delete( :parameter_names ) with_extra_parameter = .delete( :with_extra_parameter ) extensively = [:extensively] extensively = Arachni::Options.audit. if extensively.nil? super( payload, ) do |element| yield element next if !extensively element.each_extensive_mutation( element, &block ) end if with_extra_parameter if valid_input_name?( EXTRA_NAME ) each_formatted_payload( payload, [:format] ) do |format, formatted_payload| element = self.dup element.affected_input_name = EXTRA_NAME element.inputs = { EXTRA_NAME => formatted_payload } element.format = format yield element if block_given? end else print_debug_level_2 'Extra name not supported as input name by' << " #{audit_id}: #{payload.inspect}" end end if parameter_names if valid_input_name_data?( payload ) element = self.dup element.affected_input_name = FUZZ_NAME element.inputs = { payload => FUZZ_NAME_VALUE } yield element if block_given? else print_debug_level_2 'Payload not supported as input name by' << " #{audit_id}: #{payload.inspect}" end end nil end |