contrast-agent 3.9.0 → 3.11.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (271) hide show
  1. checksums.yaml +4 -4
  2. data/.simplecov +5 -2
  3. data/ext/build_funchook.rb +14 -9
  4. data/ext/cs__assess_active_record_named/cs__active_record_named.c +5 -12
  5. data/ext/cs__assess_active_record_named/extconf.rb +3 -0
  6. data/ext/cs__assess_array/cs__assess_array.c +3 -5
  7. data/ext/cs__assess_array/extconf.rb +3 -0
  8. data/ext/cs__assess_basic_object/cs__assess_basic_object.c +10 -4
  9. data/ext/cs__assess_basic_object/extconf.rb +3 -0
  10. data/ext/cs__assess_fiber_track/cs__assess_fiber_track.c +4 -3
  11. data/ext/cs__assess_fiber_track/cs__assess_fiber_track.h +3 -3
  12. data/ext/cs__assess_fiber_track/extconf.rb +3 -0
  13. data/ext/cs__assess_hash/cs__assess_hash.c +40 -17
  14. data/ext/cs__assess_hash/cs__assess_hash.h +4 -6
  15. data/ext/cs__assess_hash/extconf.rb +3 -0
  16. data/ext/cs__assess_kernel/cs__assess_kernel.c +10 -8
  17. data/ext/cs__assess_kernel/cs__assess_kernel.h +1 -0
  18. data/ext/cs__assess_kernel/extconf.rb +3 -0
  19. data/ext/cs__assess_marshal_module/cs__assess_marshal_module.c +3 -6
  20. data/ext/cs__assess_marshal_module/extconf.rb +3 -0
  21. data/ext/cs__assess_module/cs__assess_module.c +13 -9
  22. data/ext/cs__assess_module/extconf.rb +3 -0
  23. data/ext/cs__assess_regexp/cs__assess_regexp.c +13 -9
  24. data/ext/cs__assess_regexp/cs__assess_regexp.h +1 -0
  25. data/ext/cs__assess_regexp/extconf.rb +3 -0
  26. data/ext/cs__assess_string/cs__assess_string.c +5 -8
  27. data/ext/cs__assess_string/cs__assess_string.h +2 -1
  28. data/ext/cs__assess_string/extconf.rb +3 -0
  29. data/ext/cs__assess_string_interpolation26/cs__assess_string_interpolation26.c +2 -2
  30. data/ext/cs__assess_string_interpolation26/cs__assess_string_interpolation26.h +3 -3
  31. data/ext/cs__assess_string_interpolation26/extconf.rb +3 -0
  32. data/ext/cs__assess_yield_track/cs__assess_yield_track.h +1 -1
  33. data/ext/cs__assess_yield_track/extconf.rb +3 -0
  34. data/ext/cs__common/cs__common.c +79 -0
  35. data/ext/cs__common/cs__common.h +34 -0
  36. data/ext/cs__common/extconf.rb +9 -8
  37. data/ext/cs__contrast_patch/cs__contrast_patch.h +1 -6
  38. data/ext/cs__contrast_patch/extconf.rb +3 -0
  39. data/ext/cs__protect_kernel/cs__protect_kernel.c +20 -11
  40. data/ext/cs__protect_kernel/extconf.rb +3 -0
  41. data/ext/extconf_common.rb +10 -8
  42. data/funchook/autom4te.cache/output.0 +1 -13
  43. data/funchook/autom4te.cache/requests +44 -45
  44. data/funchook/autom4te.cache/traces.0 +0 -3
  45. data/funchook/config.log +378 -217
  46. data/funchook/config.status +23 -24
  47. data/funchook/configure +1 -13
  48. data/funchook/src/Makefile +7 -7
  49. data/funchook/src/config.h +2 -2
  50. data/funchook/src/decoder.o +0 -0
  51. data/funchook/src/distorm.o +0 -0
  52. data/funchook/src/funchook.o +0 -0
  53. data/funchook/src/funchook_io.o +0 -0
  54. data/funchook/src/funchook_syscall.o +0 -0
  55. data/funchook/src/funchook_unix.o +0 -0
  56. data/funchook/src/funchook_x86.o +0 -0
  57. data/funchook/src/instructions.o +0 -0
  58. data/funchook/src/insts.o +0 -0
  59. data/funchook/src/libfunchook.dylib +0 -0
  60. data/funchook/src/mnemonics.o +0 -0
  61. data/funchook/src/operands.o +0 -0
  62. data/funchook/src/os_func.o +0 -0
  63. data/funchook/src/os_func_unix.o +0 -0
  64. data/funchook/src/prefix.o +0 -0
  65. data/funchook/src/printf_base.o +0 -0
  66. data/funchook/src/textdefs.o +0 -0
  67. data/funchook/src/wstring.o +0 -0
  68. data/funchook/test/Makefile +2 -2
  69. data/funchook/test/funchook_test +0 -0
  70. data/funchook/test/libfunchook_test.so +0 -0
  71. data/funchook/test/libfunchook_test.so.dSYM/Contents/Info.plist +20 -0
  72. data/funchook/test/libfunchook_test.so.dSYM/Contents/Resources/DWARF/libfunchook_test.so +0 -0
  73. data/funchook/test/test_main.o +0 -0
  74. data/funchook/test/x86_64_test.o +0 -0
  75. data/lib/contrast.rb +1 -0
  76. data/lib/contrast/agent.rb +21 -15
  77. data/lib/contrast/agent/assess.rb +1 -2
  78. data/lib/contrast/agent/assess/adjusted_span.rb +3 -1
  79. data/lib/contrast/agent/assess/contrast_event.rb +20 -68
  80. data/lib/contrast/agent/assess/events/event_factory.rb +25 -0
  81. data/lib/contrast/agent/assess/events/source_event.rb +83 -0
  82. data/lib/contrast/agent/assess/insulator.rb +0 -4
  83. data/lib/contrast/agent/assess/policy/patcher.rb +5 -2
  84. data/lib/contrast/agent/assess/policy/policy_node.rb +0 -7
  85. data/lib/contrast/agent/assess/policy/policy_scanner.rb +1 -1
  86. data/lib/contrast/agent/assess/policy/preshift.rb +1 -1
  87. data/lib/contrast/agent/assess/policy/propagation_method.rb +65 -33
  88. data/lib/contrast/agent/assess/policy/propagation_node.rb +2 -1
  89. data/lib/contrast/agent/assess/policy/propagator.rb +1 -0
  90. data/lib/contrast/agent/assess/policy/propagator/match_data.rb +80 -0
  91. data/lib/contrast/agent/assess/policy/propagator/select.rb +35 -22
  92. data/lib/contrast/agent/assess/policy/propagator/split.rb +26 -6
  93. data/lib/contrast/agent/assess/policy/propagator/substitution.rb +2 -0
  94. data/lib/contrast/agent/assess/policy/rewriter_patch.rb +40 -27
  95. data/lib/contrast/agent/assess/policy/source_method.rb +20 -20
  96. data/lib/contrast/agent/assess/policy/source_node.rb +0 -15
  97. data/lib/contrast/agent/assess/policy/trigger_method.rb +29 -40
  98. data/lib/contrast/agent/assess/policy/trigger_node.rb +3 -6
  99. data/lib/contrast/agent/assess/policy/trigger_validation/ssrf_validator.rb +2 -31
  100. data/lib/contrast/agent/assess/properties.rb +5 -3
  101. data/lib/contrast/agent/assess/rule/base.rb +1 -5
  102. data/lib/contrast/agent/assess/rule/csrf/csrf_applicator.rb +2 -22
  103. data/lib/contrast/agent/assess/rule/csrf/csrf_watcher.rb +5 -1
  104. data/lib/contrast/agent/assess/rule/provider/hardcoded_value_rule.rb +2 -2
  105. data/lib/contrast/agent/assess/rule/redos.rb +4 -4
  106. data/lib/contrast/agent/assess/tag.rb +24 -14
  107. data/lib/contrast/agent/at_exit_hook.rb +16 -13
  108. data/lib/contrast/agent/class_reopener.rb +15 -6
  109. data/lib/contrast/agent/deadzone/policy/policy.rb +2 -2
  110. data/lib/contrast/agent/disable_reaction.rb +3 -4
  111. data/lib/contrast/agent/exclusion_matcher.rb +8 -48
  112. data/lib/contrast/agent/feature_state.rb +45 -78
  113. data/lib/contrast/agent/logger.rb +173 -0
  114. data/lib/contrast/agent/middleware.rb +87 -250
  115. data/lib/contrast/agent/module_data.rb +2 -1
  116. data/lib/contrast/agent/patching/policy/after_load_patch.rb +2 -1
  117. data/lib/contrast/agent/patching/policy/after_load_patcher.rb +21 -4
  118. data/lib/contrast/agent/patching/policy/method_policy.rb +3 -3
  119. data/lib/contrast/agent/patching/policy/module_policy.rb +0 -25
  120. data/lib/contrast/agent/patching/policy/patch.rb +96 -23
  121. data/lib/contrast/agent/patching/policy/patcher.rb +19 -19
  122. data/lib/contrast/agent/patching/policy/policy.rb +7 -7
  123. data/lib/contrast/agent/patching/policy/policy_node.rb +2 -10
  124. data/lib/contrast/agent/patching/policy/trigger_node.rb +1 -4
  125. data/lib/contrast/agent/protect/rule/base.rb +14 -33
  126. data/lib/contrast/agent/protect/rule/base_service.rb +3 -1
  127. data/lib/contrast/agent/protect/rule/cmd_injection.rb +10 -13
  128. data/lib/contrast/agent/protect/rule/csrf.rb +2 -1
  129. data/lib/contrast/agent/protect/rule/csrf/csrf_evaluator.rb +11 -14
  130. data/lib/contrast/agent/protect/rule/default_scanner.rb +0 -13
  131. data/lib/contrast/agent/protect/rule/deserialization.rb +2 -0
  132. data/lib/contrast/agent/protect/rule/http_method_tampering.rb +2 -2
  133. data/lib/contrast/agent/protect/rule/no_sqli.rb +4 -4
  134. data/lib/contrast/agent/protect/rule/path_traversal.rb +5 -4
  135. data/lib/contrast/agent/protect/rule/sqli.rb +1 -0
  136. data/lib/contrast/agent/protect/rule/unsafe_file_upload.rb +2 -0
  137. data/lib/contrast/agent/protect/rule/xss.rb +2 -0
  138. data/lib/contrast/agent/protect/rule/xxe.rb +10 -4
  139. data/lib/contrast/agent/railtie.rb +2 -8
  140. data/lib/contrast/agent/reaction_processor.rb +5 -5
  141. data/lib/contrast/agent/request.rb +9 -12
  142. data/lib/contrast/agent/request_context.rb +12 -14
  143. data/lib/contrast/agent/request_handler.rb +35 -0
  144. data/lib/contrast/agent/response.rb +52 -30
  145. data/lib/contrast/agent/rewriter.rb +25 -11
  146. data/lib/contrast/agent/rule_set.rb +49 -0
  147. data/lib/contrast/agent/scope.rb +4 -12
  148. data/lib/contrast/agent/service_heartbeat.rb +1 -2
  149. data/lib/contrast/agent/settings_state.rb +10 -74
  150. data/lib/contrast/agent/socket_client.rb +17 -11
  151. data/lib/contrast/agent/static_analysis.rb +42 -0
  152. data/lib/contrast/agent/thread.rb +1 -1
  153. data/lib/contrast/agent/tracepoint_hook.rb +1 -5
  154. data/lib/contrast/agent/version.rb +1 -1
  155. data/lib/contrast/api.rb +1 -1
  156. data/lib/contrast/api/decorators.rb +14 -0
  157. data/lib/contrast/api/decorators/application_settings.rb +37 -0
  158. data/lib/contrast/api/decorators/application_update.rb +66 -0
  159. data/lib/contrast/api/decorators/exclusion.rb +20 -0
  160. data/lib/contrast/api/decorators/input_analysis.rb +17 -0
  161. data/lib/contrast/api/decorators/server_features.rb +24 -0
  162. data/lib/contrast/api/speedracer.rb +31 -29
  163. data/lib/contrast/api/tcp_socket.rb +0 -2
  164. data/lib/contrast/components/agent.rb +27 -22
  165. data/lib/contrast/components/app_context.rb +18 -43
  166. data/lib/contrast/components/config.rb +7 -5
  167. data/lib/contrast/components/contrast_service.rb +0 -4
  168. data/lib/contrast/components/heap_dump.rb +12 -8
  169. data/lib/contrast/components/interface.rb +11 -10
  170. data/lib/contrast/components/logger.rb +3 -68
  171. data/lib/contrast/components/sampling.rb +22 -11
  172. data/lib/contrast/components/settings.rb +18 -5
  173. data/lib/contrast/config/base_configuration.rb +1 -0
  174. data/lib/contrast/config/default_value.rb +1 -0
  175. data/lib/contrast/config/protect_rule_configuration.rb +0 -14
  176. data/lib/contrast/configuration.rb +3 -5
  177. data/lib/contrast/extensions/framework/rails/action_controller_inheritance.rb +39 -0
  178. data/lib/contrast/extensions/framework/rails/active_record_named.rb +13 -8
  179. data/lib/contrast/extensions/ruby_core/assess.rb +1 -2
  180. data/lib/contrast/extensions/ruby_core/assess/assess_extension.rb +27 -22
  181. data/lib/contrast/extensions/ruby_core/assess/erb.rb +0 -8
  182. data/lib/contrast/extensions/ruby_core/assess/exec_trigger.rb +6 -8
  183. data/lib/contrast/extensions/ruby_core/assess/fiber.rb +88 -100
  184. data/lib/contrast/extensions/ruby_core/assess/hash.rb +32 -15
  185. data/lib/contrast/extensions/ruby_core/assess/kernel.rb +28 -27
  186. data/lib/contrast/extensions/ruby_core/assess/regexp.rb +74 -196
  187. data/lib/contrast/extensions/ruby_core/assess/string.rb +15 -7
  188. data/lib/contrast/extensions/ruby_core/assess/tilt_template_trigger.rb +29 -24
  189. data/lib/contrast/extensions/ruby_core/assess/xpath_library_trigger.rb +2 -2
  190. data/lib/contrast/extensions/ruby_core/eval_trigger.rb +0 -1
  191. data/lib/contrast/extensions/ruby_core/inventory/datastores.rb +2 -2
  192. data/lib/contrast/extensions/ruby_core/protect/applies_command_injection_rule.rb +9 -20
  193. data/lib/contrast/extensions/ruby_core/protect/applies_deserialization_rule.rb +9 -19
  194. data/lib/contrast/extensions/ruby_core/protect/applies_no_sqli_rule.rb +10 -27
  195. data/lib/contrast/extensions/ruby_core/protect/applies_path_traversal_rule.rb +13 -21
  196. data/lib/contrast/extensions/ruby_core/protect/applies_sqli_rule.rb +11 -23
  197. data/lib/contrast/extensions/ruby_core/protect/applies_xxe_rule.rb +62 -78
  198. data/lib/contrast/extensions/ruby_core/protect/rule_applicator.rb +50 -0
  199. data/lib/contrast/framework/base_support.rb +10 -0
  200. data/lib/contrast/framework/manager.rb +28 -2
  201. data/lib/contrast/framework/platform_version.rb +1 -0
  202. data/lib/contrast/framework/rails_support.rb +16 -0
  203. data/lib/contrast/framework/sinatra_support.rb +12 -2
  204. data/lib/contrast/framework/view_technologies_descriptor.rb +1 -0
  205. data/lib/contrast/tasks/service.rb +2 -8
  206. data/lib/contrast/utils/assess/sampling_util.rb +4 -9
  207. data/lib/contrast/utils/assess/tracking_util.rb +7 -1
  208. data/lib/contrast/utils/boolean_util.rb +2 -5
  209. data/lib/contrast/utils/cache.rb +0 -11
  210. data/lib/contrast/utils/class_util.rb +20 -1
  211. data/lib/contrast/utils/gemfile_reader.rb +5 -3
  212. data/lib/contrast/utils/hash_digest.rb +0 -4
  213. data/lib/contrast/utils/heap_dump_util.rb +12 -11
  214. data/lib/contrast/utils/invalid_configuration_util.rb +1 -1
  215. data/lib/contrast/utils/inventory_util.rb +2 -2
  216. data/lib/contrast/utils/io_util.rb +1 -11
  217. data/lib/contrast/utils/job_servers_running.rb +2 -2
  218. data/lib/contrast/utils/object_share.rb +1 -37
  219. data/lib/contrast/utils/os.rb +1 -25
  220. data/lib/contrast/utils/rack_assess_session_cookie.rb +3 -3
  221. data/lib/contrast/utils/rails_assess_configuration.rb +3 -3
  222. data/lib/contrast/utils/ruby_ast_rewriter.rb +5 -1
  223. data/lib/contrast/utils/service_response_util.rb +27 -53
  224. data/lib/contrast/utils/service_sender_util.rb +9 -5
  225. data/lib/contrast/utils/sinatra_helper.rb +0 -6
  226. data/lib/contrast/utils/stack_trace_utils.rb +86 -182
  227. data/lib/contrast/utils/string_utils.rb +18 -2
  228. data/lib/contrast/utils/tag_util.rb +11 -1
  229. data/lib/contrast/utils/thread_tracker.rb +2 -2
  230. data/lib/contrast/utils/timer.rb +0 -40
  231. data/resources/assess/policy.json +33 -21
  232. data/resources/protect/policy.json +9 -9
  233. data/ruby-agent.gemspec +7 -4
  234. data/service_executables/VERSION +1 -1
  235. data/service_executables/linux/contrast-service +0 -0
  236. data/service_executables/mac/contrast-service +0 -0
  237. metadata +79 -54
  238. data/ext/cs__assess_regexp_track/cs__assess_regexp_track.c +0 -63
  239. data/ext/cs__assess_regexp_track/cs__assess_regexp_track.h +0 -29
  240. data/ext/cs__assess_regexp_track/extconf.rb +0 -2
  241. data/funchook/src/libfunchook.so +0 -0
  242. data/lib/contrast/agent/assess/frozen_properties.rb +0 -41
  243. data/lib/contrast/agent/logger_manager.rb +0 -116
  244. data/lib/contrast/delegators.rb +0 -9
  245. data/lib/contrast/delegators/application_update.rb +0 -32
  246. data/lib/contrast/utils/comment_range.rb +0 -19
  247. data/lib/contrast/utils/environment_util.rb +0 -82
  248. data/lib/contrast/utils/performs_logging.rb +0 -152
  249. data/resources/factory-bot-spec/spec_helper.rb +0 -30
  250. data/resources/rubocops/kernel/catch_cop.rb +0 -37
  251. data/resources/rubocops/kernel/require_cop.rb +0 -37
  252. data/resources/rubocops/kernel/require_relative_cop.rb +0 -33
  253. data/resources/rubocops/module/autoload_cop.rb +0 -37
  254. data/resources/rubocops/module/const_defined_cop.rb +0 -37
  255. data/resources/rubocops/module/const_get_cop.rb +0 -37
  256. data/resources/rubocops/module/const_set_cop.rb +0 -37
  257. data/resources/rubocops/module/constants_cop.rb +0 -37
  258. data/resources/rubocops/module/name_cop.rb +0 -37
  259. data/resources/rubocops/object/class_cop.rb +0 -37
  260. data/resources/rubocops/object/freeze_cop.rb +0 -37
  261. data/resources/rubocops/object/frozen_cop.rb +0 -37
  262. data/resources/rubocops/object/is_a_cop.rb +0 -37
  263. data/resources/rubocops/object/method_cop.rb +0 -37
  264. data/resources/rubocops/object/respond_to_cop.rb +0 -37
  265. data/resources/rubocops/object/singleton_class_cop.rb +0 -37
  266. data/resources/rubocops/regexp/spelling_cop.rb +0 -44
  267. data/resources/rubocops/thread/new_cop.rb +0 -39
  268. data/resources/ruby-spec/ancestors_spec.rb +0 -70
  269. data/resources/ruby-spec/modulo_spec.rb +0 -831
  270. data/resources/ruby-spec/parameters_spec.rb +0 -261
  271. data/resources/ruby-spec/ruby_spec_spec_helper.rb +0 -35
@@ -0,0 +1,25 @@
1
+ # Copyright (c) 2020 Contrast Security, Inc. See https://www.contrastsecurity.com/enduser-terms-0317a for more details.
2
+ # frozen_string_literal: true
3
+
4
+ cs__scoped_require 'contrast/agent/assess/contrast_event'
5
+ cs__scoped_require 'contrast/agent/assess/events/source_event'
6
+
7
+ module Contrast
8
+ module Agent
9
+ module Assess
10
+ module Events
11
+ # This module returns the event type appropriate to the given Node
12
+ module EventFactory
13
+ def self.build policy_node, tagged, object, ret, args, source_type = nil, source_name = nil
14
+ case policy_node
15
+ when Contrast::Agent::Assess::Policy::SourceNode
16
+ Contrast::Agent::Assess::Events::SourceEvent.new(policy_node, tagged, object, ret, args, source_type, source_name)
17
+ when Contrast::Agent::Assess::Policy::PolicyNode
18
+ Contrast::Agent::Assess::ContrastEvent.new(policy_node, tagged, object, ret, args)
19
+ end
20
+ end
21
+ end
22
+ end
23
+ end
24
+ end
25
+ end
@@ -0,0 +1,83 @@
1
+ # Copyright (c) 2020 Contrast Security, Inc. See https://www.contrastsecurity.com/enduser-terms-0317a for more details.
2
+ # frozen_string_literal: true
3
+
4
+ cs__scoped_require 'contrast/agent/assess/contrast_event'
5
+ cs__scoped_require 'contrast/utils/string_utils'
6
+
7
+ module Contrast
8
+ module Agent
9
+ module Assess
10
+ module Events
11
+ # This class holds the data about an event in the application
12
+ # We'll use it to build an event that TeamServer can consume if
13
+ # the object to which this event belongs ends in a trigger.
14
+ class SourceEvent < Contrast::Agent::Assess::ContrastEvent
15
+ attr_reader :source_name, :source_type, :request
16
+
17
+ def initialize policy_node, tagged, object, ret, args, source_type = nil, source_name = nil
18
+ super(policy_node, tagged, object, ret, args)
19
+ @source_type = source_type
20
+ @source_name = source_name
21
+ @request = Contrast::Agent::REQUEST_TRACKER.current&.request
22
+ end
23
+
24
+ def find_parent_ids _policy_node, _object, _ret, _args
25
+ nil
26
+ end
27
+
28
+ # Convert this event into a DTM that TeamServer can consume
29
+ def to_dtm_event
30
+ event = super
31
+ event.field_name = Contrast::Utils::StringUtils.force_utf8(source_name)
32
+ event_source_dtm = build_event_source_dtm
33
+ event.event_sources << event_source_dtm if event_source_dtm
34
+ event.object_id = event_id.to_i
35
+ event
36
+ end
37
+
38
+ def forced_source_type
39
+ @_forced_source_type ||= Contrast::Utils::StringUtils.force_utf8(source_type)
40
+ end
41
+
42
+ def forced_source_name
43
+ @_forced_source_name ||= Contrast::Utils::StringUtils.force_utf8(source_name)
44
+ end
45
+
46
+ # Probably only for source events, but we'll go
47
+ # with source_type instead. java & .net support source_type
48
+ # in propagation events, so we'll future proof this
49
+ def build_event_source_dtm
50
+ # You can have a source w/o a name, but not w/o a type
51
+ return unless source_type
52
+
53
+ dtm = Contrast::Api::Dtm::TraceEventSource.new
54
+ dtm.type = forced_source_type
55
+ dtm.name = forced_source_name
56
+ dtm
57
+ end
58
+
59
+ # We have to do a little work to figure out what our TS appropriate
60
+ # target is. To break this down, the logic is as follows:
61
+ # 1) If I have a highlight, it means that I have a P target that is
62
+ # not in integer form (it was a named / keyword type for which I had
63
+ # to find the index). I need to address this so that TS can process
64
+ # it.
65
+ # 2) I'll set the event's source and target to TS values.
66
+ # 3) Return the highlight or the first source/target as the taint
67
+ # target.
68
+ def determine_taint_target event
69
+ return unless @policy_node&.targets&.any?
70
+
71
+ event.source = @policy_node.source_string if @policy_node.source_string
72
+ event.target = if @highlight
73
+ "P#{ @highlight }"
74
+ else
75
+ @policy_node.target_string
76
+ end
77
+ @highlight || @policy_node.targets[0]
78
+ end
79
+ end
80
+ end
81
+ end
82
+ end
83
+ end
@@ -45,9 +45,5 @@ class SimpleDelegator
45
45
  def properties
46
46
  @delegate_properties ||= Contrast::Agent::Assess::Properties.new
47
47
  end
48
-
49
- def frozen_properties
50
- @delegate_frozen_properties ||= Contrast::Agent::Assess::FrozenProperties.new
51
- end
52
48
  # rubocop:enable Naming/MemoizedInstanceVariableName
53
49
  end
@@ -5,6 +5,7 @@ cs__scoped_require 'contrast/agent/assess/policy/policy'
5
5
  cs__scoped_require 'contrast/agent/patching/policy/patcher'
6
6
  cs__scoped_require 'contrast/agent/patching/policy/method_policy'
7
7
  cs__scoped_require 'contrast/agent/patching/policy/module_policy'
8
+ cs__scoped_require 'contrast/components/interface'
8
9
 
9
10
  module Contrast
10
11
  module Agent
@@ -38,8 +39,9 @@ module Contrast
38
39
  with_contrast_scope { patcher.patch_specific_module(mod) }
39
40
  rescue StandardError => e
40
41
  logger.warn(
42
+ 'Unable to patch assess during eval',
41
43
  e,
42
- "Unable to patch assess into #{ mod.cs__name } on eval")
44
+ module: mod.cs__name)
43
45
  end
44
46
 
45
47
  # Exposed so that methods can be dynamically patched on creation at
@@ -74,8 +76,9 @@ module Contrast
74
76
  end
75
77
  rescue StandardError => e
76
78
  logger.warn(
79
+ 'Unable to patch assess during define_method_attribute',
77
80
  e,
78
- "Unable to patch assess into #{ class_name }##{ method_name } on define_method_attribute")
81
+ module: mod.cs__name)
79
82
  end
80
83
  end
81
84
  end
@@ -44,11 +44,6 @@ module Contrast
44
44
  end
45
45
  end
46
46
 
47
- def source_string= value
48
- @source_string = value
49
- generate_sources
50
- end
51
-
52
47
  def target_string= value
53
48
  @target_string = value
54
49
  generate_targets
@@ -150,8 +145,6 @@ module Contrast
150
145
  end
151
146
 
152
147
  ALL_TYPE = 'A'
153
- CREATION_TYPE = 'CREATION'
154
- TRIGGER_TYPE = 'TRIGGER'
155
148
  TO_MARKER = '2'
156
149
  # Convert our action, built from our source and target, into
157
150
  # the TS appropriate action. That's a single source to single
@@ -15,7 +15,7 @@ module Contrast
15
15
  # or Keys.
16
16
  module PolicyScanner
17
17
  include Contrast::Components::Interface
18
- access_component :analysis, :logging
18
+ access_component :analysis
19
19
 
20
20
  class << self
21
21
  def scan trace_point
@@ -51,7 +51,7 @@ module Contrast
51
51
 
52
52
  preshift
53
53
  rescue StandardError => e
54
- logger.error(e, 'Unable to build preshift for method.')
54
+ logger.error('Unable to build preshift for method.', e)
55
55
  nil
56
56
  end
57
57
 
@@ -34,7 +34,6 @@ module Contrast
34
34
  REVERSE_ACTION = 'REVERSE'
35
35
  SPLAT_ACTION = 'SPLAT'
36
36
  SPLIT_ACTION = 'SPLIT'
37
- TAG_ACTION = 'TAG'
38
37
  DB_WRITE_ACTION = 'DB_WRITE'
39
38
  CUSTOM_ACTION = 'CUSTOM'
40
39
 
@@ -56,6 +55,19 @@ module Contrast
56
55
  arg
57
56
  end
58
57
 
58
+ # @param method_policy [Contrast::Agent::Patching::Policy::MethodPolicy]
59
+ # the policy that governs the patches to this method
60
+ # @param preshift [Contrast::Agent::Assess::PreShift] The capture
61
+ # of the state of the code just prior to the invocation of the
62
+ # patched method.
63
+ # @param object [Object] the Object on which the method was invoked
64
+ # @param ret [Object] the Return of the invoked method
65
+ # @param args [Array<Object>] the Arguments with which the method
66
+ # was invoked
67
+ # @param block [Block] the Block passed to the original method
68
+ # @return [Object, nil] the tracked Return or nil if no changes
69
+ # were made; will replace the return of the original function if
70
+ # not nil
59
71
  def apply_propagation method_policy, preshift, object, ret, args, block
60
72
  return unless method_policy.propagation_node
61
73
  return unless preshift
@@ -63,7 +75,7 @@ module Contrast
63
75
  propagation_node = method_policy.propagation_node
64
76
 
65
77
  target = determine_target(propagation_node, ret, object, args)
66
- PropagationMethod.apply_propagator(propagation_node, preshift, target, object, ret, 0, args, block)
78
+ PropagationMethod.apply_propagator(propagation_node, preshift, target, object, ret, args, block)
67
79
  end
68
80
 
69
81
  PROPAGATION_ACTIONS = {
@@ -80,12 +92,32 @@ module Contrast
80
92
  SPLIT_ACTION => Contrast::Agent::Assess::Policy::Propagator::Split
81
93
  }.cs__freeze
82
94
 
83
- # I lied above. We had to figure out what the target of the propagation was.
84
- # Now that we know, we'll actually do things to it.
85
- def apply_propagator propagation_node, preshift, target, object, ret, invoked, args, block
86
- context = Contrast::Agent::REQUEST_TRACKER.current
87
- return unless context && propagation_node && valid_target?(target, propagation_node)
88
- return unless valid_length?(target, propagation_node.action)
95
+ def context_available?
96
+ !!Contrast::Agent::REQUEST_TRACKER.current
97
+ end
98
+
99
+ # I lied above. We had to figure out what the target of the
100
+ # propagation was. Now that we know, we'll actually do things to
101
+ # it. Note that the return of this method will replace the original
102
+ # return of the patched function unless it is nil, so be sure
103
+ # you're returning what you intend.
104
+ #
105
+ # @param propagation_node [Contrast::Agent::Assess::Policy::PropagationNode]
106
+ # the node that governs this propagation event.
107
+ # @param preshift [Contrast::Agent::Assess::PreShift] The capture
108
+ # of the state of the code just prior to the invocation of the
109
+ # patched method.
110
+ # @param target [Object] the Target to which to propagate.
111
+ # @param object [Object] the Object on which the method was invoked
112
+ # @param ret [Object] the Return of the invoked method
113
+ # @param args [Array<Object>] the Arguments with which the method
114
+ # was invoked
115
+ # @param block [Block] the Block passed to the original method
116
+ # @return [Object, nil] the tracked Return or nil if no changes
117
+ # were made; will replace the return of the original function if
118
+ # not nil
119
+ def apply_propagator propagation_node, preshift, target, object, ret, args, block
120
+ return unless propagation_possible?(propagation_node, target)
89
121
 
90
122
  if propagation_node.action == DB_WRITE_ACTION
91
123
  Contrast::Agent::Assess::Policy::Propagator::DatabaseWrite.propagate(propagation_node, preshift, ret)
@@ -93,18 +125,15 @@ module Contrast
93
125
  Contrast::Agent::Assess::Policy::Propagator::Custom.propagate(propagation_node, preshift, ret, block)
94
126
  elsif propagation_node.action == SPLIT_ACTION
95
127
  Contrast::Agent::Assess::Policy::Propagator::Split.propagate(propagation_node, preshift, target)
96
- logger.debug(
97
- nil,
98
- "Propagator #{ propagation_node.id } detected: propagated to #{ target.__id__ }")
99
128
  elsif Contrast::Utils::DuckUtils.quacks_to?(target, :cs__properties)
100
- handle_cs_properties_propagation(propagation_node, preshift, target, object, ret, invoked, args, block)
129
+ handle_cs_properties_propagation(propagation_node, preshift, target, object, ret, args, block)
101
130
  elsif Contrast::Utils::DuckUtils.iterable_hash?(target)
102
- handle_hash_propagation(propagation_node, preshift, target, object, ret, invoked, args, block)
131
+ handle_hash_propagation(propagation_node, preshift, target, object, ret, args, block)
103
132
  elsif Contrast::Utils::DuckUtils.iterable_enumerable?(target)
104
- handle_enumerable_propagation(propagation_node, preshift, target, object, ret, invoked, args, block)
133
+ handle_enumerable_propagation(propagation_node, preshift, target, object, ret, args, block)
105
134
  end
106
135
  rescue StandardError => e
107
- logger.warn(e, "Unable to apply propagator #{ propagation_node.id }")
136
+ logger.warn('Unable to apply propagation', e, node_id: propagation_node.id)
108
137
  end
109
138
 
110
139
  # Custom actions tend to be the more complex of our propagations.
@@ -188,34 +217,39 @@ module Contrast
188
217
 
189
218
  private
190
219
 
191
- def handle_hash_propagation propagation_node, preshift, target, object, ret, invoked, args, block
192
- invoked += 2
220
+ # This is checked right before actual propagation
221
+ def propagation_possible? propagation_node, target
222
+ return false unless context_available? && propagation_node && valid_target?(target, propagation_node)
223
+ return false unless valid_length?(target, propagation_node.action)
224
+
225
+ true
226
+ end
227
+
228
+ def handle_hash_propagation propagation_node, preshift, target, object, ret, args, block
193
229
  target.each_pair do |key, value|
194
- apply_propagator(propagation_node, preshift, key, object, ret, invoked, args, block)
195
- apply_propagator(propagation_node, preshift, value, object, ret, invoked, args, block)
230
+ apply_propagator(propagation_node, preshift, key, object, ret, args, block)
231
+ apply_propagator(propagation_node, preshift, value, object, ret, args, block)
196
232
  end
197
233
  end
198
234
 
199
- def handle_enumerable_propagation propagation_node, preshift, target, object, ret, invoked, args, block
200
- invoked += 2
235
+ def handle_enumerable_propagation propagation_node, preshift, target, object, ret, args, block
201
236
  target.each do |value|
202
237
  next if target == value # Some Enumerable#each are overriden to return self the first time which leads to infinite propagation
203
238
 
204
- apply_propagator(propagation_node, preshift, value, object, ret, invoked, args, block)
239
+ apply_propagator(propagation_node, preshift, value, object, ret, args, block)
205
240
  end
206
241
  end
207
242
 
208
- def handle_cs_properties_propagation propagation_node, preshift, target, object, ret, invoked, args, _block
209
- invoked += 1
243
+ def handle_cs_properties_propagation propagation_node, preshift, target, object, ret, args, _block
210
244
  return unless can_propagate?(propagation_node, preshift, target)
211
245
 
212
246
  # propagate all the tags from the sources to the target
213
247
  propagation_class = PROPAGATION_ACTIONS.fetch(propagation_node.action, nil)
214
248
  unless propagation_class
215
249
  logger.warn(
216
- nil,
217
- "Unknown action type #{ propagation_node.action }. Unable to "\
218
- "propagate for #{ propagation_node.id }.")
250
+ 'Unknown propgation action receieved. Unable to propagate.',
251
+ node_id: propagation_node.id,
252
+ action: propagation_node.action)
219
253
  return ret
220
254
  end
221
255
 
@@ -244,13 +278,11 @@ module Contrast
244
278
 
245
279
  target.cs__properties.add_properties(propagation_node.properties)
246
280
 
247
- target.cs__properties.build_event(propagation_node, target, object, ret, args, invoked)
248
-
249
- logger.debug(
250
- nil,
251
- "Propagator #{ propagation_node.id } detected: propagated to "\
252
- "#{ target.__id__ }")
281
+ target.cs__properties.build_event(propagation_node, target, object, ret, args)
253
282
 
283
+ logger.trace('Propagation detected',
284
+ node_id: propagation_node.id,
285
+ target_id: target.__id__)
254
286
  ret.cs__freeze if restore_frozen_state
255
287
  ret
256
288
  end
@@ -17,7 +17,8 @@ module Contrast
17
17
  JSON_PATCH_CLASS = 'patch_class'
18
18
  JSON_PATCH_METHOD = 'patch_method'
19
19
 
20
- attr_accessor :action, :untags, :patch_class, :patch_method
20
+ attr_reader :untags, :patch_method
21
+ attr_accessor :action, :patch_class
21
22
 
22
23
  # Most things here carry over from PolicyNode.
23
24
  # A couple things are new / have new rules
@@ -18,6 +18,7 @@ module Contrast
18
18
  cs__scoped_require 'contrast/agent/assess/policy/propagator/database_write'
19
19
  cs__scoped_require 'contrast/agent/assess/policy/propagator/insert'
20
20
  cs__scoped_require 'contrast/agent/assess/policy/propagator/keep'
21
+ cs__scoped_require 'contrast/agent/assess/policy/propagator/match_data'
21
22
  cs__scoped_require 'contrast/agent/assess/policy/propagator/next'
22
23
  cs__scoped_require 'contrast/agent/assess/policy/propagator/prepend'
23
24
  cs__scoped_require 'contrast/agent/assess/policy/propagator/remove'
@@ -0,0 +1,80 @@
1
+ # Copyright (c) 2020 Contrast Security, Inc. See https://www.contrastsecurity.com/enduser-terms-0317a for more details.
2
+ # frozen_string_literal: true
3
+
4
+ module Contrast
5
+ module Agent
6
+ module Assess
7
+ module Policy
8
+ module Propagator
9
+ # Propagation that results in all the tags of the source being
10
+ # applied to the target exactly as is. The target's preexisting tags
11
+ # are unaffected beyond any merging of overlapping tags.
12
+ class MatchData < Contrast::Agent::Assess::Policy::Propagator::Base
13
+ class << self
14
+ def square_bracket_tagger propagation_node, preshift, ret, _block
15
+ if ret.is_a?(Array)
16
+ ret.each_with_index do |return_value, index|
17
+ target_matchdata_index = if preshift.args[0].is_a?(Range)
18
+ arg_range = preshift.args[0]
19
+ arg_range.to_a.empty? ? index + 1 : arg_range.to_a[index]
20
+ else
21
+ preshift.args[index]
22
+ end
23
+ square_bracket_single(target_matchdata_index, preshift, return_value, propagation_node)
24
+ end
25
+ elsif ret.is_a?(String)
26
+ target_matchdata_index = preshift.args[0]
27
+ square_bracket_single(target_matchdata_index, preshift, ret, propagation_node)
28
+ end
29
+
30
+ ret
31
+ end
32
+
33
+ def captures_tagger propagation_node, preshift, ret, _block
34
+ ret.each_with_index do |return_value, index|
35
+ targetted_index = index + 1
36
+ square_bracket_single(targetted_index, preshift, return_value, propagation_node)
37
+ end
38
+ ret
39
+ end
40
+
41
+ def to_a_tagger propagation_node, preshift, ret, _block
42
+ ret.each_with_index do |return_value, index|
43
+ square_bracket_single(index, preshift, return_value, propagation_node)
44
+ end
45
+ ret
46
+ end
47
+
48
+ def values_at_tagger propagation_node, preshift, ret, _block
49
+ ret.each_with_index do |return_value, return_index|
50
+ original_group_arg_index = preshift.args[return_index]
51
+ square_bracket_single(original_group_arg_index, preshift, return_value, propagation_node)
52
+ end
53
+ ret
54
+ end
55
+
56
+ private
57
+
58
+ def square_bracket_single argument_index, preshift, return_value, propagation_node
59
+ original_start_index = preshift.object.begin(argument_index)
60
+ original_end_index = preshift.object.end(argument_index)
61
+ original_properties = preshift.object.cs__properties
62
+ applicable_tags = original_properties.tags_at_range(Contrast::Agent::Assess::AdjustedSpan.new(original_start_index, original_end_index))
63
+ return if applicable_tags.empty?
64
+
65
+ applicable_tags.each do |tag_name, tag_ranges|
66
+ return_value.cs__properties.set_tags(tag_name, tag_ranges)
67
+ end
68
+ preshift.object.cs__properties.events.each do |event|
69
+ return_value.cs__properties.add_event(event)
70
+ end
71
+ return_value.cs__properties.build_event(
72
+ propagation_node, return_value, preshift.object, return_value, preshift.args)
73
+ end
74
+ end
75
+ end
76
+ end
77
+ end
78
+ end
79
+ end
80
+ end