contrast-agent 3.14.0 → 4.2.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (148) hide show
  1. checksums.yaml +4 -4
  2. data/ext/cs__assess_marshal_module/cs__assess_marshal_module.c +18 -15
  3. data/ext/cs__assess_marshal_module/cs__assess_marshal_module.h +1 -0
  4. data/ext/cs__assess_string/cs__assess_string.c +24 -25
  5. data/ext/cs__assess_string/cs__assess_string.h +3 -1
  6. data/ext/cs__common/cs__common.c +4 -2
  7. data/ext/cs__common/cs__common.h +1 -1
  8. data/lib/contrast.rb +1 -1
  9. data/lib/contrast/agent.rb +4 -12
  10. data/lib/contrast/agent/assess.rb +1 -0
  11. data/lib/contrast/agent/assess/contrast_event.rb +143 -79
  12. data/lib/contrast/agent/assess/events/source_event.rb +1 -1
  13. data/lib/contrast/agent/assess/finalizers/freeze.rb +3 -1
  14. data/lib/contrast/agent/assess/finalizers/hash.rb +45 -1
  15. data/lib/contrast/agent/assess/policy/dynamic_source_factory.rb +10 -3
  16. data/lib/contrast/agent/assess/policy/patcher.rb +1 -1
  17. data/lib/contrast/agent/assess/policy/policy.rb +0 -2
  18. data/lib/contrast/agent/assess/policy/policy_node.rb +15 -10
  19. data/lib/contrast/agent/assess/policy/policy_scanner.rb +19 -3
  20. data/lib/contrast/agent/assess/policy/preshift.rb +7 -11
  21. data/lib/contrast/agent/assess/policy/propagation_method.rb +50 -33
  22. data/lib/contrast/agent/assess/policy/propagator/append.rb +8 -5
  23. data/lib/contrast/agent/assess/policy/propagator/base.rb +1 -1
  24. data/lib/contrast/agent/assess/policy/propagator/center.rb +9 -5
  25. data/lib/contrast/agent/assess/policy/propagator/database_write.rb +5 -3
  26. data/lib/contrast/agent/assess/policy/propagator/insert.rb +7 -4
  27. data/lib/contrast/agent/assess/policy/propagator/keep.rb +4 -1
  28. data/lib/contrast/agent/assess/policy/propagator/match_data.rb +4 -7
  29. data/lib/contrast/agent/assess/policy/propagator/next.rb +7 -5
  30. data/lib/contrast/agent/assess/policy/propagator/prepend.rb +8 -5
  31. data/lib/contrast/agent/assess/policy/propagator/remove.rb +8 -4
  32. data/lib/contrast/agent/assess/policy/propagator/replace.rb +5 -2
  33. data/lib/contrast/agent/assess/policy/propagator/reverse.rb +7 -5
  34. data/lib/contrast/agent/assess/policy/propagator/select.rb +13 -7
  35. data/lib/contrast/agent/assess/policy/propagator/splat.rb +10 -9
  36. data/lib/contrast/agent/assess/policy/propagator/split.rb +24 -19
  37. data/lib/contrast/agent/assess/policy/propagator/substitution.rb +47 -31
  38. data/lib/contrast/agent/assess/policy/propagator/trim.rb +11 -5
  39. data/lib/contrast/agent/assess/policy/source_method.rb +85 -58
  40. data/lib/contrast/agent/assess/policy/trigger/reflected_xss.rb +16 -12
  41. data/lib/contrast/agent/assess/policy/trigger/xpath.rb +1 -1
  42. data/lib/contrast/agent/assess/policy/trigger_method.rb +76 -28
  43. data/lib/contrast/agent/assess/policy/trigger_node.rb +38 -43
  44. data/lib/contrast/agent/assess/policy/trigger_validation/ssrf_validator.rb +2 -1
  45. data/lib/contrast/agent/assess/properties.rb +2 -0
  46. data/lib/contrast/agent/assess/property/evented.rb +5 -18
  47. data/lib/contrast/agent/assess/property/tagged.rb +9 -3
  48. data/lib/contrast/agent/assess/property/updated.rb +131 -0
  49. data/lib/contrast/agent/assess/rule/provider/hardcoded_key.rb +58 -5
  50. data/lib/contrast/agent/assess/rule/provider/hardcoded_password.rb +23 -8
  51. data/lib/contrast/agent/assess/rule/provider/hardcoded_value_rule.rb +83 -14
  52. data/lib/contrast/agent/assess/tag.rb +1 -1
  53. data/lib/contrast/agent/assess/tracker.rb +66 -0
  54. data/lib/contrast/agent/at_exit_hook.rb +5 -5
  55. data/lib/contrast/agent/class_reopener.rb +7 -5
  56. data/lib/contrast/agent/inventory.rb +15 -0
  57. data/lib/contrast/agent/inventory/dependencies.rb +50 -0
  58. data/lib/contrast/agent/inventory/dependency_analysis.rb +37 -0
  59. data/lib/contrast/agent/inventory/dependency_usage_analysis.rb +104 -0
  60. data/lib/contrast/agent/inventory/gemfile_digest_cache.rb +38 -0
  61. data/lib/contrast/agent/middleware.rb +1 -3
  62. data/lib/contrast/agent/patching/policy/after_load_patch.rb +5 -5
  63. data/lib/contrast/agent/patching/policy/after_load_patcher.rb +20 -20
  64. data/lib/contrast/agent/patching/policy/module_policy.rb +10 -10
  65. data/lib/contrast/agent/patching/policy/patch.rb +6 -0
  66. data/lib/contrast/agent/patching/policy/patcher.rb +13 -22
  67. data/lib/contrast/agent/patching/policy/policy.rb +17 -6
  68. data/lib/contrast/agent/protect/policy/applies_command_injection_rule.rb +3 -5
  69. data/lib/contrast/agent/protect/policy/applies_path_traversal_rule.rb +4 -3
  70. data/lib/contrast/agent/protect/policy/applies_xxe_rule.rb +1 -1
  71. data/lib/contrast/agent/protect/rule/cmd_injection.rb +9 -25
  72. data/lib/contrast/agent/protect/rule/no_sqli/mongo_no_sql_scanner.rb +1 -0
  73. data/lib/contrast/agent/request.rb +34 -34
  74. data/lib/contrast/agent/request_handler.rb +1 -1
  75. data/lib/contrast/agent/response.rb +17 -6
  76. data/lib/contrast/agent/rewriter.rb +1 -3
  77. data/lib/contrast/agent/scope.rb +59 -53
  78. data/lib/contrast/agent/static_analysis.rb +7 -7
  79. data/lib/contrast/agent/tracepoint_hook.rb +1 -1
  80. data/lib/contrast/agent/version.rb +1 -1
  81. data/lib/contrast/api/communication/messaging_queue.rb +1 -4
  82. data/lib/contrast/api/communication/socket_client.rb +36 -1
  83. data/lib/contrast/api/decorators.rb +3 -0
  84. data/lib/contrast/api/decorators/address.rb +13 -14
  85. data/lib/contrast/api/decorators/application_update.rb +2 -4
  86. data/lib/contrast/api/decorators/library.rb +53 -0
  87. data/lib/contrast/api/decorators/library_usage_update.rb +30 -0
  88. data/lib/contrast/api/decorators/message.rb +1 -0
  89. data/lib/contrast/api/decorators/trace_event.rb +25 -23
  90. data/lib/contrast/common_agent_configuration.rb +2 -1
  91. data/lib/contrast/components/agent.rb +6 -5
  92. data/lib/contrast/components/app_context.rb +49 -38
  93. data/lib/contrast/components/config.rb +30 -48
  94. data/lib/contrast/components/contrast_service.rb +9 -9
  95. data/lib/contrast/components/interface.rb +25 -3
  96. data/lib/contrast/components/inventory.rb +6 -1
  97. data/lib/contrast/components/scope.rb +49 -6
  98. data/lib/contrast/components/settings.rb +23 -23
  99. data/lib/contrast/config/application_configuration.rb +5 -2
  100. data/lib/contrast/config/inventory_configuration.rb +2 -2
  101. data/lib/contrast/config/service_configuration.rb +8 -0
  102. data/lib/contrast/configuration.rb +88 -47
  103. data/lib/contrast/extension/assess.rb +0 -2
  104. data/lib/contrast/extension/assess/array.rb +15 -8
  105. data/lib/contrast/extension/assess/erb.rb +11 -3
  106. data/lib/contrast/extension/assess/eval_trigger.rb +6 -6
  107. data/lib/contrast/extension/assess/exec_trigger.rb +1 -4
  108. data/lib/contrast/extension/assess/fiber.rb +12 -12
  109. data/lib/contrast/extension/assess/hash.rb +5 -6
  110. data/lib/contrast/extension/assess/kernel.rb +28 -23
  111. data/lib/contrast/extension/assess/marshal.rb +11 -6
  112. data/lib/contrast/extension/assess/regexp.rb +8 -7
  113. data/lib/contrast/extension/assess/string.rb +21 -21
  114. data/lib/contrast/extension/protect/kernel.rb +3 -3
  115. data/lib/contrast/framework/base_support.rb +1 -1
  116. data/lib/contrast/framework/manager.rb +3 -3
  117. data/lib/contrast/framework/rack/patch/session_cookie.rb +22 -28
  118. data/lib/contrast/framework/rails/patch/action_controller_live_buffer.rb +13 -13
  119. data/lib/contrast/framework/rails/patch/assess_configuration.rb +5 -11
  120. data/lib/contrast/framework/rails/patch/rails_application_configuration.rb +10 -10
  121. data/lib/contrast/framework/rails/patch/support.rb +1 -1
  122. data/lib/contrast/framework/rails/rewrite/action_controller_railties_helper_inherited.rb +11 -11
  123. data/lib/contrast/framework/rails/rewrite/active_record_attribute_methods_read.rb +12 -12
  124. data/lib/contrast/framework/rails/rewrite/active_record_named.rb +3 -3
  125. data/lib/contrast/framework/rails/rewrite/active_record_time_zone_inherited.rb +12 -12
  126. data/lib/contrast/framework/rails/support.rb +5 -0
  127. data/lib/contrast/framework/sinatra/patch/base.rb +11 -11
  128. data/lib/contrast/framework/sinatra/support.rb +4 -4
  129. data/lib/contrast/logger/application.rb +11 -3
  130. data/lib/contrast/logger/log.rb +7 -2
  131. data/lib/contrast/utils/assess/tracking_util.rb +48 -3
  132. data/lib/contrast/utils/duck_utils.rb +0 -10
  133. data/lib/contrast/utils/env_configuration_item.rb +2 -1
  134. data/lib/contrast/utils/invalid_configuration_util.rb +20 -21
  135. data/lib/contrast/utils/inventory_util.rb +0 -7
  136. data/lib/contrast/utils/sha256_builder.rb +0 -12
  137. data/lib/contrast/utils/string_utils.rb +10 -5
  138. data/resources/assess/policy.json +31 -22
  139. data/ruby-agent.gemspec +21 -18
  140. data/service_executables/VERSION +1 -1
  141. data/service_executables/linux/contrast-service +0 -0
  142. data/service_executables/mac/contrast-service +0 -0
  143. metadata +71 -30
  144. data/lib/contrast/agent/assess/finalizers/finalize.rb +0 -21
  145. data/lib/contrast/extension/assess/assess_extension.rb +0 -145
  146. data/lib/contrast/utils/boolean_util.rb +0 -30
  147. data/lib/contrast/utils/freeze_util.rb +0 -32
  148. data/lib/contrast/utils/gemfile_reader.rb +0 -193
@@ -22,7 +22,7 @@ module Contrast
22
22
  end
23
23
 
24
24
  def tracked_value? value
25
- Contrast::Utils::DuckUtils.quacks_to?(value, :cs__tracked?) && value.cs__tracked?
25
+ Contrast::Agent::Assess::Tracker.tracked?(value)
26
26
  end
27
27
 
28
28
  def propagate _propagation_node, _preshift, _target
@@ -12,19 +12,22 @@ module Contrast
12
12
  class Center < Contrast::Agent::Assess::Policy::Propagator::Base
13
13
  class << self
14
14
  def propagate propagation_node, preshift, target
15
+ properties = Contrast::Agent::Assess::Tracker.properties(target)
16
+ return unless properties
17
+
15
18
  sources = propagation_node.sources
16
19
  source1 = find_source(sources[0], preshift)
17
20
 
18
21
  if source1.length == target.length
19
- target.cs__copy_from(source1, 0, propagation_node.untags)
20
- target.cs__properties.cleanup_tags
22
+ properties.copy_from(source1, target, 0, propagation_node.untags)
23
+ properties.cleanup_tags
21
24
  return
22
25
  end
23
26
 
24
27
  # find original in the target, copy tags to the new position in target
25
28
  original_start_index = target[0..target.length / 2 + 1].rindex(source1)
26
29
  original_start_index ||= 1
27
- target.cs__copy_from(source1, original_start_index, propagation_node.untags)
30
+ properties.copy_from(source1, target, original_start_index, propagation_node.untags)
28
31
 
29
32
  return unless sources[1]
30
33
 
@@ -54,12 +57,13 @@ module Contrast
54
57
  end
55
58
 
56
59
  def iterate_tags target, propagation_node, source, start, stop
60
+ properties = Contrast::Agent::Assess::Tracker.properties(target)
57
61
  while start < stop
58
- target.cs__copy_from(source, start, propagation_node.untags)
62
+ properties.copy_from(source, target, start, propagation_node.untags)
59
63
  start += source.length
60
64
  next unless start > stop
61
65
 
62
- target.cs__properties.tags_at(start - source.length).each do |tag|
66
+ properties.tags_at(start - source.length).each do |tag|
63
67
  tag.update_end(stop)
64
68
  end
65
69
  end
@@ -31,12 +31,15 @@ module Contrast
31
31
  next unless value
32
32
  next if known_tainted&.include?(key)
33
33
 
34
+ properties = Contrast::Agent::Assess::Tracker.properties(value)
35
+ next unless properties
36
+
34
37
  # TODO: RUBY-540 handle sanitization, handle nested objects
35
38
  Contrast::Agent::Assess::Policy::PropagationMethod.apply_tags(propagation_node, value)
36
- value.cs__properties.build_event(propagation_node, value, preshift.object, target, preshift.args)
39
+ properties.build_event(propagation_node, value, preshift.object, target, preshift.args)
37
40
  next unless tracked_value?(value)
38
41
 
39
- tainted_columns[key] = value.cs__properties
42
+ tainted_columns[key] = properties
40
43
  end
41
44
  end
42
45
 
@@ -45,7 +48,6 @@ module Contrast
45
48
  if known_tainted
46
49
  known_tainted.concat(tainted_columns.keys)
47
50
  else
48
- class_type.send(:include, Contrast::Extension::Assess::AssessExtension) unless class_type < Contrast::Extension::Assess::AssessExtension
49
51
  ASSESS.tainted_columns[class_name] = tainted_columns.keys
50
52
  end
51
53
 
@@ -16,7 +16,10 @@ module Contrast
16
16
  # Unlike additive propagation, this currently only supports one source
17
17
  # We assume that insert changes the preshift target
18
18
  def propagate propagation_node, preshift, target
19
- source = find_source(propagation_node.sources[0], preshift)
19
+ properties = Contrast::Agent::Assess::Tracker.properties(target)
20
+ return unless properties
21
+
22
+ source = find_source(propagation_node.sources[1], preshift)
20
23
 
21
24
  patcher_target = propagation_node.targets[0]
22
25
  preshift_target = case patcher_target
@@ -38,10 +41,10 @@ module Contrast
38
41
  overflow = insert_point...(insert_point + source.length)
39
42
 
40
43
  # handle shifting the inserted range
41
- target.cs__properties.shift_tags([overflow])
44
+ properties.shift_tags([overflow])
42
45
 
43
- target.cs__copy_from(source, insert_point, propagation_node.untags)
44
- target.cs__properties.cleanup_tags
46
+ properties.copy_from(source, target, insert_point, propagation_node.untags)
47
+ properties.cleanup_tags
45
48
  end
46
49
  end
47
50
  end
@@ -14,8 +14,11 @@ module Contrast
14
14
  # Keep means the tags just pass from the source to the target
15
15
  # as is.
16
16
  def propagate propagation_node, preshift, target
17
+ properties = Contrast::Agent::Assess::Tracker.properties(target)
18
+ return unless properties
19
+
17
20
  source = find_source(propagation_node.sources[0], preshift)
18
- target.cs__copy_from(source, 0, propagation_node.untags)
21
+ properties.copy_from(source, target, 0, propagation_node.untags)
19
22
  end
20
23
  end
21
24
  end
@@ -67,18 +67,15 @@ module Contrast
67
67
  def square_bracket_single argument_index, preshift, return_value, propagation_node
68
68
  original_start_index = preshift.object.begin(argument_index)
69
69
  original_end_index = preshift.object.end(argument_index)
70
- original_properties = preshift.object.cs__properties
70
+ original_properties = Contrast::Agent::Assess::Tracker.properties(preshift.object)
71
71
  applicable_tags = original_properties.tags_at_range(original_start_index...original_end_index)
72
72
  return if applicable_tags.empty?
73
73
 
74
+ return_properties = Contrast::Agent::Assess::Tracker.properties(return_value)
74
75
  applicable_tags.each do |tag_name, tag_ranges|
75
- return_value.cs__properties.set_tags(tag_name, tag_ranges)
76
+ return_properties.set_tags(tag_name, tag_ranges)
76
77
  end
77
- preshift.object.cs__properties.events.each do |event|
78
- return_value.cs__properties.add_event(event)
79
- end
80
- return_value.cs__properties.build_event(
81
- propagation_node, return_value, preshift.object, return_value, preshift.args)
78
+ return_properties.build_event(propagation_node, return_value, preshift.object, return_value, preshift.args)
82
79
  end
83
80
  end
84
81
  end
@@ -15,23 +15,25 @@ module Contrast
15
15
  # String has some silly methods like next. Basically, this flips a
16
16
  # character in a predictable manner
17
17
  def propagate propagation_node, preshift, target
18
- source = find_source(propagation_node.sources[0], preshift)
18
+ properties = Contrast::Agent::Assess::Tracker.properties(target)
19
+ return unless properties
19
20
 
20
- target.cs__copy_from(source, 0, propagation_node.untags)
21
+ source = find_source(propagation_node.sources[0], preshift)
22
+ properties.copy_from(source, target, 0, propagation_node.untags)
21
23
 
22
24
  # this means the char that was shifted overflowed and created new
23
25
  # chars (i.e 'z' "wraps" to create 'aa' )
24
26
  unless target.length == source.length
25
- target.cs__copy_from(source, 0, propagation_node.untags)
27
+ properties.copy_from(source, target, 0, propagation_node.untags)
26
28
 
27
29
  first_difference = (0...source.length).find { |i| source[i] != target[i] } || source.length
28
30
 
29
- target.cs__properties.tags_at(first_difference).each do |tag|
31
+ properties.tags_at(first_difference).each do |tag|
30
32
  tag.shift_end(target.length - source.length)
31
33
  end
32
34
  end
33
35
 
34
- target.cs__properties.cleanup_tags
36
+ properties.cleanup_tags
35
37
  end
36
38
  end
37
39
  end
@@ -14,6 +14,9 @@ module Contrast
14
14
  # For the source, prepend its tags to the target. It's basically the
15
15
  # opposite of append. :-P
16
16
  def propagate propagation_node, preshift, target
17
+ properties = Contrast::Agent::Assess::Tracker.properties(target)
18
+ return unless properties
19
+
17
20
  sources = propagation_node.sources
18
21
  # source1 is the copy of the thing being prepended to
19
22
  source1 = find_source(sources[0], preshift)
@@ -26,25 +29,25 @@ module Contrast
26
29
  # tags from the object(since nothing from args was added to
27
30
  # return)
28
31
  if source1.length == target.length
29
- target.cs__copy_from(source1, 0, propagation_node.untags)
32
+ properties.copy_from(source1, target, 0, propagation_node.untags)
30
33
  else
31
34
  # find original in the target, copy tags to the new position in target
32
- target.cs__copy_from(source1, original_start_index, propagation_node.untags)
35
+ properties.copy_from(source1, target, original_start_index, propagation_node.untags)
33
36
  # then we add the tags from the thing prepended to the start
34
37
  # of the target
35
38
  start = 0
36
39
  while start < original_start_index
37
- target.cs__copy_from(source2, start, propagation_node.untags)
40
+ properties.copy_from(source2, target, start, propagation_node.untags)
38
41
  start += source2.length
39
42
  next unless start > original_start_index
40
43
 
41
- target.cs__properties.tags_at(start - source2.length).each do |tag|
44
+ properties.tags_at(start - source2.length).each do |tag|
42
45
  tag.update_end(original_start_index)
43
46
  end
44
47
  end
45
48
  end
46
49
  # and finally merge the tags if any overlap.
47
- target.cs__properties.cleanup_tags
50
+ properties.cleanup_tags
48
51
  end
49
52
  end
50
53
  end
@@ -17,15 +17,19 @@ module Contrast
17
17
  # Once the tag is applied, remove the section that was removed by the delete.
18
18
  # Unlike additive propagation, this currently only supports one source
19
19
  def propagate propagation_node, preshift, target
20
- source = find_source(propagation_node.sources[0], preshift)
21
-
22
- target.cs__copy_from(source, 0, propagation_node.untags)
20
+ properties = Contrast::Agent::Assess::Tracker.properties(target)
21
+ return unless properties
23
22
 
23
+ source = find_source(propagation_node.sources[0], preshift)
24
+ properties.copy_from(source, target, 0, propagation_node.untags)
24
25
  source_chars = source.is_a?(String) ? source.chars : source.string.chars
25
26
  handle_removal(source_chars, target)
26
27
  end
27
28
 
28
29
  def handle_removal source_chars, target
30
+ properties = Contrast::Agent::Assess::Tracker.properties(target)
31
+ return unless properties
32
+
29
33
  source_idx = 0
30
34
 
31
35
  target_chars = target.chars
@@ -60,7 +64,7 @@ module Contrast
60
64
  remove_ranges << (source_idx...source_chars.length) if source_idx != source_chars.length
61
65
 
62
66
  # handle deleting the removed ranges
63
- target.cs__properties.delete_tags_at_ranges(remove_ranges)
67
+ properties.delete_tags_at_ranges(remove_ranges)
64
68
  end
65
69
  end
66
70
  end
@@ -14,9 +14,12 @@ module Contrast
14
14
  # Replace means we're replacing the target w/ the source. Anything
15
15
  # on the source should be passed to the target.
16
16
  def propagate propagation_node, preshift, target
17
+ properties = Contrast::Agent::Assess::Tracker.properties(target)
18
+ return unless properties
19
+
17
20
  source = find_source(propagation_node.sources[0], preshift)
18
- target.cs__properties.clear_tags
19
- target.cs__copy_from(source, 0, propagation_node.untags)
21
+ properties.clear_tags
22
+ properties.copy_from(source, target, 0, propagation_node.untags)
20
23
  end
21
24
  end
22
25
  end
@@ -13,13 +13,15 @@ module Contrast
13
13
  class Reverse < Contrast::Agent::Assess::Policy::Propagator::Base
14
14
  class << self
15
15
  def propagate propagation_node, preshift, target
16
- source = find_source(propagation_node.sources[0], preshift)
16
+ properties = Contrast::Agent::Assess::Tracker.properties(target)
17
+ return unless properties
17
18
 
18
- target.cs__copy_from(source, 0, propagation_node.untags)
19
+ source = find_source(propagation_node.sources[0], preshift)
20
+ properties.copy_from(source, target, 0, propagation_node.untags)
19
21
 
20
22
  length = target.length
21
- target.cs__properties.tag_keys.each do |key|
22
- tags = target.cs__properties.fetch_tag(key)
23
+ properties.tag_keys.each do |key|
24
+ tags = properties.fetch_tag(key)
23
25
  tags.each do |tag|
24
26
  new_end = length - tag.start_idx
25
27
  new_start = new_end - tag.length
@@ -27,7 +29,7 @@ module Contrast
27
29
  end
28
30
  end
29
31
 
30
- target.cs__properties.cleanup_tags
32
+ properties.cleanup_tags
31
33
  end
32
34
  end
33
35
  end
@@ -14,6 +14,9 @@ module Contrast
14
14
  class Select
15
15
  class << self
16
16
  def select_tagger patcher, preshift, ret, _block
17
+ properties = Contrast::Agent::Assess::Tracker.properties(ret)
18
+ return unless properties
19
+
17
20
  source = preshift.object
18
21
  args = preshift.args
19
22
 
@@ -21,12 +24,15 @@ module Contrast
21
24
  # Additionally, an empty string is returned when the starting index for
22
25
  # a character range is at the end of the string. Let's just skip that
23
26
  # and only track a string that has length
24
- return unless source.cs__tracked? && ret && !ret.empty?
27
+ unless ret &&
28
+ !ret.empty? &&
29
+ Contrast::Agent::Assess::Tracker.tracked?(source)
25
30
 
26
- source.cs__properties.events.each do |event|
27
- ret.cs__properties.events << event
31
+ return
28
32
  end
29
- ret.cs__properties.build_event(
33
+
34
+ source_properties = Contrast::Agent::Assess::Tracker.properties(source)
35
+ properties.build_event(
30
36
  patcher,
31
37
  ret,
32
38
  source,
@@ -36,10 +42,10 @@ module Contrast
36
42
  range = determine_select_range(source, args)
37
43
  return unless range
38
44
 
39
- tags = source.cs__properties.tags_at_range(range)
40
- ret.cs__properties.clear_tags
45
+ tags = source_properties.tags_at_range(range)
46
+ properties.clear_tags
41
47
  tags.each_pair do |key, value|
42
- ret.cs__properties.set_tags(key, value)
48
+ properties.set_tags(key, value)
43
49
  end
44
50
  ret
45
51
  end
@@ -17,11 +17,11 @@ module Contrast
17
17
  propagation_node.sources.each do |source|
18
18
  case source
19
19
  when Contrast::Utils::ObjectShare::OBJECT_KEY
20
- tracked_inputs << preshift.object if preshift.object.cs__tracked?
20
+ tracked_inputs << preshift.object if Contrast::Agent::Assess::Tracker.tracked?(preshift.object)
21
21
  else
22
22
  arg = preshift.args[source]
23
23
  if arg.is_a?(String)
24
- tracked_inputs << arg if arg.cs__tracked?
24
+ tracked_inputs << arg if Contrast::Agent::Assess::Tracker.tracked?(arg)
25
25
  elsif Contrast::Utils::DuckUtils.iterable_hash?(arg)
26
26
  arg.each_pair do |key, value|
27
27
  tracked_inputs << key if tracked_value?(key)
@@ -36,19 +36,20 @@ module Contrast
36
36
  end
37
37
 
38
38
  splat_tags(tracked_inputs, target)
39
- target.cs__properties.cleanup_tags
39
+ Contrast::Agent::Assess::Tracker.properties(target).cleanup_tags
40
40
  end
41
41
 
42
42
  def splat_tags tracked_inputs, target
43
43
  return if tracked_inputs.empty?
44
44
 
45
+ properties = Contrast::Agent::Assess::Tracker.properties(target)
46
+ return unless properties
47
+
45
48
  tracked_inputs.each do |input|
46
- unless input == target
47
- input.cs__properties.events.each do |event|
48
- target.cs__properties.events << event
49
- end
50
- end
51
- input.cs__splat_tags(target)
49
+ input_properties = Contrast::Agent::Assess::Tracker.properties(input)
50
+ next unless input_properties
51
+
52
+ properties.splat_from(input, target)
52
53
  end
53
54
  end
54
55
  end
@@ -36,6 +36,8 @@ module Contrast
36
36
  target_id: target.__id__)
37
37
  unless target.is_a?(Array)
38
38
  Contrast::Agent::Assess::Policy::Propagator::Keep.propagate(propagation_node, preshift, target)
39
+ properties = Contrast::Agent::Assess::Tracker.properties(target)
40
+ properties.build_event(propagation_node, target, object, ret, args)
39
41
  return
40
42
  end
41
43
 
@@ -53,17 +55,17 @@ module Contrast
53
55
  target.each do |elem|
54
56
  elem_length = elem.length
55
57
  range = current_index...(current_index + elem_length)
56
- tags = source.cs__properties.tags_at_range(range)
58
+ elem_properties = Contrast::Agent::Assess::Tracker.properties(elem)
59
+ next unless elem_properties
57
60
 
58
- elem.cs__properties.clear_tags
61
+ source_properties = Contrast::Agent::Assess::Tracker.properties(source)
62
+ tags = source_properties.tags_at_range(range)
63
+ elem_properties.clear_tags
59
64
  tags.each_pair do |key, value|
60
- elem.cs__properties.set_tags(key, value)
65
+ elem_properties.set_tags(key, value)
61
66
  end
62
- source.cs__properties.events.each do |event|
63
- elem.cs__properties.add_event(event)
64
- end
65
- elem.cs__properties.build_event(propagation_node, elem, preshift.object, target, preshift.args, 0)
66
- elem.cs__properties.add_properties(propagation_node.properties)
67
+ elem_properties.build_event(propagation_node, elem, preshift.object, target, preshift.args, 0)
68
+ elem_properties.add_properties(propagation_node.properties)
67
69
  current_index = current_index + elem_length + separator_length
68
70
  end
69
71
  nil
@@ -125,8 +127,11 @@ module Contrast
125
127
  index = SPLIT_TRACKER.get(:split_index)&.fetch(depth)
126
128
  return unless index
127
129
 
130
+ properties = Contrast::Agent::Assess::Tracker.properties(target)
131
+ return unless properties
132
+
128
133
  true_source = source[index]
129
- target.cs__copy_from(true_source)
134
+ properties.copy_from(true_source, target)
130
135
  rescue StandardError => e
131
136
  logger.warn('Unable to track within split context', e)
132
137
  ensure
@@ -139,12 +144,12 @@ module Contrast
139
144
  def instrument_string_split
140
145
  if @_instrument_string_split.nil?
141
146
  @_instrument_string_split = begin
142
- require 'cs__assess_yield_track/cs__assess_yield_track' if AGENT.patch_yield? && Funchook.available?
143
- true
144
- rescue StandardError => e
145
- logger.error('Error loading split rb_yield patch', e)
146
- false
147
- end
147
+ require 'cs__assess_yield_track/cs__assess_yield_track' if AGENT.patch_yield? && Funchook.available?
148
+ true
149
+ rescue StandardError => e
150
+ logger.error('Error loading split rb_yield patch', e)
151
+ false
152
+ end
148
153
  end
149
154
  @_instrument_string_split
150
155
  end
@@ -191,10 +196,10 @@ module Contrast
191
196
  # String#split node
192
197
  def split_node
193
198
  @_split_node ||= begin
194
- Contrast::Agent::Assess::Policy::Policy.instance.propagators.find do |node|
195
- node.class_name == 'String' && node.method_name == :split && node.instance_method?
196
- end
197
- end
199
+ Contrast::Agent::Assess::Policy::Policy.instance.propagators.find do |node|
200
+ node.class_name == 'String' && node.method_name == :split && node.instance_method?
201
+ end
202
+ end
198
203
  end
199
204
  end
200
205
  end