contrast-agent 5.2.0 → 6.1.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (228) hide show
  1. checksums.yaml +4 -4
  2. data/ext/cs__assess_array/cs__assess_array.c +7 -0
  3. data/ext/cs__assess_basic_object/cs__assess_basic_object.c +19 -5
  4. data/ext/cs__assess_fiber_track/cs__assess_fiber_track.c +1 -1
  5. data/ext/cs__assess_hash/cs__assess_hash.c +3 -4
  6. data/ext/cs__assess_kernel/cs__assess_kernel.c +1 -2
  7. data/ext/cs__assess_marshal_module/cs__assess_marshal_module.c +26 -12
  8. data/ext/cs__assess_module/cs__assess_module.c +1 -1
  9. data/ext/cs__assess_regexp/cs__assess_regexp.c +15 -2
  10. data/ext/cs__assess_regexp/cs__assess_regexp.h +2 -0
  11. data/ext/cs__assess_string/cs__assess_string.c +21 -1
  12. data/ext/cs__assess_test/cs__assess_test.h +9 -0
  13. data/ext/cs__assess_test/cs__assess_tests.c +22 -0
  14. data/ext/cs__assess_test/extconf.rb +5 -0
  15. data/ext/cs__common/cs__common.c +113 -11
  16. data/ext/cs__common/cs__common.h +29 -5
  17. data/ext/cs__contrast_patch/cs__contrast_patch.c +55 -44
  18. data/ext/cs__os_information/cs__os_information.c +13 -10
  19. data/ext/cs__scope/cs__scope.c +146 -97
  20. data/ext/cs__tests/cs__tests.c +12 -0
  21. data/ext/cs__tests/cs__tests.h +3 -0
  22. data/ext/cs__tests/extconf.rb +5 -0
  23. data/lib/contrast/agent/assess/contrast_object.rb +16 -16
  24. data/lib/contrast/agent/assess/events/source_event.rb +17 -19
  25. data/lib/contrast/agent/assess/finalizers/hash.rb +2 -0
  26. data/lib/contrast/agent/assess/policy/policy_node.rb +50 -27
  27. data/lib/contrast/agent/assess/policy/policy_node_utils.rb +51 -0
  28. data/lib/contrast/agent/assess/policy/policy_scanner.rb +2 -16
  29. data/lib/contrast/agent/assess/policy/preshift.rb +8 -2
  30. data/lib/contrast/agent/assess/policy/propagation_method.rb +47 -13
  31. data/lib/contrast/agent/assess/policy/propagator/buffer.rb +118 -0
  32. data/lib/contrast/agent/assess/policy/propagator/keep.rb +19 -4
  33. data/lib/contrast/agent/assess/policy/propagator/remove.rb +18 -2
  34. data/lib/contrast/agent/assess/policy/propagator/splat.rb +17 -3
  35. data/lib/contrast/agent/assess/policy/propagator/split.rb +15 -19
  36. data/lib/contrast/agent/assess/policy/propagator/substitution.rb +1 -1
  37. data/lib/contrast/agent/assess/policy/propagator/substitution_utils.rb +1 -1
  38. data/lib/contrast/agent/assess/policy/propagator/trim.rb +1 -1
  39. data/lib/contrast/agent/assess/policy/propagator.rb +1 -0
  40. data/lib/contrast/agent/assess/policy/source_method.rb +7 -7
  41. data/lib/contrast/agent/assess/policy/trigger_method.rb +4 -10
  42. data/lib/contrast/agent/assess/property/tagged.rb +1 -1
  43. data/lib/contrast/agent/assess/rule/provider/hardcoded_value_rule.rb +7 -2
  44. data/lib/contrast/agent/assess/rule/response/auto_complete_rule.rb +1 -1
  45. data/lib/contrast/agent/assess/rule/response/base_rule.rb +11 -3
  46. data/lib/contrast/agent/assess/rule/response/body_rule.rb +3 -3
  47. data/lib/contrast/agent/assess/rule/response/cache_control_header_rule.rb +60 -36
  48. data/lib/contrast/agent/assess/rule/response/framework/rails_support.rb +3 -3
  49. data/lib/contrast/agent/assess/rule/response/parameters_pollution_rule.rb +1 -1
  50. data/lib/contrast/agent/assess/rule/response/x_xss_protection_header_rule.rb +1 -2
  51. data/lib/contrast/agent/at_exit_hook.rb +1 -1
  52. data/lib/contrast/agent/deadzone/policy/deadzone_node.rb +0 -7
  53. data/lib/contrast/agent/deadzone/policy/policy.rb +0 -6
  54. data/lib/contrast/agent/exclusion_matcher.rb +3 -3
  55. data/lib/contrast/agent/inventory/database_config.rb +10 -3
  56. data/lib/contrast/agent/middleware.rb +5 -3
  57. data/lib/contrast/agent/patching/policy/after_load_patch.rb +0 -2
  58. data/lib/contrast/agent/patching/policy/patch.rb +13 -12
  59. data/lib/contrast/agent/patching/policy/patcher.rb +4 -4
  60. data/lib/contrast/agent/patching/policy/policy_node.rb +15 -2
  61. data/lib/contrast/agent/protect/exploitable_collection.rb +38 -0
  62. data/lib/contrast/agent/protect/input_analyzer/input_analyzer.rb +66 -9
  63. data/lib/contrast/agent/protect/policy/applies_no_sqli_rule.rb +2 -1
  64. data/lib/contrast/agent/protect/policy/applies_path_traversal_rule.rb +2 -2
  65. data/lib/contrast/agent/protect/rule/base.rb +37 -5
  66. data/lib/contrast/agent/protect/rule/base_service.rb +3 -1
  67. data/lib/contrast/agent/protect/rule/cmd_injection.rb +13 -0
  68. data/lib/contrast/agent/protect/rule/cmdi/cmdi_input_classification.rb +83 -0
  69. data/lib/contrast/agent/protect/rule/cmdi/cmdi_worth_watching.rb +64 -0
  70. data/lib/contrast/agent/protect/rule/http_method_tampering/http_method_tampering_input_classification.rb +96 -0
  71. data/lib/contrast/agent/protect/rule/http_method_tampering.rb +8 -0
  72. data/lib/contrast/agent/protect/rule/no_sqli/no_sqli_input_classification.rb +231 -0
  73. data/lib/contrast/agent/protect/rule/no_sqli.rb +27 -0
  74. data/lib/contrast/agent/protect/rule/sqli/sqli_input_classification.rb +18 -54
  75. data/lib/contrast/agent/protect/rule/sqli/sqli_worth_watching.rb +1 -4
  76. data/lib/contrast/agent/protect/rule/unsafe_file_upload/unsafe_file_upload_input_classification.rb +82 -0
  77. data/lib/contrast/agent/protect/rule/unsafe_file_upload/unsafe_file_upload_matcher.rb +45 -0
  78. data/lib/contrast/agent/protect/rule/unsafe_file_upload.rb +42 -0
  79. data/lib/contrast/agent/reporting/attack_result/attack_result.rb +63 -0
  80. data/lib/contrast/agent/reporting/attack_result/rasp_rule_sample.rb +52 -0
  81. data/lib/contrast/agent/reporting/attack_result/response_type.rb +29 -0
  82. data/lib/contrast/agent/reporting/attack_result/user_input.rb +87 -0
  83. data/lib/contrast/agent/reporting/masker/masker.rb +243 -0
  84. data/lib/contrast/agent/reporting/masker/masker_utils.rb +62 -0
  85. data/lib/contrast/agent/reporting/report.rb +2 -0
  86. data/lib/contrast/agent/reporting/reporter.rb +29 -22
  87. data/lib/contrast/agent/reporting/reporter_heartbeat.rb +49 -0
  88. data/lib/contrast/agent/reporting/reporting_events/agent_startup.rb +34 -0
  89. data/lib/contrast/agent/reporting/reporting_events/application_activity.rb +53 -0
  90. data/lib/contrast/agent/reporting/reporting_events/application_defend_activity.rb +48 -0
  91. data/lib/contrast/agent/reporting/reporting_events/application_defend_attack_activity.rb +64 -0
  92. data/lib/contrast/agent/reporting/reporting_events/application_defend_attack_sample.rb +70 -0
  93. data/lib/contrast/agent/reporting/reporting_events/application_defend_attack_sample_activity.rb +57 -0
  94. data/lib/contrast/agent/reporting/reporting_events/application_defend_attacker_activity.rb +56 -0
  95. data/lib/contrast/agent/reporting/reporting_events/application_inventory.rb +12 -4
  96. data/lib/contrast/agent/reporting/reporting_events/application_inventory_activity.rb +58 -0
  97. data/lib/contrast/agent/reporting/reporting_events/application_reporting_event.rb +27 -0
  98. data/lib/contrast/agent/reporting/reporting_events/application_startup.rb +50 -0
  99. data/lib/contrast/agent/reporting/reporting_events/application_startup_instrumentation.rb +27 -0
  100. data/lib/contrast/agent/reporting/reporting_events/application_update.rb +7 -12
  101. data/lib/contrast/agent/reporting/reporting_events/finding.rb +10 -4
  102. data/lib/contrast/agent/reporting/reporting_events/finding_event.rb +2 -4
  103. data/lib/contrast/agent/reporting/reporting_events/finding_event_object.rb +3 -3
  104. data/lib/contrast/agent/reporting/reporting_events/library_usage_observation.rb +5 -5
  105. data/lib/contrast/agent/reporting/reporting_events/observed_library_usage.rb +6 -2
  106. data/lib/contrast/agent/reporting/reporting_events/observed_route.rb +16 -12
  107. data/lib/contrast/agent/reporting/reporting_events/poll.rb +6 -2
  108. data/lib/contrast/agent/reporting/reporting_events/preflight.rb +10 -8
  109. data/lib/contrast/agent/reporting/reporting_events/preflight_message.rb +8 -11
  110. data/lib/contrast/agent/reporting/reporting_events/reporting_event.rb +2 -1
  111. data/lib/contrast/agent/reporting/reporting_events/route_coverage.rb +8 -6
  112. data/lib/contrast/agent/reporting/reporting_events/server_activity.rb +12 -20
  113. data/lib/contrast/agent/reporting/reporting_events/server_reporting_event.rb +27 -0
  114. data/lib/contrast/agent/reporting/reporting_utilities/audit.rb +17 -27
  115. data/lib/contrast/agent/reporting/reporting_utilities/build_preflight.rb +38 -0
  116. data/lib/contrast/agent/reporting/reporting_utilities/dtm_message.rb +8 -0
  117. data/lib/contrast/agent/reporting/reporting_utilities/endpoints.rb +6 -0
  118. data/lib/contrast/agent/reporting/reporting_utilities/reporter_client.rb +23 -7
  119. data/lib/contrast/agent/reporting/reporting_utilities/reporter_client_utils.rb +64 -76
  120. data/lib/contrast/agent/reporting/reporting_utilities/reporting_storage.rb +1 -1
  121. data/lib/contrast/agent/reporting/reporting_utilities/response.rb +17 -7
  122. data/lib/contrast/agent/reporting/reporting_utilities/response_extractor.rb +100 -0
  123. data/lib/contrast/agent/reporting/reporting_utilities/response_handler.rb +75 -13
  124. data/lib/contrast/agent/reporting/reporting_utilities/response_handler_mode.rb +63 -0
  125. data/lib/contrast/agent/reporting/reporting_utilities/response_handler_utils.rb +154 -113
  126. data/lib/contrast/agent/reporting/settings/application_settings.rb +9 -0
  127. data/lib/contrast/agent/reporting/settings/assess_server_feature.rb +5 -33
  128. data/lib/contrast/agent/reporting/settings/protect.rb +1 -1
  129. data/lib/contrast/agent/reporting/settings/protect_server_feature.rb +2 -2
  130. data/lib/contrast/agent/reporting/settings/sampling.rb +36 -0
  131. data/lib/contrast/agent/reporting/settings/sensitive_data_masking.rb +110 -0
  132. data/lib/contrast/agent/reporting/settings/sensitive_data_masking_rule.rb +58 -0
  133. data/lib/contrast/agent/request.rb +3 -3
  134. data/lib/contrast/agent/request_context.rb +1 -1
  135. data/lib/contrast/agent/request_context_extend.rb +2 -2
  136. data/lib/contrast/agent/request_handler.rb +7 -3
  137. data/lib/contrast/agent/response.rb +2 -0
  138. data/lib/contrast/agent/service_heartbeat.rb +6 -48
  139. data/lib/contrast/agent/static_analysis.rb +1 -1
  140. data/lib/contrast/agent/telemetry/base.rb +151 -0
  141. data/lib/contrast/agent/telemetry/events/event.rb +35 -0
  142. data/lib/contrast/agent/telemetry/events/exceptions/telemetry_exception_base.rb +59 -0
  143. data/lib/contrast/agent/telemetry/events/exceptions/telemetry_exception_event.rb +44 -0
  144. data/lib/contrast/agent/telemetry/events/exceptions/telemetry_exception_message.rb +115 -0
  145. data/lib/contrast/agent/telemetry/events/exceptions/telemetry_exception_message_exception.rb +83 -0
  146. data/lib/contrast/agent/telemetry/events/exceptions/telemetry_exception_stack_frame.rb +64 -0
  147. data/lib/contrast/agent/telemetry/events/exceptions/telemetry_exceptions.rb +20 -0
  148. data/lib/contrast/agent/telemetry/events/exceptions/telemetry_exceptions_report.rb +32 -0
  149. data/lib/contrast/agent/telemetry/events/metric_event.rb +28 -0
  150. data/lib/contrast/agent/telemetry/events/startup_metrics_event.rb +123 -0
  151. data/lib/contrast/agent/thread_watcher.rb +52 -68
  152. data/lib/contrast/agent/version.rb +1 -1
  153. data/lib/contrast/agent/worker_thread.rb +8 -0
  154. data/lib/contrast/agent.rb +4 -3
  155. data/lib/contrast/api/communication/messaging_queue.rb +28 -11
  156. data/lib/contrast/api/communication/response_processor.rb +7 -10
  157. data/lib/contrast/api/communication/speedracer.rb +1 -1
  158. data/lib/contrast/api/decorators/activity.rb +33 -0
  159. data/lib/contrast/api/decorators/address.rb +1 -1
  160. data/lib/contrast/api/decorators/http_request.rb +1 -1
  161. data/lib/contrast/api/decorators/response_type.rb +30 -0
  162. data/lib/contrast/api/decorators.rb +1 -0
  163. data/lib/contrast/components/app_context.rb +0 -4
  164. data/lib/contrast/components/assess.rb +14 -0
  165. data/lib/contrast/components/config.rb +13 -22
  166. data/lib/contrast/components/contrast_service.rb +9 -0
  167. data/lib/contrast/components/protect.rb +2 -2
  168. data/lib/contrast/components/sampling.rb +7 -11
  169. data/lib/contrast/components/settings.rb +116 -8
  170. data/lib/contrast/config/agent_configuration.rb +34 -41
  171. data/lib/contrast/config/api_configuration.rb +16 -75
  172. data/lib/contrast/config/api_proxy_configuration.rb +9 -48
  173. data/lib/contrast/config/application_configuration.rb +24 -95
  174. data/lib/contrast/config/assess_configuration.rb +21 -76
  175. data/lib/contrast/config/assess_rules_configuration.rb +13 -38
  176. data/lib/contrast/config/base_configuration.rb +11 -76
  177. data/lib/contrast/config/certification_configuration.rb +15 -68
  178. data/lib/contrast/config/exception_configuration.rb +15 -59
  179. data/lib/contrast/config/heap_dump_configuration.rb +19 -73
  180. data/lib/contrast/config/inventory_configuration.rb +11 -55
  181. data/lib/contrast/config/logger_configuration.rb +8 -41
  182. data/lib/contrast/config/protect_configuration.rb +23 -10
  183. data/lib/contrast/config/protect_rule_configuration.rb +23 -37
  184. data/lib/contrast/config/protect_rules_configuration.rb +39 -43
  185. data/lib/contrast/config/request_audit_configuration.rb +16 -55
  186. data/lib/contrast/config/root_configuration.rb +70 -13
  187. data/lib/contrast/config/ruby_configuration.rb +14 -47
  188. data/lib/contrast/config/sampling_configuration.rb +12 -65
  189. data/lib/contrast/config/server_configuration.rb +13 -45
  190. data/lib/contrast/config/service_configuration.rb +36 -17
  191. data/lib/contrast/configuration.rb +21 -13
  192. data/lib/contrast/extension/assess/string.rb +20 -1
  193. data/lib/contrast/extension/module.rb +0 -1
  194. data/lib/contrast/framework/manager.rb +2 -2
  195. data/lib/contrast/framework/rails/patch/support.rb +13 -45
  196. data/lib/contrast/logger/aliased_logging.rb +87 -0
  197. data/lib/contrast/logger/application.rb +1 -5
  198. data/lib/contrast/logger/cef_log.rb +1 -1
  199. data/lib/contrast/tasks/config.rb +100 -4
  200. data/lib/contrast/utils/assess/object_store.rb +36 -0
  201. data/lib/contrast/utils/assess/propagation_method_utils.rb +6 -0
  202. data/lib/contrast/utils/class_util.rb +5 -18
  203. data/lib/contrast/utils/input_classification.rb +73 -0
  204. data/lib/contrast/utils/invalid_configuration_util.rb +1 -1
  205. data/lib/contrast/utils/log_utils.rb +3 -1
  206. data/lib/contrast/utils/middleware_utils.rb +10 -9
  207. data/lib/contrast/utils/net_http_base.rb +1 -1
  208. data/lib/contrast/utils/object_share.rb +2 -1
  209. data/lib/contrast/utils/os.rb +0 -5
  210. data/lib/contrast/utils/patching/policy/patch_utils.rb +4 -5
  211. data/lib/contrast/utils/response_utils.rb +18 -33
  212. data/lib/contrast/utils/telemetry.rb +20 -2
  213. data/lib/contrast/utils/telemetry_client.rb +23 -11
  214. data/lib/contrast/utils/telemetry_hash.rb +41 -0
  215. data/lib/contrast/utils/telemetry_identifier.rb +16 -1
  216. data/lib/contrast.rb +9 -0
  217. data/resources/assess/policy.json +98 -0
  218. data/resources/deadzone/policy.json +0 -86
  219. data/ruby-agent.gemspec +10 -9
  220. data/service_executables/VERSION +1 -1
  221. data/service_executables/linux/contrast-service +0 -0
  222. data/service_executables/mac/contrast-service +0 -0
  223. metadata +98 -30
  224. data/lib/contrast/agent/metric_telemetry_event.rb +0 -26
  225. data/lib/contrast/agent/startup_metrics_telemetry_event.rb +0 -121
  226. data/lib/contrast/agent/telemetry.rb +0 -137
  227. data/lib/contrast/agent/telemetry_event.rb +0 -33
  228. data/lib/contrast/utils/exclude_key.rb +0 -20
@@ -39,7 +39,7 @@ module Contrast
39
39
  attr_accessor :route, :observed_route, :new_observed_route
40
40
 
41
41
  # Delegate calls to the following methods to the attribute @rack_request
42
- def_delegators :@rack_request, :base_url, :content_type, :cookies, :env, :ip, :path, :port, :query_string,
42
+ def_delegators :@rack_request, :base_url, :cookies, :env, :ip, :media_type, :path, :port, :query_string,
43
43
  :request_method, :scheme, :url, :user_agent
44
44
 
45
45
  # Initialize new Contrast Request
@@ -86,9 +86,9 @@ module Contrast
86
86
  #
87
87
  # @return type [Symbol<:XML, :JSON, :NORMAL>]
88
88
  def document_type
89
- @_document_type ||= if /xml/i.match?(content_type) || body&.start_with?('<?xml')
89
+ @_document_type ||= if /xml/i.match?(media_type) || body&.start_with?('<?xml')
90
90
  :XML
91
- elsif /json/i.match?(content_type) || body&.match?(/\s*[{\[]/)
91
+ elsif /json/i.match?(media_type) || body&.match?(/\s*[{\[]/)
92
92
  :JSON
93
93
  else
94
94
  :NORMAL
@@ -42,7 +42,7 @@ module Contrast
42
42
  attr_reader :activity, :logging_hash, :observed_route, :new_observed_route, :request, :response, :route,
43
43
  :speedracer_input_analysis, :agent_input_analysis, :server_activity, :timer
44
44
 
45
- def initialize rack_request, app_loaded = true
45
+ def initialize rack_request, app_loaded: true
46
46
  with_contrast_scope do
47
47
  # all requests get a timer and hash
48
48
  @timer = Contrast::Utils::Timer.new
@@ -76,7 +76,7 @@ module Contrast
76
76
  return false unless ::Contrast::PROTECT.enabled?
77
77
  return false if @do_not_track
78
78
 
79
- service_response = Contrast::Agent.messaging_queue.send_event_immediately(@activity.http_request)
79
+ service_response = Contrast::Agent&.messaging_queue&.send_event_immediately(@activity.http_request)
80
80
  return false unless service_response
81
81
 
82
82
  handle_protect_state(service_response)
@@ -126,6 +126,7 @@ module Contrast
126
126
  @response = Contrast::Agent::Response.new(rack_response)
127
127
  return unless @sample_res
128
128
 
129
+ #
129
130
  # TODO: RUBY-1376 once all rules translated, move this to if/else w/ the enabled
130
131
  if Contrast::Agent::Reporter.enabled?
131
132
  Contrast::Agent::Assess::Rule::Response::AutoComplete.new.analyze(@response)
@@ -209,7 +210,6 @@ module Contrast
209
210
  @agent_input_analysis = ia
210
211
  else
211
212
  logger.trace('Analysis from Agent was empty.')
212
-
213
213
  end
214
214
  end
215
215
 
@@ -5,6 +5,7 @@ require 'contrast/components/logger'
5
5
  require 'contrast/components/scope'
6
6
  require 'contrast/agent/reporting/reporter'
7
7
  require 'contrast/agent/reporting/reporting_utilities/dtm_message'
8
+ require 'contrast/agent/reporting/masker/masker'
8
9
 
9
10
  module Contrast
10
11
  module Agent
@@ -46,18 +47,21 @@ module Contrast
46
47
  # This method is used to send our JSON messages directly to TeamServer at the end of each request. As we move
47
48
  # more endpoints over, this method will take the messages originally sent by #send_actiivty_messages. At the end,
48
49
  # that method should be removed.
49
- # TODO: RUBY-1358
50
- def report_activity
50
+ def report_activity # rubocop:disable Metrics/AbcSize
51
51
  return unless Contrast::Agent::Reporter.enabled?
52
52
 
53
53
  reporter = Contrast::Agent.reporter
54
54
  return unless reporter
55
55
 
56
+ # Mask Sensitive Data
57
+ Contrast::Agent::Reporting::Masker.mask context.activity
58
+
56
59
  Contrast::Agent::Inventory::DependencyUsageAnalysis.instance.generate_library_usage(context.activity)
57
60
  [
58
61
  context.new_observed_route,
59
62
  Contrast::Agent::Reporting::DtmMessage.dtm_to_event(context.server_activity),
60
- Contrast::Agent::Reporting::DtmMessage.dtm_to_event(context.activity.library_usages)
63
+ Contrast::Agent::Reporting::DtmMessage.dtm_to_event(context.activity.library_usages),
64
+ Contrast::Agent::Reporting::DtmMessage.dtm_to_event(context.activity)
61
65
  ].each do |event|
62
66
  reporter.send_event(event)
63
67
  rescue StandardError => e
@@ -22,6 +22,8 @@ module Contrast
22
22
 
23
23
  extend Forwardable
24
24
 
25
+ # @return [Array, Rack::Response] The Rack Response passed by the application & middleware. It can be an Array
26
+ # in format [response_code, header_hash, response_body] or an instance of Rack::Response
25
27
  attr_reader :rack_response
26
28
 
27
29
  def initialize rack_response
@@ -7,71 +7,29 @@ require 'contrast/agent/reporting/report'
7
7
 
8
8
  module Contrast
9
9
  module Agent
10
- # The ServiceHeartbeat functions to keep the Contrast Service alive and
11
- # ensure that it maintains this Agent's ApplicationContext.
10
+ # The ServiceHeartbeat functions to keep the Contrast Service alive and ensure that it maintains this Agent's
11
+ # ApplicationContext.
12
12
  class ServiceHeartbeat < WorkerThread
13
13
  include Contrast::Components::Logger::InstanceMethods
14
14
 
15
15
  # Spec recommends 30 seconds, we're going with 15.
16
16
  REFRESH_INTERVAL_SEC = 15
17
17
 
18
- # check if we can report to TS
19
- #
20
- # @return[Boolean] true if bypass is enabled, or false if bypass disabled
21
- def enabled?
22
- @_enabled = Contrast::CONTRAST_SERVICE.use_agent_communication? if @_enabled.nil?
23
- @_enabled
24
- end
25
-
26
- def client
27
- @_client ||= Contrast::Agent::Reporting::ReporterClient.new
28
- end
29
-
30
- def connection
31
- @_connection ||= client.initialize_connection
32
- end
33
-
34
18
  def start_thread!
19
+ return if ::Contrast::CONTRAST_SERVICE.unnecessary?
35
20
  return if running?
36
21
 
37
- report_from_reporter = check_report_provider
38
-
39
22
  @_thread = Contrast::Agent::Thread.new do
40
23
  logger.info('Starting heartbeat thread.')
41
24
  loop do
42
- if report_from_reporter
43
- client.send_event(poll_message, connection)
44
- else
45
- Contrast::Agent.messaging_queue.send_event_eventually(poll_message)
46
- end
47
-
48
- sleep REFRESH_INTERVAL_SEC
25
+ Contrast::Agent.messaging_queue.send_event_eventually(poll_message)
26
+ sleep(REFRESH_INTERVAL_SEC)
49
27
  end
50
28
  end
51
29
  end
52
30
 
53
31
  def poll_message
54
- @_poll_message ||= if enabled? && client
55
- Contrast::Agent::Reporting::Poll.new
56
- else
57
- Contrast::Api::Dtm::Poll.new
58
- end
59
- end
60
-
61
- def check_report_provider
62
- return false unless enabled?
63
- return false unless client && connection
64
-
65
- client.startup!(connection)
66
- true
67
- end
68
-
69
- def send_event provider
70
- if provider
71
- client.send_event(poll_message, connection)
72
- return
73
- end
74
- Contrast::Agent.messaging_queue.send_event_eventually(poll_message)
32
+ @_poll_message ||= Contrast::Api::Dtm::Poll.new
75
33
  end
76
34
  end
77
35
  end
@@ -40,7 +40,7 @@ module Contrast
40
40
  inventory_report = Contrast::Agent::Reporting::ApplicationInventory.convert(app_update_msg)
41
41
  Contrast::Agent.reporter.send_event(inventory_report)
42
42
  else
43
- Contrast::Agent.messaging_queue.send_event_eventually(app_update_msg)
43
+ Contrast::Agent.messaging_queue.send_event_eventually(app_update_msg, force: true)
44
44
  end
45
45
  end
46
46
 
@@ -0,0 +1,151 @@
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
+ require 'contrast/config/env_variables'
5
+ require 'contrast/components/logger'
6
+ require 'contrast/utils/telemetry_client'
7
+ require 'contrast/agent/worker_thread'
8
+ require 'contrast/utils/telemetry'
9
+ require 'contrast/agent/telemetry/events/exceptions/telemetry_exceptions'
10
+
11
+ module Contrast
12
+ module Agent
13
+ module Telemetry
14
+ # This class will initialize and hold everything needed for the telemetry
15
+ class Base < WorkerThread
16
+ include Contrast::Components::Logger::InstanceMethods
17
+ # this is where we will send the data from the agents
18
+ URL = 'https://telemetry.ruby.contrastsecurity.com/'
19
+ # Suggested timeout after each send is to be 3 hours (10800 seconds)
20
+ SUGGESTED_TIMEOUT = 10_800
21
+
22
+ class << self
23
+ include Contrast::Components::Logger::InstanceMethods
24
+ include Contrast::Config::EnvVariables
25
+
26
+ def application_id
27
+ Contrast::Utils::Telemetry::Identifier.application_id
28
+ end
29
+
30
+ def instance_id
31
+ Contrast::Utils::Telemetry::Identifier.instance_id
32
+ end
33
+
34
+ def enabled?
35
+ @_enabled = telemetry_enabled? if @_enabled.nil?
36
+ @_enabled
37
+ end
38
+
39
+ private
40
+
41
+ def telemetry_enabled?
42
+ opt_out_telemetry = return_value(:telemetry_opt_outs).to_s
43
+ return false if opt_out_telemetry.casecmp?('true') || opt_out_telemetry == '1'
44
+
45
+ # In case of connection error, do not create the background thread or queue,
46
+ # as if the opt-out env var was set
47
+ @_client = Contrast::Utils::TelemetryClient.new
48
+ ip_opt_out_telemetry = @_client.initialize_connection(URL)
49
+ if ip_opt_out_telemetry.nil?
50
+ logger.warn("Connection was not established properly!!! \n Telemetry reporting will be disabled!")
51
+ return false
52
+ end
53
+
54
+ true
55
+ end
56
+ end
57
+
58
+ def client
59
+ @_client ||= Contrast::Utils::TelemetryClient.new
60
+ end
61
+
62
+ def connection
63
+ @_connection ||= client.initialize_connection(URL)
64
+ end
65
+
66
+ def error_messages
67
+ @_error_messages ||= []
68
+ end
69
+
70
+ def attempt_to_start?
71
+ unless cs__class.enabled?
72
+ logger.warn('Telemetry service is disabled!')
73
+ return false
74
+ end
75
+
76
+ logger.debug('Attempting to start telemetry thread') unless running?
77
+ true
78
+ end
79
+
80
+ def start_thread!
81
+ return if running?
82
+
83
+ # It is recommended that implementations send a single payload of
84
+ # general metrics every 3 hours, starting from implementation startup.
85
+ @_thread = Contrast::Agent::Thread.new do
86
+ logger.debug('Starting background telemetry thread.')
87
+ loop do
88
+ next unless client && connection
89
+
90
+ Contrast::Agent::Telemetry::TelemetryExceptionReport.push_exceptions
91
+ until queue.empty?
92
+ event = queue.pop
93
+ begin
94
+ logger.debug('This is the current processed event', event)
95
+ sleep_time = request_with_response event
96
+ if sleep_time
97
+ sleep(sleep_time)
98
+ logger.debug('Retrying to process event', event)
99
+ retry_sleep_time = request_with_response event
100
+ sleep(retry_sleep_time) unless retry_sleep_time.nil?
101
+ end
102
+ rescue StandardError => e
103
+ logger.error('Could not send message to service from telemetry queue.', e)
104
+ stop!
105
+ end
106
+ end
107
+ sleep(SUGGESTED_TIMEOUT)
108
+ end
109
+ end
110
+ end
111
+
112
+ def send_event event
113
+ if ::Contrast::AGENT.disabled?
114
+ logger.warn('Attempted to queue event with Agent disabled', caller: caller, event: event)
115
+ return
116
+ end
117
+
118
+ return unless cs__class.enabled?
119
+
120
+ logger.debug('Enqueued event for sending', event_type: event.cs__class)
121
+ queue << event if event
122
+ end
123
+
124
+ def delete_queue!
125
+ @_queue&.clear
126
+ @_queue&.close
127
+ @_queue = nil
128
+ end
129
+
130
+ def stop!
131
+ return unless running?
132
+
133
+ @_enabled = false
134
+ delete_queue!
135
+ super
136
+ end
137
+
138
+ def request_with_response event
139
+ res = client.send_request event, connection
140
+ client.handle_response res
141
+ end
142
+
143
+ private
144
+
145
+ def queue
146
+ @_queue ||= Queue.new
147
+ end
148
+ end
149
+ end
150
+ end
151
+ end
@@ -0,0 +1,35 @@
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
+ require 'contrast/utils/metrics_hash'
5
+
6
+ module Contrast
7
+ module Agent
8
+ module Telemetry
9
+ # This class will hold the basic information for a Telemetry Event
10
+ class Event
11
+ include Contrast::Utils
12
+
13
+ attr_reader :tags
14
+
15
+ def initialize
16
+ @tags = MetricsHash.new(String)
17
+ @timestamp = Time.now.iso8601
18
+ end
19
+
20
+ def path
21
+ ''
22
+ end
23
+
24
+ def to_hash **_args
25
+ {
26
+ tags: @tags,
27
+ timestamp: @timestamp,
28
+ instance: Contrast::Agent::Telemetry::Base.instance_id,
29
+ application: Contrast::Agent::Telemetry::Base.application_id
30
+ }
31
+ end
32
+ end
33
+ end
34
+ end
35
+ end
@@ -0,0 +1,59 @@
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 Telemetry
7
+ module TelemetryException
8
+ # This class will hold the all the mutual information for the Telemetry Exception
9
+ class Base
10
+ def to_controlled_hash; end
11
+
12
+ protected
13
+
14
+ # Validate required and option fields
15
+ #
16
+ # @param validations [Hash] Validation hash to use
17
+ # @return [nil]
18
+ def validate validations
19
+ validations.each do |k, v|
20
+ next if v[:required] == false
21
+
22
+ validate_field(validations[k], k)
23
+ end
24
+ nil
25
+ end
26
+
27
+ # This method will validate every single field passed from validate
28
+ #
29
+ # @param validation_pair [Hash] Validation hash to use
30
+ # @param key[String] The key to check in VALIDATIONS
31
+ def validate_field validation_pair, key
32
+ value_to_validate = send(key.to_sym)
33
+ validate_class(value_to_validate, validation_pair[:class], key) if validation_pair.key?(:class)
34
+ value_length = if value_to_validate.cs__is_a?(String) || value_to_validate.cs__is_a?(Array)
35
+ value_to_validate.length
36
+ else
37
+ value_to_validate.entries.length
38
+ end
39
+ unless validation_pair[:range].include?(value_length)
40
+ raise ArgumentError, "The provided value for #{ key } is invalid: #{ value_to_validate }"
41
+ end
42
+
43
+ nil
44
+ end
45
+
46
+ # With the all nested classes, we still need to double check if everything passed along the way
47
+ # is right
48
+ # @param message [Object] The message we want to check the class of
49
+ # @param klass [Class] The klass we want to check the message with
50
+ # @param field [Object] The field with the error
51
+ def validate_class message, klass, field
52
+ message = message[0] if message.cs__is_a?(Array)
53
+ raise ArgumentError, "The provided value for #{ field } is of wrong class" unless message.cs__is_a? klass
54
+ end
55
+ end
56
+ end
57
+ end
58
+ end
59
+ end
@@ -0,0 +1,44 @@
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
+ require_relative 'telemetry_exception_base'
5
+ require_relative 'telemetry_exception_message'
6
+
7
+ module Contrast
8
+ module Agent
9
+ module Telemetry
10
+ module TelemetryException
11
+ # This class will hold the basic information for a Parent Telemetry Exception Event
12
+ class Event < Contrast::Agent::Telemetry::TelemetryException::Base
13
+ # Array of Telemetry Exceptions
14
+ # @return [Array<Contrast::Agent::Telemetry::TelemetryException::Message>]
15
+ attr_reader :exceptions
16
+
17
+ # Initialization of the Parent Event requires us to require the exception
18
+ # to be created
19
+ #
20
+ # @param message [Contrast::Agent::Telemetry::TelemetryException::Message]
21
+ def initialize message
22
+ super()
23
+ validate_class(message, Contrast::Agent::Telemetry::TelemetryException::Message, 'exception_message')
24
+ @exceptions = Array.new(1, message)
25
+ end
26
+
27
+ # @param message [Contrast::Agent::Telemetry::TelemetryException::Message]
28
+ def push message
29
+ validate_class(message, Contrast::Agent::Telemetry::TelemetryException::Message, 'exception_message')
30
+ @exceptions << message
31
+ end
32
+
33
+ def self.path
34
+ '/ruby/runtime'
35
+ end
36
+
37
+ def to_controlled_hash
38
+ exceptions.map(&:to_controlled_hash)
39
+ end
40
+ end
41
+ end
42
+ end
43
+ end
44
+ end
@@ -0,0 +1,115 @@
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
+ require_relative 'telemetry_exception_base'
5
+ require_relative 'telemetry_exception_message_exception'
6
+ require 'contrast/utils/telemetry_identifier'
7
+
8
+ module Contrast
9
+ module Agent
10
+ module Telemetry
11
+ module TelemetryException
12
+ # This class will hold the all the information for the specific exceptions
13
+ # and will be passed in the the event to be sent to TS
14
+ class Message < Contrast::Agent::Telemetry::TelemetryException::Base
15
+ VALIDATIONS = {
16
+ instance: { required: true, range: 12..64 },
17
+ tags: { required: true, range: 0..512 },
18
+ logger: { required: false, range: 1..128 },
19
+ message: { required: false, range: 1..512 },
20
+ exceptions: {
21
+ required: true,
22
+ range: 1..512,
23
+ class: Contrast::Agent::Telemetry::TelemetryException::MessageException
24
+ }
25
+ }.cs__freeze
26
+
27
+ # Timestamp of creation in ISO8601 format
28
+ # @return [Integer]
29
+ attr_reader :timestamp
30
+
31
+ # An Instance ID as defined in Unique Identification // Application ID
32
+ # @return [String]
33
+ attr_reader :instance
34
+
35
+ # Tags are key-value string pairs that annotate either metrics
36
+ # or errors to help provide context, filtering, grouping, and deduplication.
37
+ # @return [Hash{String => String}]
38
+ attr_reader :tags
39
+
40
+ # @return [Integer] A number of the occurrences of the exception
41
+ attr_accessor :occurrences
42
+
43
+ # Array of exceptions, but in our case the Array will only include one exception
44
+ # @return [Array<Contrast::Agent::Telemetry::TelemetryException::MessageException>]
45
+ attr_reader :exceptions
46
+
47
+ # @return [String,nil] A string denoting the origin of this error.
48
+ attr_reader :logger
49
+
50
+ # @return [String | nil] A string message to provide additional context to the errors.
51
+ attr_reader :message
52
+
53
+ def initialize instance, tags, exceptions
54
+ super()
55
+ @tags = tags
56
+ @timestamp = Time.now.iso8601
57
+ @instance = instance
58
+ @occurrences = 1
59
+ @exceptions = exceptions
60
+ validate(VALIDATIONS)
61
+ end
62
+
63
+ # Optional parameters will be set separately from the required
64
+ #
65
+ # @param logger[String]
66
+ def logger= logger
67
+ validate_field(VALIDATIONS[:logger], 'logger')
68
+ @logger = logger
69
+ end
70
+
71
+ # Optional parameters will be set separately from the required
72
+ #
73
+ # @param message[String]
74
+ def message= message
75
+ validate_field(VALIDATIONS[:message], 'message')
76
+ @message = message
77
+ end
78
+
79
+ # Optional parameters will be set separately from the required
80
+ # This method is different and is regarding the way we proceed
81
+ # with incrementing occurrences
82
+ # If we keep track of them in different places and we store that value
83
+ # in separated variable - we may directly re-assign occurrences=
84
+ # But if we are not doing that - we may on same message generated
85
+ # to increment occurrences from here
86
+ def increment_occurrences
87
+ @occurrences += 1
88
+ end
89
+
90
+ def to_controlled_hash
91
+ super()
92
+ {
93
+ timestamp: timestamp,
94
+ instance: instance,
95
+ occurrences: occurrences,
96
+ tags: tags,
97
+ exceptions: exceptions.map(&:to_controlled_hash),
98
+ logger: logger,
99
+ message: message
100
+ }.compact
101
+ end
102
+
103
+ class << self
104
+ def build tags, exceptions, logger = nil, message = nil
105
+ inst = new(Contrast::Utils::Telemetry::Identifier.instance_id, tags, exceptions)
106
+ inst.logger = logger unless logger.nil?
107
+ inst.message = message unless message.nil?
108
+ inst
109
+ end
110
+ end
111
+ end
112
+ end
113
+ end
114
+ end
115
+ end
@@ -0,0 +1,83 @@
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
+ require_relative 'telemetry_exception_base'
5
+ require_relative 'telemetry_exception_stack_frame'
6
+
7
+ module Contrast
8
+ module Agent
9
+ module Telemetry
10
+ module TelemetryException
11
+ # This class will hold the all the information for the specific exception
12
+ # and will be passed in the Exception message itself
13
+ class MessageException < Contrast::Agent::Telemetry::TelemetryException::Base
14
+ VALIDATIONS = {
15
+ type: { required: true, range: 1..256 },
16
+ module_name: { required: false, range: 1..256 },
17
+ value: { required: false, range: 1..256 },
18
+ stack_frames: {
19
+ required: true,
20
+ range: 1..128,
21
+ class: Contrast::Agent::Telemetry::TelemetryException::StackFrame
22
+ }
23
+ }.cs__freeze
24
+
25
+ # @return [String] The type of the exception itself
26
+ attr_reader :type
27
+
28
+ # stack frames for the message exception
29
+ # @return [Array<Contrast::Agent::Telemetry::TelemetryException::StackFrame>]
30
+ attr_reader :stack_frames
31
+
32
+ # @return [String]
33
+ attr_reader :module_name
34
+
35
+ # @return [String]
36
+ attr_reader :value
37
+
38
+ def initialize type, stack_frame
39
+ super()
40
+ @type = type
41
+ @stack_frames = Array.new(1, stack_frame)
42
+ validate VALIDATIONS
43
+ end
44
+
45
+ # @param stack_frame [Contrast::Agent::Telemetry::TelemetryException::StackFrame]
46
+ def push stack_frame
47
+ validate_class(stack_frame, Contrast::Agent::Telemetry::TelemetryException::StackFrame, 'stack_frame')
48
+ @stack_frames << stack_frame
49
+ end
50
+
51
+ def module_name= module_name
52
+ @module_name = module_name
53
+ validate_field(VALIDATIONS[:module_name], 'module_name')
54
+ end
55
+
56
+ def value= value
57
+ @value = value
58
+ validate_field(VALIDATIONS[:value], 'value')
59
+ end
60
+
61
+ def to_controlled_hash
62
+ super
63
+ {
64
+ type: type,
65
+ module: module_name,
66
+ stackFrames: stack_frames.map(&:to_controlled_hash),
67
+ value: value
68
+ }.compact
69
+ end
70
+
71
+ class << self
72
+ def build type, value, module_name, stackframes
73
+ inst = new(type, stackframes)
74
+ inst.module_name = module_name if module_name
75
+ inst.value = value
76
+ inst
77
+ end
78
+ end
79
+ end
80
+ end
81
+ end
82
+ end
83
+ end