contrast-agent 4.14.0 → 5.2.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (422) hide show
  1. checksums.yaml +4 -4
  2. data/.simplecov +2 -3
  3. data/Gemfile +1 -1
  4. data/LICENSE.txt +1 -1
  5. data/Rakefile +1 -1
  6. data/exe/contrast_service +1 -1
  7. data/ext/build_funchook.rb +1 -1
  8. data/ext/cs__assess_array/cs__assess_array.c +1 -1
  9. data/ext/cs__assess_array/extconf.rb +1 -1
  10. data/ext/cs__assess_basic_object/cs__assess_basic_object.c +1 -1
  11. data/ext/cs__assess_basic_object/extconf.rb +1 -1
  12. data/ext/cs__assess_fiber_track/cs__assess_fiber_track.c +1 -1
  13. data/ext/cs__assess_fiber_track/extconf.rb +1 -1
  14. data/ext/cs__assess_hash/cs__assess_hash.c +1 -1
  15. data/ext/cs__assess_hash/extconf.rb +1 -1
  16. data/ext/cs__assess_kernel/cs__assess_kernel.c +8 -5
  17. data/ext/cs__assess_kernel/extconf.rb +1 -1
  18. data/ext/cs__assess_marshal_module/cs__assess_marshal_module.c +1 -1
  19. data/ext/cs__assess_marshal_module/extconf.rb +1 -1
  20. data/ext/cs__assess_module/cs__assess_module.c +49 -39
  21. data/ext/cs__assess_module/extconf.rb +1 -1
  22. data/ext/cs__assess_regexp/cs__assess_regexp.c +1 -1
  23. data/ext/cs__assess_regexp/extconf.rb +1 -1
  24. data/ext/cs__assess_string/cs__assess_string.c +1 -1
  25. data/ext/cs__assess_string/extconf.rb +1 -1
  26. data/ext/cs__assess_string_interpolation26/cs__assess_string_interpolation26.c +1 -1
  27. data/ext/cs__assess_string_interpolation26/extconf.rb +1 -1
  28. data/ext/cs__assess_yield_track/cs__assess_yield_track.c +1 -1
  29. data/ext/cs__assess_yield_track/extconf.rb +1 -1
  30. data/ext/cs__common/cs__common.c +5 -1
  31. data/ext/cs__common/cs__common.h +1 -0
  32. data/ext/cs__common/extconf.rb +1 -1
  33. data/ext/cs__contrast_patch/cs__contrast_patch.c +53 -28
  34. data/ext/cs__contrast_patch/cs__contrast_patch.h +2 -0
  35. data/ext/cs__contrast_patch/extconf.rb +1 -1
  36. data/ext/cs__os_information/cs__os_information.c +1 -1
  37. data/ext/cs__os_information/extconf.rb +1 -1
  38. data/ext/cs__scope/cs__scope.c +747 -0
  39. data/ext/cs__scope/cs__scope.h +88 -0
  40. data/ext/{cs__assess_active_record_named → cs__scope}/extconf.rb +1 -1
  41. data/ext/extconf_common.rb +1 -1
  42. data/lib/contrast/agent/assess/contrast_event.rb +27 -24
  43. data/lib/contrast/agent/assess/contrast_object.rb +5 -2
  44. data/lib/contrast/agent/assess/events/event_data.rb +30 -0
  45. data/lib/contrast/agent/assess/events/event_factory.rb +14 -6
  46. data/lib/contrast/agent/assess/events/source_event.rb +22 -3
  47. data/lib/contrast/agent/assess/finalizers/freeze.rb +1 -1
  48. data/lib/contrast/agent/assess/finalizers/hash.rb +1 -1
  49. data/lib/contrast/agent/assess/policy/dynamic_source_factory.rb +7 -7
  50. data/lib/contrast/agent/assess/policy/patcher.rb +1 -35
  51. data/lib/contrast/agent/assess/policy/policy.rb +1 -1
  52. data/lib/contrast/agent/assess/policy/policy_node.rb +2 -2
  53. data/lib/contrast/agent/assess/policy/policy_scanner.rb +1 -1
  54. data/lib/contrast/agent/assess/policy/preshift.rb +1 -1
  55. data/lib/contrast/agent/assess/policy/propagation_method.rb +55 -28
  56. data/lib/contrast/agent/assess/policy/propagation_node.rb +3 -6
  57. data/lib/contrast/agent/assess/policy/propagator/append.rb +1 -1
  58. data/lib/contrast/agent/assess/policy/propagator/base.rb +1 -1
  59. data/lib/contrast/agent/assess/policy/propagator/center.rb +1 -1
  60. data/lib/contrast/agent/assess/policy/propagator/custom.rb +1 -1
  61. data/lib/contrast/agent/assess/policy/propagator/database_write.rb +6 -2
  62. data/lib/contrast/agent/assess/policy/propagator/insert.rb +5 -2
  63. data/lib/contrast/agent/assess/policy/propagator/keep.rb +1 -1
  64. data/lib/contrast/agent/assess/policy/propagator/match_data.rb +13 -3
  65. data/lib/contrast/agent/assess/policy/propagator/next.rb +1 -1
  66. data/lib/contrast/agent/assess/policy/propagator/prepend.rb +1 -1
  67. data/lib/contrast/agent/assess/policy/propagator/rack_protection.rb +1 -1
  68. data/lib/contrast/agent/assess/policy/propagator/remove.rb +1 -1
  69. data/lib/contrast/agent/assess/policy/propagator/replace.rb +1 -1
  70. data/lib/contrast/agent/assess/policy/propagator/reverse.rb +1 -1
  71. data/lib/contrast/agent/assess/policy/propagator/select.rb +3 -2
  72. data/lib/contrast/agent/assess/policy/propagator/splat.rb +1 -1
  73. data/lib/contrast/agent/assess/policy/propagator/split.rb +27 -25
  74. data/lib/contrast/agent/assess/policy/propagator/substitution.rb +3 -5
  75. data/lib/contrast/agent/assess/policy/propagator/substitution_utils.rb +190 -0
  76. data/lib/contrast/agent/assess/policy/propagator/trim.rb +9 -4
  77. data/lib/contrast/agent/assess/policy/propagator.rb +1 -1
  78. data/lib/contrast/agent/assess/policy/source_method.rb +39 -26
  79. data/lib/contrast/agent/assess/policy/source_node.rb +1 -1
  80. data/lib/contrast/agent/assess/policy/source_validation/cross_site_validator.rb +1 -1
  81. data/lib/contrast/agent/assess/policy/source_validation/source_validation.rb +1 -1
  82. data/lib/contrast/agent/assess/policy/trigger/reflected_xss.rb +7 -2
  83. data/lib/contrast/agent/assess/policy/trigger/xpath.rb +1 -1
  84. data/lib/contrast/agent/assess/policy/trigger_method.rb +41 -25
  85. data/lib/contrast/agent/assess/policy/trigger_node.rb +1 -1
  86. data/lib/contrast/agent/assess/policy/trigger_validation/redos_validator.rb +1 -1
  87. data/lib/contrast/agent/assess/policy/trigger_validation/ssrf_validator.rb +1 -1
  88. data/lib/contrast/agent/assess/policy/trigger_validation/trigger_validation.rb +1 -1
  89. data/lib/contrast/agent/assess/policy/trigger_validation/xss_validator.rb +1 -1
  90. data/lib/contrast/agent/assess/properties.rb +1 -1
  91. data/lib/contrast/agent/assess/property/evented.rb +25 -12
  92. data/lib/contrast/agent/assess/property/tagged.rb +1 -1
  93. data/lib/contrast/agent/assess/property/updated.rb +1 -1
  94. data/lib/contrast/agent/assess/rule/provider/hardcoded_key.rb +1 -19
  95. data/lib/contrast/agent/assess/rule/provider/hardcoded_password.rb +1 -13
  96. data/lib/contrast/agent/assess/rule/provider/hardcoded_value_rule.rb +7 -59
  97. data/lib/contrast/agent/assess/rule/provider.rb +1 -1
  98. data/lib/contrast/agent/assess/rule/response/auto_complete_rule.rb +69 -0
  99. data/lib/contrast/agent/assess/rule/response/base_rule.rb +130 -0
  100. data/lib/contrast/agent/assess/rule/response/body_rule.rb +109 -0
  101. data/lib/contrast/agent/assess/rule/response/cache_control_header_rule.rb +157 -0
  102. data/lib/contrast/agent/assess/rule/response/click_jacking_header_rule.rb +26 -0
  103. data/lib/contrast/agent/assess/rule/response/csp_header_insecure_rule.rb +100 -0
  104. data/lib/contrast/agent/assess/rule/response/csp_header_missing_rule.rb +26 -0
  105. data/lib/contrast/agent/assess/rule/response/framework/rails_support.rb +29 -0
  106. data/lib/contrast/agent/assess/rule/response/header_rule.rb +70 -0
  107. data/lib/contrast/agent/assess/rule/response/hsts_header_rule.rb +36 -0
  108. data/lib/contrast/agent/assess/rule/response/parameters_pollution_rule.rb +61 -0
  109. data/lib/contrast/agent/assess/rule/response/x_content_type_header_rule.rb +26 -0
  110. data/lib/contrast/agent/assess/rule/response/x_xss_protection_header_rule.rb +36 -0
  111. data/lib/contrast/agent/assess/tag.rb +1 -1
  112. data/lib/contrast/agent/assess/tracker.rb +1 -1
  113. data/lib/contrast/agent/assess.rb +1 -2
  114. data/lib/contrast/agent/at_exit_hook.rb +1 -1
  115. data/lib/contrast/agent/deadzone/policy/deadzone_node.rb +13 -8
  116. data/lib/contrast/agent/deadzone/policy/policy.rb +1 -1
  117. data/lib/contrast/agent/disable_reaction.rb +1 -1
  118. data/lib/contrast/agent/exclusion_matcher.rb +1 -1
  119. data/lib/contrast/agent/inventory/database_config.rb +115 -77
  120. data/lib/contrast/agent/inventory/dependencies.rb +1 -1
  121. data/lib/contrast/agent/inventory/dependency_analysis.rb +1 -1
  122. data/lib/contrast/agent/inventory/dependency_usage_analysis.rb +3 -3
  123. data/lib/contrast/agent/inventory/policy/datastores.rb +1 -1
  124. data/lib/contrast/agent/inventory/policy/policy.rb +1 -1
  125. data/lib/contrast/agent/inventory/policy/trigger_node.rb +1 -1
  126. data/lib/contrast/agent/inventory.rb +1 -1
  127. data/lib/contrast/agent/metric_telemetry_event.rb +1 -1
  128. data/lib/contrast/agent/middleware.rb +4 -2
  129. data/lib/contrast/agent/module_data.rb +1 -1
  130. data/lib/contrast/agent/patching/policy/after_load_patch.rb +1 -1
  131. data/lib/contrast/agent/patching/policy/after_load_patcher.rb +2 -4
  132. data/lib/contrast/agent/patching/policy/method_policy.rb +28 -15
  133. data/lib/contrast/agent/patching/policy/method_policy_extend.rb +12 -10
  134. data/lib/contrast/agent/patching/policy/module_policy.rb +1 -1
  135. data/lib/contrast/agent/patching/policy/patch.rb +3 -7
  136. data/lib/contrast/agent/patching/policy/patch_status.rb +2 -26
  137. data/lib/contrast/agent/patching/policy/patcher.rb +2 -6
  138. data/lib/contrast/agent/patching/policy/policy.rb +1 -1
  139. data/lib/contrast/agent/patching/policy/policy_node.rb +1 -1
  140. data/lib/contrast/agent/patching/policy/trigger_node.rb +1 -1
  141. data/lib/contrast/agent/protect/input_analyzer/input_analyzer.rb +94 -0
  142. data/lib/contrast/agent/protect/policy/applies_command_injection_rule.rb +1 -1
  143. data/lib/contrast/agent/protect/policy/applies_deserialization_rule.rb +1 -1
  144. data/lib/contrast/agent/protect/policy/applies_no_sqli_rule.rb +1 -1
  145. data/lib/contrast/agent/protect/policy/applies_path_traversal_rule.rb +1 -1
  146. data/lib/contrast/agent/protect/policy/applies_sqli_rule.rb +1 -1
  147. data/lib/contrast/agent/protect/policy/applies_xxe_rule.rb +1 -1
  148. data/lib/contrast/agent/protect/policy/policy.rb +1 -1
  149. data/lib/contrast/agent/protect/policy/rule_applicator.rb +1 -1
  150. data/lib/contrast/agent/protect/policy/trigger_node.rb +1 -1
  151. data/lib/contrast/agent/protect/rule/base.rb +29 -2
  152. data/lib/contrast/agent/protect/rule/base_service.rb +11 -2
  153. data/lib/contrast/agent/protect/rule/cmd_injection.rb +3 -1
  154. data/lib/contrast/agent/protect/rule/default_scanner.rb +1 -1
  155. data/lib/contrast/agent/protect/rule/deserialization.rb +7 -1
  156. data/lib/contrast/agent/protect/rule/http_method_tampering.rb +6 -2
  157. data/lib/contrast/agent/protect/rule/no_sqli/mongo_no_sql_scanner.rb +1 -1
  158. data/lib/contrast/agent/protect/rule/no_sqli.rb +2 -1
  159. data/lib/contrast/agent/protect/rule/path_traversal.rb +2 -1
  160. data/lib/contrast/agent/protect/rule/sql_sample_builder.rb +1 -1
  161. data/lib/contrast/agent/protect/rule/sqli/default_sql_scanner.rb +1 -1
  162. data/lib/contrast/agent/protect/rule/sqli/mysql_sql_scanner.rb +1 -1
  163. data/lib/contrast/agent/protect/rule/sqli/postgres_sql_scanner.rb +2 -2
  164. data/lib/contrast/agent/protect/rule/sqli/sqli_input_classification.rb +124 -0
  165. data/lib/contrast/agent/protect/rule/sqli/sqli_worth_watching.rb +121 -0
  166. data/lib/contrast/agent/protect/rule/sqli/sqlite_sql_scanner.rb +1 -1
  167. data/lib/contrast/agent/protect/rule/sqli.rb +34 -1
  168. data/lib/contrast/agent/protect/rule/unsafe_file_upload.rb +1 -1
  169. data/lib/contrast/agent/protect/rule/xss.rb +1 -1
  170. data/lib/contrast/agent/protect/rule/xxe/entity_wrapper.rb +1 -1
  171. data/lib/contrast/agent/protect/rule/xxe.rb +5 -1
  172. data/lib/contrast/agent/protect/rule.rb +1 -1
  173. data/lib/contrast/agent/reaction_processor.rb +1 -1
  174. data/lib/contrast/agent/reporting/input_analysis/input_analysis.rb +44 -0
  175. data/lib/contrast/agent/reporting/input_analysis/input_analysis_result.rb +115 -0
  176. data/lib/contrast/agent/reporting/input_analysis/input_type.rb +44 -0
  177. data/lib/contrast/agent/reporting/input_analysis/score_level.rb +21 -0
  178. data/lib/contrast/agent/reporting/report.rb +8 -1
  179. data/lib/contrast/agent/reporting/reporter.rb +27 -47
  180. data/lib/contrast/agent/reporting/reporting_events/application_inventory.rb +49 -0
  181. data/lib/contrast/agent/reporting/reporting_events/application_update.rb +82 -0
  182. data/lib/contrast/agent/reporting/reporting_events/architecture_component.rb +80 -0
  183. data/lib/contrast/agent/reporting/reporting_events/discovered_route.rb +59 -0
  184. data/lib/contrast/agent/reporting/reporting_events/finding.rb +181 -43
  185. data/lib/contrast/agent/reporting/reporting_events/finding_event.rb +293 -0
  186. data/lib/contrast/agent/reporting/reporting_events/finding_event_object.rb +94 -0
  187. data/lib/contrast/agent/reporting/reporting_events/finding_event_parent_object.rb +39 -0
  188. data/lib/contrast/agent/reporting/reporting_events/finding_event_property.rb +40 -0
  189. data/lib/contrast/agent/reporting/reporting_events/finding_event_signature.rb +110 -0
  190. data/lib/contrast/agent/reporting/reporting_events/finding_event_source.rb +61 -0
  191. data/lib/contrast/agent/reporting/reporting_events/finding_event_stack.rb +71 -0
  192. data/lib/contrast/agent/reporting/reporting_events/finding_event_taint_range.rb +60 -0
  193. data/lib/contrast/agent/reporting/reporting_events/finding_request.rb +94 -0
  194. data/lib/contrast/agent/reporting/reporting_events/library_discovery.rb +93 -0
  195. data/lib/contrast/agent/reporting/reporting_events/library_usage_observation.rb +50 -0
  196. data/lib/contrast/agent/reporting/reporting_events/observed_library_usage.rb +54 -0
  197. data/lib/contrast/agent/reporting/reporting_events/observed_route.rb +66 -0
  198. data/lib/contrast/agent/reporting/reporting_events/poll.rb +29 -0
  199. data/lib/contrast/agent/reporting/reporting_events/preflight.rb +20 -6
  200. data/lib/contrast/agent/reporting/reporting_events/preflight_message.rb +36 -17
  201. data/lib/contrast/agent/reporting/reporting_events/reporting_event.rb +29 -18
  202. data/lib/contrast/agent/reporting/reporting_events/route_coverage.rb +76 -0
  203. data/lib/contrast/agent/reporting/reporting_events/route_discovery.rb +67 -0
  204. data/lib/contrast/agent/reporting/reporting_events/route_discovery_observation.rb +65 -0
  205. data/lib/contrast/agent/reporting/reporting_events/server_activity.rb +52 -0
  206. data/lib/contrast/agent/reporting/reporting_events/trace_event_source.rb +30 -0
  207. data/lib/contrast/agent/reporting/reporting_utilities/audit.rb +32 -15
  208. data/lib/contrast/agent/reporting/reporting_utilities/dtm_message.rb +67 -0
  209. data/lib/contrast/agent/reporting/reporting_utilities/endpoints.rb +164 -0
  210. data/lib/contrast/agent/reporting/reporting_utilities/headers.rb +55 -0
  211. data/lib/contrast/agent/reporting/reporting_utilities/reporter_client.rb +75 -156
  212. data/lib/contrast/agent/reporting/reporting_utilities/reporter_client_utils.rb +162 -0
  213. data/lib/contrast/agent/reporting/reporting_utilities/reporting_storage.rb +1 -1
  214. data/lib/contrast/agent/reporting/reporting_utilities/response.rb +30 -0
  215. data/lib/contrast/agent/reporting/reporting_utilities/response_handler.rb +57 -0
  216. data/lib/contrast/agent/reporting/reporting_utilities/response_handler_utils.rb +208 -0
  217. data/lib/contrast/agent/reporting/settings/application_settings.rb +67 -0
  218. data/lib/contrast/agent/reporting/settings/assess.rb +45 -0
  219. data/lib/contrast/agent/reporting/settings/assess_server_feature.rb +136 -0
  220. data/lib/contrast/agent/reporting/settings/exclusions.rb +123 -0
  221. data/lib/contrast/agent/reporting/settings/protect.rb +89 -0
  222. data/lib/contrast/agent/reporting/settings/protect_server_feature.rb +243 -0
  223. data/lib/contrast/agent/reporting/settings/reaction.rb +30 -0
  224. data/lib/contrast/agent/reporting/settings/server_features.rb +78 -0
  225. data/lib/contrast/agent/request.rb +44 -3
  226. data/lib/contrast/agent/request_context.rb +25 -7
  227. data/lib/contrast/agent/request_context_extend.rb +109 -7
  228. data/lib/contrast/agent/request_handler.rb +41 -5
  229. data/lib/contrast/agent/response.rb +23 -15
  230. data/lib/contrast/agent/rule_set.rb +1 -1
  231. data/lib/contrast/agent/scope.rb +103 -108
  232. data/lib/contrast/agent/service_heartbeat.rb +46 -3
  233. data/lib/contrast/agent/startup_metrics_telemetry_event.rb +34 -7
  234. data/lib/contrast/agent/static_analysis.rb +13 -3
  235. data/lib/contrast/agent/telemetry.rb +1 -1
  236. data/lib/contrast/agent/telemetry_event.rb +1 -1
  237. data/lib/contrast/agent/thread.rb +1 -1
  238. data/lib/contrast/agent/thread_watcher.rb +3 -3
  239. data/lib/contrast/agent/tracepoint_hook.rb +1 -4
  240. data/lib/contrast/agent/version.rb +2 -2
  241. data/lib/contrast/agent/worker_thread.rb +1 -1
  242. data/lib/contrast/agent.rb +4 -4
  243. data/lib/contrast/api/communication/connection_status.rb +1 -1
  244. data/lib/contrast/api/communication/messaging_queue.rb +4 -4
  245. data/lib/contrast/api/communication/response_processor.rb +9 -5
  246. data/lib/contrast/api/communication/service_lifecycle.rb +1 -1
  247. data/lib/contrast/api/communication/socket.rb +1 -1
  248. data/lib/contrast/api/communication/socket_client.rb +4 -1
  249. data/lib/contrast/api/communication/speedracer.rb +1 -1
  250. data/lib/contrast/api/communication/tcp_socket.rb +1 -1
  251. data/lib/contrast/api/communication/unix_socket.rb +1 -1
  252. data/lib/contrast/api/communication.rb +1 -1
  253. data/lib/contrast/api/decorators/address.rb +1 -1
  254. data/lib/contrast/api/decorators/agent_startup.rb +1 -1
  255. data/lib/contrast/api/decorators/application_settings.rb +1 -1
  256. data/lib/contrast/api/decorators/application_startup.rb +1 -1
  257. data/lib/contrast/api/decorators/application_update.rb +1 -1
  258. data/lib/contrast/api/decorators/architecture_component.rb +36 -0
  259. data/lib/contrast/api/decorators/bot_blocker.rb +37 -0
  260. data/lib/contrast/api/decorators/finding.rb +1 -17
  261. data/lib/contrast/api/decorators/http_request.rb +3 -2
  262. data/lib/contrast/api/decorators/input_analysis.rb +1 -1
  263. data/lib/contrast/api/decorators/instrumentation_mode.rb +1 -1
  264. data/lib/contrast/api/decorators/ip_denylist.rb +37 -0
  265. data/lib/contrast/api/decorators/library.rb +1 -1
  266. data/lib/contrast/api/decorators/library_usage_update.rb +1 -1
  267. data/lib/contrast/api/decorators/message.rb +1 -1
  268. data/lib/contrast/api/decorators/rasp_rule_sample.rb +30 -1
  269. data/lib/contrast/api/decorators/route_coverage.rb +1 -1
  270. data/lib/contrast/api/decorators/server_features.rb +1 -1
  271. data/lib/contrast/api/decorators/trace_event.rb +1 -1
  272. data/lib/contrast/api/decorators/trace_event_object.rb +1 -1
  273. data/lib/contrast/api/decorators/trace_event_signature.rb +1 -1
  274. data/lib/contrast/api/decorators/trace_taint_range.rb +1 -1
  275. data/lib/contrast/api/decorators/trace_taint_range_tags.rb +1 -1
  276. data/lib/contrast/api/decorators/user_input.rb +12 -2
  277. data/lib/contrast/api/decorators/virtual_patch.rb +34 -0
  278. data/lib/contrast/api/decorators.rb +2 -1
  279. data/lib/contrast/api.rb +1 -1
  280. data/lib/contrast/components/agent.rb +5 -24
  281. data/lib/contrast/components/api.rb +18 -9
  282. data/lib/contrast/components/app_context.rb +2 -1
  283. data/lib/contrast/components/app_context_extend.rb +1 -1
  284. data/lib/contrast/components/assess.rb +12 -8
  285. data/lib/contrast/components/base.rb +1 -1
  286. data/lib/contrast/components/config.rb +30 -15
  287. data/lib/contrast/components/contrast_service.rb +1 -1
  288. data/lib/contrast/components/heap_dump.rb +1 -1
  289. data/lib/contrast/components/inventory.rb +5 -1
  290. data/lib/contrast/components/logger.rb +6 -1
  291. data/lib/contrast/components/protect.rb +10 -4
  292. data/lib/contrast/components/sampling.rb +1 -1
  293. data/lib/contrast/components/scope.rb +99 -92
  294. data/lib/contrast/components/settings.rb +25 -12
  295. data/lib/contrast/config/agent_configuration.rb +59 -13
  296. data/lib/contrast/config/api_configuration.rb +101 -13
  297. data/lib/contrast/config/api_proxy_configuration.rb +56 -4
  298. data/lib/contrast/config/application_configuration.rb +115 -16
  299. data/lib/contrast/config/assess_configuration.rb +107 -13
  300. data/lib/contrast/config/assess_rules_configuration.rb +45 -4
  301. data/lib/contrast/config/base_configuration.rb +2 -1
  302. data/lib/contrast/config/certification_configuration.rb +75 -4
  303. data/lib/contrast/config/env_variables.rb +1 -1
  304. data/lib/contrast/config/exception_configuration.rb +62 -4
  305. data/lib/contrast/config/heap_dump_configuration.rb +102 -18
  306. data/lib/contrast/config/inventory_configuration.rb +65 -4
  307. data/lib/contrast/config/logger_configuration.rb +47 -4
  308. data/lib/contrast/config/protect_configuration.rb +1 -1
  309. data/lib/contrast/config/protect_rule_configuration.rb +37 -10
  310. data/lib/contrast/config/protect_rules_configuration.rb +121 -18
  311. data/lib/contrast/config/request_audit_configuration.rb +69 -4
  312. data/lib/contrast/config/root_configuration.rb +1 -1
  313. data/lib/contrast/config/ruby_configuration.rb +97 -20
  314. data/lib/contrast/config/sampling_configuration.rb +77 -11
  315. data/lib/contrast/config/server_configuration.rb +57 -12
  316. data/lib/contrast/config/service_configuration.rb +1 -1
  317. data/lib/contrast/config.rb +1 -1
  318. data/lib/contrast/configuration.rb +7 -4
  319. data/lib/contrast/extension/assess/array.rb +4 -2
  320. data/lib/contrast/extension/assess/erb.rb +32 -5
  321. data/lib/contrast/extension/assess/eval_trigger.rb +3 -1
  322. data/lib/contrast/extension/assess/exec_trigger.rb +2 -1
  323. data/lib/contrast/extension/assess/fiber.rb +6 -3
  324. data/lib/contrast/extension/assess/hash.rb +1 -1
  325. data/lib/contrast/extension/assess/kernel.rb +8 -3
  326. data/lib/contrast/extension/assess/marshal.rb +6 -2
  327. data/lib/contrast/extension/assess/regexp.rb +8 -2
  328. data/lib/contrast/extension/assess/string.rb +8 -2
  329. data/lib/contrast/extension/assess.rb +1 -1
  330. data/lib/contrast/extension/delegator.rb +1 -1
  331. data/lib/contrast/extension/extension.rb +2 -4
  332. data/lib/contrast/extension/inventory.rb +1 -1
  333. data/lib/contrast/extension/module.rb +1 -1
  334. data/lib/contrast/extension/protect/psych.rb +1 -1
  335. data/lib/contrast/extension/protect.rb +1 -1
  336. data/lib/contrast/extension/thread.rb +32 -13
  337. data/lib/contrast/framework/base_support.rb +5 -1
  338. data/lib/contrast/framework/grape/support.rb +25 -1
  339. data/lib/contrast/framework/manager.rb +26 -5
  340. data/lib/contrast/framework/manager_extend.rb +1 -1
  341. data/lib/contrast/framework/platform_version.rb +1 -1
  342. data/lib/contrast/framework/rack/patch/session_cookie.rb +1 -1
  343. data/lib/contrast/framework/rack/patch/support.rb +1 -1
  344. data/lib/contrast/framework/rack/support.rb +1 -1
  345. data/lib/contrast/framework/rails/patch/action_controller_live_buffer.rb +1 -1
  346. data/lib/contrast/framework/rails/patch/assess_configuration.rb +1 -1
  347. data/lib/contrast/framework/rails/patch/rails_application_configuration.rb +1 -1
  348. data/lib/contrast/framework/rails/patch/support.rb +1 -1
  349. data/lib/contrast/framework/rails/railtie.rb +1 -1
  350. data/lib/contrast/framework/rails/support.rb +46 -2
  351. data/lib/contrast/framework/sinatra/support.rb +24 -2
  352. data/lib/contrast/funchook/funchook.rb +21 -18
  353. data/lib/contrast/logger/application.rb +1 -1
  354. data/lib/contrast/logger/cef_log.rb +151 -0
  355. data/lib/contrast/logger/format.rb +1 -1
  356. data/lib/contrast/logger/log.rb +1 -1
  357. data/lib/contrast/logger/request.rb +1 -1
  358. data/lib/contrast/logger/time.rb +1 -1
  359. data/lib/contrast/security_exception.rb +1 -1
  360. data/lib/contrast/tasks/config.rb +1 -1
  361. data/lib/contrast/tasks/service.rb +1 -1
  362. data/lib/contrast/utils/assess/propagation_method_utils.rb +1 -1
  363. data/lib/contrast/utils/assess/property/tagged_utils.rb +1 -1
  364. data/lib/contrast/utils/assess/sampling_util.rb +4 -4
  365. data/lib/contrast/utils/assess/source_method_utils.rb +1 -1
  366. data/lib/contrast/utils/assess/split_utils.rb +23 -0
  367. data/lib/contrast/utils/assess/tracking_util.rb +1 -1
  368. data/lib/contrast/utils/assess/trigger_method_utils.rb +3 -2
  369. data/lib/contrast/utils/class_util.rb +1 -1
  370. data/lib/contrast/utils/duck_utils.rb +1 -1
  371. data/lib/contrast/utils/env_configuration_item.rb +2 -2
  372. data/lib/contrast/utils/exclude_key.rb +1 -1
  373. data/lib/contrast/utils/findings.rb +5 -2
  374. data/lib/contrast/utils/hash_digest.rb +44 -6
  375. data/lib/contrast/utils/hash_digest_extend.rb +44 -1
  376. data/lib/contrast/utils/head_dump_utils_extend.rb +1 -1
  377. data/lib/contrast/utils/heap_dump_util.rb +1 -1
  378. data/lib/contrast/utils/invalid_configuration_util.rb +6 -5
  379. data/lib/contrast/utils/io_util.rb +1 -1
  380. data/lib/contrast/utils/job_servers_running.rb +1 -1
  381. data/lib/contrast/utils/log_utils.rb +115 -1
  382. data/lib/contrast/utils/lru_cache.rb +1 -1
  383. data/lib/contrast/utils/metrics_hash.rb +2 -2
  384. data/lib/contrast/utils/middleware_utils.rb +7 -8
  385. data/lib/contrast/utils/net_http_base.rb +26 -16
  386. data/lib/contrast/utils/object_share.rb +1 -6
  387. data/lib/contrast/utils/os.rb +9 -5
  388. data/lib/contrast/utils/patching/policy/patch_utils.rb +62 -102
  389. data/lib/contrast/utils/patching/policy/patcher_utils.rb +1 -1
  390. data/lib/contrast/utils/preflight_util.rb +1 -1
  391. data/lib/contrast/utils/request_utils.rb +9 -1
  392. data/lib/contrast/utils/resource_loader.rb +1 -1
  393. data/lib/contrast/utils/response_utils.rb +1 -1
  394. data/lib/contrast/utils/sha256_builder.rb +1 -1
  395. data/lib/contrast/utils/stack_trace_utils.rb +1 -1
  396. data/lib/contrast/utils/string_utils.rb +69 -67
  397. data/lib/contrast/utils/tag_util.rb +2 -1
  398. data/lib/contrast/utils/telemetry.rb +1 -1
  399. data/lib/contrast/utils/telemetry_client.rb +1 -1
  400. data/lib/contrast/utils/telemetry_identifier.rb +1 -1
  401. data/lib/contrast/utils/thread_tracker.rb +1 -1
  402. data/lib/contrast/utils/timer.rb +1 -1
  403. data/lib/contrast-agent.rb +1 -1
  404. data/lib/contrast.rb +5 -4
  405. data/resources/assess/policy.json +10 -0
  406. data/ruby-agent.gemspec +4 -5
  407. data/service_executables/VERSION +1 -1
  408. data/service_executables/linux/contrast-service +0 -0
  409. data/service_executables/mac/contrast-service +0 -0
  410. metadata +96 -40
  411. data/ext/cs__assess_active_record_named/cs__active_record_named.c +0 -46
  412. data/ext/cs__assess_active_record_named/cs__active_record_named.h +0 -11
  413. data/lib/contrast/agent/assess/policy/rewriter_patch.rb +0 -95
  414. data/lib/contrast/agent/class_reopener.rb +0 -258
  415. data/lib/contrast/agent/rewriter.rb +0 -259
  416. data/lib/contrast/extension/kernel.rb +0 -54
  417. data/lib/contrast/framework/rails/rewrite/action_controller_railties_helper_inherited.rb +0 -37
  418. data/lib/contrast/framework/rails/rewrite/active_record_attribute_methods_read.rb +0 -41
  419. data/lib/contrast/framework/rails/rewrite/active_record_named.rb +0 -75
  420. data/lib/contrast/framework/rails/rewrite/active_record_time_zone_inherited.rb +0 -35
  421. data/lib/contrast/utils/ruby_ast_rewriter.rb +0 -82
  422. data/lib/contrast/utils/substitution_utils.rb +0 -167
@@ -0,0 +1,88 @@
1
+ #include <ruby.h>
2
+
3
+ /* Calls to Contrast modules and classes */
4
+ VALUE scope_interface;
5
+ VALUE scope_inst_methods, scope_mod, scope_klass;
6
+
7
+ /* IVs */
8
+ static VALUE rb_iv_cntr_scope;
9
+ static VALUE rb_iv_dslr_scope;
10
+ static VALUE rb_iv_split_scope;
11
+
12
+ /* Constants */
13
+ static VALUE rb_const_ec;
14
+ static VALUE rb_const_mon;
15
+ static VALUE rb_const_ec_keys;
16
+
17
+ /* Symbols */
18
+ static VALUE rb_sym_scope_mod;
19
+ static VALUE rb_sym_contrast;
20
+ static VALUE rb_sym_deserialization;
21
+ static VALUE rb_sym_split;
22
+
23
+ /* methods names - only reusable ones */
24
+ VALUE rb_method_name_init;
25
+ VALUE rb_method_name_in_scope;
26
+ VALUE rb_method_name_enter_scope;
27
+ VALUE rb_method_name_exit_scope;
28
+ VALUE rb_method_name_scope_for_current_ec;
29
+ VALUE rb_method_name_in_cntr_scope;
30
+ VALUE rb_method_name_enter_cntr_scope;
31
+ VALUE rb_method_name_exit_cntr_scope;
32
+ VALUE rb_method_name_in_dslr_scope;
33
+ VALUE rb_method_name_enter_dslr_scope;
34
+ VALUE rb_method_name_exit_dslr_scope;
35
+ VALUE rb_method_name_in_split_scope;
36
+ VALUE rb_method_name_enter_split_scope;
37
+ VALUE rb_method_name_exit_split_scope;
38
+ VALUE rb_method_name_split_scope_depth;
39
+
40
+ /* Scope class */
41
+ VALUE contrast_scope_klass_init(VALUE self, VALUE args);
42
+ VALUE in_cntr_scope(VALUE self, VALUE args);
43
+ VALUE enter_cntr_scope(VALUE self, VALUE args);
44
+ VALUE exit_cntr_scope(VALUE self, VALUE args);
45
+ VALUE in_split_scope(VALUE self, VALUE args);
46
+ VALUE enter_split_scope(VALUE self, VALUE args);
47
+ VALUE exit_split_scope(VALUE self, VALUE args);
48
+ VALUE split_scope_depth(VALUE self, VALUE args);
49
+ VALUE in_dsrl_scope_scope(VALUE self, VALUE args);
50
+ VALUE enter_dsrl_scope(VALUE self, VALUE args);
51
+ VALUE exit_dsrl_scope(VALUE self, VALUE args);
52
+ VALUE scope_klass_in_scope(VALUE self, VALUE method_scope_sym);
53
+ VALUE scope_klass_enter_scope(VALUE self, VALUE method_scope_sym);
54
+ VALUE scope_klass_exit_scope(VALUE self, VALUE method_scope_sym);
55
+
56
+ /* Scope interface */
57
+ VALUE contrast_scope_interface_init(VALUE self, VALUE args);
58
+ VALUE contrast_scope_for_current_ec(VALUE self, VALUE args);
59
+
60
+ /* Scope instance methods */
61
+ VALUE inst_methods_in_cntr_scope(VALUE self, VALUE args);
62
+ VALUE inst_methods_enter_cntr_scope(VALUE self, VALUE args);
63
+ VALUE inst_methods_exit_cntr_scope(VALUE self, VALUE args);
64
+ VALUE inst_methods_in_split_scope(VALUE self, VALUE args);
65
+ VALUE inst_methods_enter_split_scope(VALUE self, VALUE args);
66
+ VALUE inst_methods_exit_split_scope(VALUE self, VALUE args);
67
+ VALUE inst_methods_split_scope_depth(VALUE self, VALUE args);
68
+ VALUE inst_methods_in_dsrl_scope(VALUE self, VALUE args);
69
+ VALUE inst_methods_enter_dsrl_scope(VALUE self, VALUE args);
70
+ VALUE inst_methods_exit_dsrl_scope(VALUE self, VALUE args);
71
+ VALUE inst_methods_in_scope(VALUE self, VALUE method_scope_sym);
72
+ VALUE inst_methods_enter_scope(VALUE self, VALUE method_scope_sym);
73
+ VALUE inst_methods_exit_scope(VALUE self, VALUE method_scope_sym);
74
+
75
+ /* Scope components module */
76
+ VALUE scope_mod_sweep_dead_ecs(VALUE self, VALUE args);
77
+ VALUE inst_methods_enter_method_scope(VALUE self, VALUE scopes_to_enter);
78
+ VALUE inst_methods_exit_method_scope(VALUE self, VALUE scopes_to_exit);
79
+
80
+ /* Helpers */
81
+ VALUE is_in_scope(int scope);
82
+ VALUE get_ec();
83
+ VALUE rb_new_c_scope();
84
+ void rb_raise_scope_no_method_err(const VALUE method_scope_sym);
85
+ int scope_increase(int scope);
86
+ int scope_decrease(int scope);
87
+
88
+ void Init_cs__scope(void);
@@ -1,4 +1,4 @@
1
- # Copyright (c) 2021 Contrast Security, Inc. See https://www.contrastsecurity.com/enduser-terms-0317a for more details.
1
+ # Copyright (c) 2022 Contrast Security, Inc. See https://www.contrastsecurity.com/enduser-terms-0317a for more details.
2
2
  # frozen_string_literal: true
3
3
 
4
4
  $TO_MAKE = File.basename(__dir__)
@@ -1,4 +1,4 @@
1
- # Copyright (c) 2021 Contrast Security, Inc. See https://www.contrastsecurity.com/enduser-terms-0317a for more details.
1
+ # Copyright (c) 2022 Contrast Security, Inc. See https://www.contrastsecurity.com/enduser-terms-0317a for more details.
2
2
  # frozen_string_literal: true
3
3
 
4
4
  require 'mkmf'
@@ -1,4 +1,4 @@
1
- # Copyright (c) 2021 Contrast Security, Inc. See https://www.contrastsecurity.com/enduser-terms-0317a for more details.
1
+ # Copyright (c) 2022 Contrast Security, Inc. See https://www.contrastsecurity.com/enduser-terms-0317a for more details.
2
2
  # frozen_string_literal: true
3
3
 
4
4
  require 'contrast/utils/assess/tracking_util'
@@ -15,20 +15,27 @@ module Contrast
15
15
  module Assess
16
16
  # This class holds the data about an event in the application We'll use it to build an event that TeamServer can
17
17
  # consume if the object to which this event belongs ends in a trigger.
18
- #
19
- # @attr_reader event_id [Integer] the atomic id of this event
20
- # @attr_reader policy_node [Contrast::Agent::Assess::Policy::PolicyNode] the node that governs this event.
21
- # @attr_reader stack_trace [Array<String>] the execution stack at the time the method for this event was invoked
22
- # @attr_reader time [Integer] the time, in epoch ms, when this event was created
23
- # @attr_reader thread [Integer] the object id of the thread on which this event was generated
24
- # @attr_reader object [Contrast::Agent::Assess::ContrastObject] the safe representation of the Object on which
25
- # the method was invoked
26
- # @attr_reader ret [Contrast::Agent::Assess::ContrastObject] the safe representation of the Return of the invoked
27
- # method
28
- # @attr_reader args [Array<Contrast::Agent::Assess::ContrastObject>] the safe representation of the Arguments
29
- # with which the method was invoked
30
18
  class ContrastEvent
31
- attr_reader :event_id, :policy_node, :stack_trace, :time, :thread, :object, :ret, :args, :tags
19
+ # @return [Integer] the atomic id of this event
20
+ attr_reader :event_id
21
+ # @return [Contrast::Agent::Assess::Policy::PolicyNode] the node that governs this event.
22
+ attr_reader :policy_node
23
+ # @return [Array<String>] the execution stack at the time the method for this event was invoked
24
+ attr_reader :stack_trace
25
+ # @return [Integer] the time, in epoch ms, when this event was created
26
+ attr_reader :time
27
+ # @return [Integer] the object id of the thread on which this event was generated
28
+ attr_reader :thread
29
+ # @return [Contrast::Agent::Assess::ContrastObject] the safe representation of the Object on which the method
30
+ # was invoked
31
+ attr_reader :object
32
+ # @return [Contrast::Agent::Assess::ContrastObject] the safe representation of the Return of the invoked method
33
+ attr_reader :ret
34
+ # @return [Array<Contrast::Agent::Assess::ContrastObject, nil>] the safe representation of the Arguments with
35
+ # which the method was invoked
36
+ attr_reader :args
37
+ # @return [Hash<Contrast::Agent::Assess::Tag>]
38
+ attr_reader :tags
32
39
 
33
40
  # We need this to track the parent id's of events to build up a flow chart of the finding
34
41
  @atomic_id = 0
@@ -42,21 +49,17 @@ module Contrast
42
49
  end
43
50
  end
44
51
 
45
- # @param policy_node [Contrast::Agent::Assess::Policy::PolicyNode] the node that governs this event.
46
- # @param tagged [Object] the Target to which this event pertains.
47
- # @param object [Object] the Object on which the method was invoked
48
- # @param ret [Object] the Return of the invoked method
49
- # @param args [Array<Object>] the Arguments with which the method was invoked
50
- def initialize policy_node, tagged, object, ret, args
51
- @policy_node = policy_node
52
+ # @param event_data [Contrast::Agent::Assess::Events::EventData]
53
+ def initialize event_data
54
+ @policy_node = event_data.policy_node
52
55
  @time = Contrast::Utils::Timer.now_ms
53
56
  @thread = Thread.current.object_id
54
57
 
55
58
  # These methods rely on the above being set. Don't move them!
56
59
  @event_id = Contrast::Agent::Assess::ContrastEvent.next_atomic_id
57
- @tags = Contrast::Agent::Assess::Tracker.properties(tagged)&.get_tags
58
- find_parent_events!(policy_node, object, ret, args)
59
- snapshot!(object, ret, args)
60
+ @tags = Contrast::Agent::Assess::Tracker.properties(event_data.tagged)&.get_tags
61
+ find_parent_events!(event_data.policy_node, event_data.object, event_data.ret, event_data.args)
62
+ snapshot!(event_data.object, event_data.ret, event_data.args)
60
63
  capture_stacktrace!
61
64
  end
62
65
 
@@ -1,4 +1,4 @@
1
- # Copyright (c) 2021 Contrast Security, Inc. See https://www.contrastsecurity.com/enduser-terms-0317a for more details.
1
+ # Copyright (c) 2022 Contrast Security, Inc. See https://www.contrastsecurity.com/enduser-terms-0317a for more details.
2
2
  # frozen_string_literal: true
3
3
 
4
4
  require 'contrast/utils/class_util'
@@ -42,8 +42,11 @@ module Contrast
42
42
  end
43
43
  end
44
44
 
45
+ # Is the object this represents tracked or not?
46
+ #
47
+ # @return [Boolean]
45
48
  def tracked?
46
- tags&.any?
49
+ !!tags&.any?
47
50
  end
48
51
  end
49
52
  end
@@ -0,0 +1,30 @@
1
+ # Copyright (c) 2022 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 Events
8
+ # this class will gather and build event
9
+ class EventData
10
+ attr_reader :policy_node, :tagged, :object, :ret, :args
11
+
12
+ # Group event data together
13
+ #
14
+ # @param policy_node [Contrast::Agent::Assess::Policy::PolicyNode, nil] the node that governs this event
15
+ # @param tagged [Object, nil] the Target to which this event pertains
16
+ # @param object [Object, nil] the Object on which the method was invoked
17
+ # @param ret [Object, nil] the Return of the invoked method
18
+ # @param args [Array<Object>, nil] the Arguments with which the method was invoked
19
+ def initialize policy_node, tagged, object, ret, args
20
+ @policy_node = policy_node
21
+ @tagged = tagged
22
+ @object = object
23
+ @ret = ret
24
+ @args = args
25
+ end
26
+ end
27
+ end
28
+ end
29
+ end
30
+ end
@@ -1,8 +1,9 @@
1
- # Copyright (c) 2021 Contrast Security, Inc. See https://www.contrastsecurity.com/enduser-terms-0317a for more details.
1
+ # Copyright (c) 2022 Contrast Security, Inc. See https://www.contrastsecurity.com/enduser-terms-0317a for more details.
2
2
  # frozen_string_literal: true
3
3
 
4
4
  require 'contrast/agent/assess/contrast_event'
5
5
  require 'contrast/agent/assess/events/source_event'
6
+ require 'contrast/agent/assess/events/event_data'
6
7
 
7
8
  module Contrast
8
9
  module Agent
@@ -10,13 +11,20 @@ module Contrast
10
11
  module Events
11
12
  # This module returns the event type appropriate to the given Node
12
13
  module EventFactory
13
- def self.build policy_node, tagged, object, ret, args, source_type = nil, source_name = nil
14
- case policy_node
14
+ # This method returns the event type appropriate to the given Node
15
+ #
16
+ # @param event_data [Contrast::Agent::Assess::Events::EventData]
17
+ # @param source_type [String] the type of this source, from the
18
+ # source_node, or a KEY_TYPE if invoked for a map,
19
+ # @param source_name [String, nil] the name of this source, i.e.
20
+ # the key used to accessed if from a map or nil if a type like,
21
+ # @return [Contrast::Agent::Assess::Events::SourceEvent, Contrast::Agent::Assess::ContrastEvent]
22
+ def self.build event_data, source_type = nil, source_name = nil
23
+ case event_data.policy_node
15
24
  when Contrast::Agent::Assess::Policy::SourceNode
16
- Contrast::Agent::Assess::Events::SourceEvent.new(policy_node, tagged, object, ret, args, source_type,
17
- source_name)
25
+ Contrast::Agent::Assess::Events::SourceEvent.new(event_data, source_type, source_name)
18
26
  when Contrast::Agent::Assess::Policy::PolicyNode
19
- Contrast::Agent::Assess::ContrastEvent.new(policy_node, tagged, object, ret, args)
27
+ Contrast::Agent::Assess::ContrastEvent.new(event_data)
20
28
  end
21
29
  end
22
30
  end
@@ -1,7 +1,8 @@
1
- # Copyright (c) 2021 Contrast Security, Inc. See https://www.contrastsecurity.com/enduser-terms-0317a for more details.
1
+ # Copyright (c) 2022 Contrast Security, Inc. See https://www.contrastsecurity.com/enduser-terms-0317a for more details.
2
2
  # frozen_string_literal: true
3
3
 
4
4
  require 'contrast/agent/assess/contrast_event'
5
+ require 'contrast/agent/reporting/reporting_events/trace_event_source'
5
6
  require 'contrast/utils/string_utils'
6
7
 
7
8
  module Contrast
@@ -19,8 +20,13 @@ module Contrast
19
20
  class SourceEvent < Contrast::Agent::Assess::ContrastEvent
20
21
  attr_reader :request, :source_name, :source_type
21
22
 
22
- def initialize policy_node, tagged, object, ret, args, source_type = nil, source_name = nil
23
- super(policy_node, tagged, object, ret, args)
23
+ # @param event_data [Contrast::Agent::Assess::Events::EventData]
24
+ # @param source_type [String] the type of this source, from the
25
+ # source_node, or a KEY_TYPE if invoked for a map,
26
+ # @param source_name [String, nil] the name of this source, i.e.
27
+ # the key used to accessed if from a map or nil if a type like,
28
+ def initialize event_data, source_type = nil, source_name = nil
29
+ super(event_data)
24
30
  @source_type = source_type
25
31
  @source_name = source_name
26
32
  @request = Contrast::Agent::REQUEST_TRACKER.current&.request
@@ -61,6 +67,19 @@ module Contrast
61
67
  dtm
62
68
  end
63
69
 
70
+ # Probably only for source events, but we'll go
71
+ # with source_type instead. java & .net support source_type
72
+ # in propagation events, so we'll future proof this
73
+ def build_event_source
74
+ # You can have a source w/o a name, but not w/o a type
75
+ return unless source_type
76
+
77
+ trace_event_source = Contrast::Agent::Reporting::TraceEventSource.new
78
+ trace_event_source.type = forced_source_type
79
+ trace_event_source.name = forced_source_name
80
+ trace_event_source
81
+ end
82
+
64
83
  # We have to do a little work to figure out what our TS appropriate
65
84
  # target is. To break this down, the logic is as follows:
66
85
  # 1) I'll set the event's source and target to TS values.
@@ -1,4 +1,4 @@
1
- # Copyright (c) 2021 Contrast Security, Inc. See https://www.contrastsecurity.com/enduser-terms-0317a for more details.
1
+ # Copyright (c) 2022 Contrast Security, Inc. See https://www.contrastsecurity.com/enduser-terms-0317a for more details.
2
2
  # frozen_string_literal: true
3
3
 
4
4
  require 'contrast/agent/assess/tracker'
@@ -1,4 +1,4 @@
1
- # Copyright (c) 2021 Contrast Security, Inc. See https://www.contrastsecurity.com/enduser-terms-0317a for more details.
1
+ # Copyright (c) 2022 Contrast Security, Inc. See https://www.contrastsecurity.com/enduser-terms-0317a for more details.
2
2
  # frozen_string_literal: true
3
3
 
4
4
  require 'contrast/utils/duck_utils'
@@ -1,4 +1,4 @@
1
- # Copyright (c) 2021 Contrast Security, Inc. See https://www.contrastsecurity.com/enduser-terms-0317a for more details.
1
+ # Copyright (c) 2022 Contrast Security, Inc. See https://www.contrastsecurity.com/enduser-terms-0317a for more details.
2
2
  # frozen_string_literal: true
3
3
 
4
4
  require 'contrast/agent/patching/policy/method_policy'
@@ -90,12 +90,12 @@ module Contrast
90
90
  # @return [Contrast::Agent::Patching::Policy::MethodPolicy] the
91
91
  # policy to apply to the given method
92
92
  def build_source_policy method_name, dynamic_source_node
93
- method_policy = Contrast::Agent::Patching::Policy::MethodPolicy.new
94
- method_policy.method_visibility = :public
95
- method_policy.instance_method = true
96
- method_policy.method_name = method_name
97
- method_policy.source_node = dynamic_source_node
98
- method_policy
93
+ Contrast::Agent::Patching::Policy::MethodPolicy.new({
94
+ method_visibility: :public,
95
+ instance_method: true,
96
+ method_name: method_name,
97
+ source_node: dynamic_source_node
98
+ })
99
99
  end
100
100
 
101
101
  # @param request [Contrast::Agent::Request] the request during
@@ -1,4 +1,4 @@
1
- # Copyright (c) 2021 Contrast Security, Inc. See https://www.contrastsecurity.com/enduser-terms-0317a for more details.
1
+ # Copyright (c) 2022 Contrast Security, Inc. See https://www.contrastsecurity.com/enduser-terms-0317a for more details.
2
2
  # frozen_string_literal: true
3
3
 
4
4
  require 'contrast/agent/assess/policy/policy'
@@ -42,40 +42,6 @@ module Contrast
42
42
  rescue StandardError => e
43
43
  logger.warn('Unable to patch assess during eval', e, module: mod.cs__name)
44
44
  end
45
-
46
- # Exposed so that methods can be dynamically patched on creation at
47
- # runtime, like those generated by
48
- # ActiveRecord::AttributeMethods::Read::ClassMethods#define_method_attribute
49
- CLASS_TYPES = [Contrast::Utils::ObjectShare::CLASS, Contrast::Utils::ObjectShare::MODULE].cs__freeze
50
- def patch_assess_method mod, method_name
51
- # Module.define_method is called a lot in Class and Module. We
52
- # currently do not expect these define_methods to result in methods
53
- # that require patching, so for the sake of performance, we're going
54
- # to skip evaluating them
55
- mod = mod.cs__class unless mod.cs__is_a?(Module)
56
- class_name = mod.cs__class
57
- return if CLASS_TYPES.include?(class_name)
58
- return unless ASSESS.enabled?
59
-
60
- source_nodes = Contrast::Agent::Patching::Policy::ModulePolicy.nodes_for_module(policy.sources,
61
- class_name)
62
- return if source_nodes.empty?
63
-
64
- method_array = []
65
- method_array << method_name
66
- source_nodes.each do |source_node|
67
- next unless source_node.method_name.to_s == method_name
68
-
69
- method_policy =
70
- Contrast::Agent::Patching::Policy::MethodPolicy.new(source_node: source_node,
71
- method_name: source_node.method_name,
72
- method_visibility: source_node.method_visibility,
73
- instance_method: true)
74
- patcher.patch_method(mod, method_array, method_policy)
75
- end
76
- rescue StandardError => e
77
- logger.warn('Unable to patch assess during define_method_attribute', e, module: mod.cs__name)
78
- end
79
45
  end
80
46
  end
81
47
  end
@@ -1,4 +1,4 @@
1
- # Copyright (c) 2021 Contrast Security, Inc. See https://www.contrastsecurity.com/enduser-terms-0317a for more details.
1
+ # Copyright (c) 2022 Contrast Security, Inc. See https://www.contrastsecurity.com/enduser-terms-0317a for more details.
2
2
  # frozen_string_literal: true
3
3
 
4
4
  require 'json'
@@ -1,4 +1,4 @@
1
- # Copyright (c) 2021 Contrast Security, Inc. See https://www.contrastsecurity.com/enduser-terms-0317a for more details.
1
+ # Copyright (c) 2022 Contrast Security, Inc. See https://www.contrastsecurity.com/enduser-terms-0317a for more details.
2
2
  # frozen_string_literal: true
3
3
 
4
4
  require 'contrast/agent/patching/policy/policy_node'
@@ -141,7 +141,7 @@ module Contrast
141
141
 
142
142
  t
143
143
  else
144
- Integer(t[1..-1])
144
+ Integer(t[1..])
145
145
  end
146
146
  end
147
147
  converted
@@ -1,4 +1,4 @@
1
- # Copyright (c) 2021 Contrast Security, Inc. See https://www.contrastsecurity.com/enduser-terms-0317a for more details.
1
+ # Copyright (c) 2022 Contrast Security, Inc. See https://www.contrastsecurity.com/enduser-terms-0317a for more details.
2
2
  # frozen_string_literal: true
3
3
 
4
4
  require 'contrast/utils/object_share'
@@ -1,4 +1,4 @@
1
- # Copyright (c) 2021 Contrast Security, Inc. See https://www.contrastsecurity.com/enduser-terms-0317a for more details.
1
+ # Copyright (c) 2022 Contrast Security, Inc. See https://www.contrastsecurity.com/enduser-terms-0317a for more details.
2
2
  # frozen_string_literal: true
3
3
 
4
4
  require 'contrast/components/logger'
@@ -1,4 +1,4 @@
1
- # Copyright (c) 2021 Contrast Security, Inc. See https://www.contrastsecurity.com/enduser-terms-0317a for more details.
1
+ # Copyright (c) 2022 Contrast Security, Inc. See https://www.contrastsecurity.com/enduser-terms-0317a for more details.
2
2
  # frozen_string_literal: true
3
3
 
4
4
  require 'set'
@@ -8,6 +8,7 @@ require 'contrast/components/logger'
8
8
  require 'contrast/utils/object_share'
9
9
  require 'contrast/utils/sha256_builder'
10
10
  require 'contrast/utils/assess/propagation_method_utils'
11
+ require 'contrast/agent/assess/events/event_data'
11
12
 
12
13
  module Contrast
13
14
  module Agent
@@ -15,6 +16,7 @@ module Contrast
15
16
  module Policy
16
17
  # This class is responsible for the continuation of traces. A Propagator is any method that transforms an
17
18
  # untrusted value. In general, these methods work on the String class or a holder of Strings.
19
+ # rubocop:disable Metrics/ModuleLength
18
20
  module PropagationMethod
19
21
  extend Contrast::Components::Logger::InstanceMethods
20
22
  extend Contrast::Utils::Assess::PropagationMethodUtils
@@ -37,7 +39,8 @@ module Contrast
37
39
  propagation_node = method_policy.propagation_node
38
40
 
39
41
  target = determine_target(propagation_node, ret, object, args)
40
- PropagationMethod.apply_propagator(propagation_node, preshift, target, object, ret, args, block)
42
+ propagation_data = Contrast::Agent::Assess::Events::EventData.new(nil, nil, object, ret, args)
43
+ PropagationMethod.apply_propagator(propagation_node, preshift, target, propagation_data, block)
41
44
  end
42
45
 
43
46
  # I lied above. We had to figure out what the target of the propagation was. Now that we know, we'll
@@ -49,27 +52,33 @@ module Contrast
49
52
  # @param preshift [Contrast::Agent::Assess::PreShift] The capture of the state of the code just prior to
50
53
  # the invocation of the patched method.
51
54
  # @param target [Object] the Target to which to propagate.
52
- # @param object [Object] the Object on which the method was invoked
53
- # @param ret [Object] the Return of the invoked method
54
- # @param args [Array<Object>] the Arguments with which the method was invoked
55
+ # @param propagation_data [Contrast::Agent::Assess::Events::EventData] this will hold the
56
+ # object [Object] the Object on which the method was invoked
57
+ # ret [Object] the Return of the invoked method
58
+ # args [Array<Object>] the Arguments with which the method was invoked
55
59
  # @param block [Block] the Block passed to the original method
56
60
  # @return [Object, nil] the tracked Return or nil if no changes were made; will replace the return of the
57
61
  # original function if not nil
58
- def apply_propagator propagation_node, preshift, target, object, ret, args, block
62
+ def apply_propagator propagation_node, preshift, target, propagation_data, block
59
63
  return unless propagation_possible?(propagation_node, target)
60
64
 
61
65
  if propagation_node.action == DB_WRITE_ACTION
62
- Contrast::Agent::Assess::Policy::Propagator::DatabaseWrite.propagate(propagation_node, preshift, ret)
66
+ Contrast::Agent::Assess::Policy::Propagator::DatabaseWrite.propagate(propagation_node,
67
+ preshift,
68
+ propagation_data.ret)
63
69
  elsif propagation_node.action == CUSTOM_ACTION
64
- Contrast::Agent::Assess::Policy::Propagator::Custom.propagate(propagation_node, preshift, ret, block)
70
+ Contrast::Agent::Assess::Policy::Propagator::Custom.propagate(propagation_node,
71
+ preshift,
72
+ propagation_data.ret,
73
+ block)
65
74
  elsif propagation_node.action == SPLIT_ACTION
66
75
  Contrast::Agent::Assess::Policy::Propagator::Split.propagate(propagation_node, preshift, target)
67
76
  elsif Contrast::Utils::DuckUtils.iterable_hash?(target)
68
- handle_hash_propagation(propagation_node, preshift, target, object, ret, args, block)
77
+ handle_hash_propagation(propagation_node, preshift, target, propagation_data, block)
69
78
  elsif Contrast::Utils::DuckUtils.iterable_enumerable?(target)
70
- handle_enumerable_propagation(propagation_node, preshift, target, object, ret, args, block)
79
+ handle_enumerable_propagation(propagation_node, preshift, target, propagation_data, block)
71
80
  else
72
- handle_cs_properties_propagation(propagation_node, preshift, target, object, ret, args, block)
81
+ handle_cs_properties_propagation(propagation_node, preshift, target, propagation_data, block)
73
82
  end
74
83
  rescue StandardError => e
75
84
  logger.warn('Unable to apply propagation', e, node_id: propagation_node.id)
@@ -90,6 +99,10 @@ module Contrast
90
99
  end
91
100
  end
92
101
 
102
+ def context_available?
103
+ !!Contrast::Agent::REQUEST_TRACKER.current
104
+ end
105
+
93
106
  # If this patcher has tags, remove them from the entire target
94
107
  #
95
108
  # @param propagation_node [Contrast::Agent::Assess::Policy::PropagationNode] the node that governs this
@@ -113,6 +126,7 @@ module Contrast
113
126
  # @return [Boolean]
114
127
  def propagation_possible? propagation_node, target
115
128
  return false unless propagation_node && valid_target?(target, propagation_node)
129
+ return false unless context_available? || Contrast::ASSESS.non_request_tracking?
116
130
  return false unless valid_length?(target, propagation_node.action)
117
131
 
118
132
  true
@@ -135,14 +149,15 @@ module Contrast
135
149
  # @param preshift [Contrast::Agent::Assess::PreShift] The capture of the state of the code just prior to
136
150
  # the invocation of the patched method.
137
151
  # @param target [Object] the Target to which to propagate.
138
- # @param object [Object] the Object on which the method was invoked
139
- # @param ret [Object] the Return of the invoked method
140
- # @param args [Array<Object>] the Arguments with which the method was invoked
152
+ # @param propagation_data [Contrast::Agent::Assess::Events::EventData] this will hold the
153
+ # object [Object] the Object on which the method was invoked
154
+ # ret [Object] the Return of the invoked method
155
+ # args [Array<Object>] the Arguments with which the method was invoked
141
156
  # @param block [Block] the Block passed to the original method
142
- def handle_hash_propagation propagation_node, preshift, target, object, ret, args, block
157
+ def handle_hash_propagation propagation_node, preshift, target, propagation_data, block
143
158
  target.each_pair do |key, value|
144
- apply_propagator(propagation_node, preshift, key, object, ret, args, block)
145
- apply_propagator(propagation_node, preshift, value, object, ret, args, block)
159
+ apply_propagator(propagation_node, preshift, key, propagation_data, block)
160
+ apply_propagator(propagation_node, preshift, value, propagation_data, block)
146
161
  end
147
162
  end
148
163
 
@@ -153,15 +168,16 @@ module Contrast
153
168
  # @param preshift [Contrast::Agent::Assess::PreShift] The capture of the state of the code just prior to
154
169
  # the invocation of the patched method.
155
170
  # @param target [Object] the Target to which to propagate.
156
- # @param object [Object] the Object on which the method was invoked
157
- # @param ret [Object] the Return of the invoked method
158
- # @param args [Array<Object>] the Arguments with which the method was invoked
171
+ # @param propagation_data [Contrast::Agent::Assess::Events::EventData] this will hold the
172
+ # object [Object] the Object on which the method was invoked
173
+ # ret [Object] the Return of the invoked method
174
+ # args [Array<Object>] the Arguments with which the method was invoked
159
175
  # @param block [Block] the Block passed to the original method
160
- def handle_enumerable_propagation propagation_node, preshift, target, object, ret, args, block
176
+ def handle_enumerable_propagation propagation_node, preshift, target, propagation_data, block
161
177
  target.each do |value|
162
178
  next if target == value
163
179
 
164
- apply_propagator(propagation_node, preshift, value, object, ret, args, block)
180
+ apply_propagator(propagation_node, preshift, value, propagation_data, block)
165
181
  end
166
182
  end
167
183
 
@@ -172,11 +188,12 @@ module Contrast
172
188
  # @param preshift [Contrast::Agent::Assess::PreShift] The capture of the state of the code just prior to
173
189
  # the invocation of the patched method.
174
190
  # @param target [Object] the Target to which to propagate.
175
- # @param object [Object] the Object on which the method was invoked
176
- # @param ret [Object] the Return of the invoked method
177
- # @param args [Array<Object>] the Arguments with which the method was invoked
191
+ # @param propagation_data [Contrast::Agent::Assess::Events::EventData] this will hold the
192
+ # object [Object] the Object on which the method was invoked
193
+ # ret [Object] the Return of the invoked method
194
+ # args [Array<Object>] the Arguments with which the method was invoked
178
195
  # @param _block [Block] the Block passed to the original method
179
- def handle_cs_properties_propagation propagation_node, preshift, target, object, ret, args, _block
196
+ def handle_cs_properties_propagation propagation_node, preshift, target, propagation_data, _block
180
197
  return if propagation_node.action == NOOP_ACTION
181
198
  return unless can_propagate?(propagation_node, preshift, target)
182
199
  return unless (propagation_class = find_propagation_class(propagation_node))
@@ -184,7 +201,7 @@ module Contrast
184
201
  restore_frozen_state = false
185
202
  if target.cs__frozen? && !Contrast::Agent::Assess::Tracker.trackable?(target)
186
203
  return unless can_handle_frozen?(propagation_node)
187
- return unless (dup = safe_dup(ret))
204
+ return unless (dup = safe_dup(propagation_data.ret))
188
205
 
189
206
  restore_frozen_state = true
190
207
  ret = dup
@@ -195,6 +212,10 @@ module Contrast
195
212
  return unless Contrast::Agent::Assess::Tracker.trackable?(target)
196
213
  end
197
214
  propagation_class.propagate(propagation_node, preshift, target)
215
+ update_properties restore_frozen_state, propagation_node, target, propagation_data, ret
216
+ end
217
+
218
+ def update_properties restore_frozen_state, propagation_node, target, propagation_data, ret
198
219
  # Once we've propagated, attempt to tag the target if there is a tag(s) to be applied
199
220
  apply_tags(propagation_node, target)
200
221
  # Even though we skipped propagating tags from the source if they were included in untags, the target may
@@ -204,7 +225,12 @@ module Contrast
204
225
  return unless (properties = Contrast::Agent::Assess::Tracker.properties!(target))
205
226
 
206
227
  properties.add_properties(propagation_node.properties)
207
- properties.build_event(propagation_node, target, object, ret, args)
228
+ event_data = Contrast::Agent::Assess::Events::EventData.new(propagation_node,
229
+ target,
230
+ propagation_data.object,
231
+ ret,
232
+ propagation_data.args)
233
+ properties.build_event(event_data)
208
234
  logger.trace('Propagation detected', node_id: propagation_node.id, target_id: target.__id__)
209
235
  restore_frozen_state ? ret : nil
210
236
  end
@@ -235,6 +261,7 @@ module Contrast
235
261
  end
236
262
  end
237
263
  end
264
+ # rubocop:enable Metrics/ModuleLength
238
265
  end
239
266
  end
240
267
  end