contrast-agent 6.1.0 → 6.1.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (179) hide show
  1. checksums.yaml +4 -4
  2. data/.simplecov +1 -1
  3. data/Rakefile +1 -1
  4. data/ext/build_funchook.rb +3 -3
  5. data/ext/cs__assess_basic_object/cs__assess_basic_object.c +5 -1
  6. data/ext/extconf_common.rb +1 -1
  7. data/lib/contrast/agent/assess/finalizers/hash.rb +2 -2
  8. data/lib/contrast/agent/assess/policy/policy.rb +9 -10
  9. data/lib/contrast/agent/assess/policy/policy_node.rb +9 -10
  10. data/lib/contrast/agent/assess/policy/propagation_method.rb +3 -3
  11. data/lib/contrast/agent/assess/policy/propagation_node.rb +2 -3
  12. data/lib/contrast/agent/assess/policy/propagator/base.rb +1 -1
  13. data/lib/contrast/agent/assess/policy/propagator/buffer.rb +2 -1
  14. data/lib/contrast/agent/assess/policy/propagator/database_write.rb +1 -1
  15. data/lib/contrast/agent/assess/policy/propagator/splat.rb +1 -1
  16. data/lib/contrast/agent/assess/policy/propagator/split.rb +2 -2
  17. data/lib/contrast/agent/assess/policy/propagator/trim.rb +1 -1
  18. data/lib/contrast/agent/assess/policy/source_node.rb +1 -1
  19. data/lib/contrast/agent/assess/policy/trigger_method.rb +7 -7
  20. data/lib/contrast/agent/assess/policy/trigger_node.rb +16 -16
  21. data/lib/contrast/agent/assess/policy/trigger_validation/redos_validator.rb +1 -1
  22. data/lib/contrast/agent/assess/property/evented.rb +2 -2
  23. data/lib/contrast/agent/assess/property/tagged.rb +2 -2
  24. data/lib/contrast/agent/assess/rule/provider/hardcoded_key.rb +6 -8
  25. data/lib/contrast/agent/assess/rule/provider/hardcoded_password.rb +6 -7
  26. data/lib/contrast/agent/assess/rule/provider/hardcoded_value_rule.rb +5 -5
  27. data/lib/contrast/agent/assess/rule/response/base_rule.rb +2 -3
  28. data/lib/contrast/agent/assess/rule/response/cache_control_header_rule.rb +8 -9
  29. data/lib/contrast/agent/assess/rule/response/click_jacking_header_rule.rb +4 -4
  30. data/lib/contrast/agent/assess/rule/response/csp_header_insecure_rule.rb +6 -6
  31. data/lib/contrast/agent/assess/rule/response/csp_header_missing_rule.rb +4 -4
  32. data/lib/contrast/agent/assess/rule/response/hsts_header_rule.rb +4 -4
  33. data/lib/contrast/agent/assess/rule/response/x_content_type_header_rule.rb +4 -4
  34. data/lib/contrast/agent/assess/rule/response/x_xss_protection_header_rule.rb +3 -4
  35. data/lib/contrast/agent/assess/tag.rb +13 -14
  36. data/lib/contrast/agent/at_exit_hook.rb +12 -1
  37. data/lib/contrast/agent/middleware.rb +6 -3
  38. data/lib/contrast/agent/patching/policy/after_load_patch.rb +3 -3
  39. data/lib/contrast/agent/patching/policy/after_load_patcher.rb +2 -2
  40. data/lib/contrast/agent/patching/policy/method_policy_extend.rb +4 -4
  41. data/lib/contrast/agent/patching/policy/patch.rb +9 -9
  42. data/lib/contrast/agent/patching/policy/patch_status.rb +10 -3
  43. data/lib/contrast/agent/patching/policy/policy.rb +13 -15
  44. data/lib/contrast/agent/patching/policy/policy_node.rb +19 -21
  45. data/lib/contrast/agent/patching/policy/trigger_node.rb +1 -1
  46. data/lib/contrast/agent/protect/input_analyzer/input_analyzer.rb +125 -125
  47. data/lib/contrast/agent/protect/policy/applies_no_sqli_rule.rb +2 -2
  48. data/lib/contrast/agent/protect/policy/applies_path_traversal_rule.rb +1 -1
  49. data/lib/contrast/agent/protect/policy/applies_xxe_rule.rb +1 -1
  50. data/lib/contrast/agent/protect/policy/rule_applicator.rb +4 -4
  51. data/lib/contrast/agent/protect/rule/base.rb +30 -18
  52. data/lib/contrast/agent/protect/rule/base_service.rb +31 -14
  53. data/lib/contrast/agent/protect/rule/cmd_injection.rb +16 -9
  54. data/lib/contrast/agent/protect/rule/cmdi/cmdi_input_classification.rb +3 -3
  55. data/lib/contrast/agent/protect/rule/default_scanner.rb +2 -1
  56. data/lib/contrast/agent/protect/rule/deserialization.rb +18 -7
  57. data/lib/contrast/agent/protect/rule/http_method_tampering/http_method_tampering_input_classification.rb +74 -74
  58. data/lib/contrast/agent/protect/rule/http_method_tampering.rb +71 -53
  59. data/lib/contrast/agent/protect/rule/no_sqli/no_sqli_input_classification.rb +3 -3
  60. data/lib/contrast/agent/protect/rule/no_sqli.rb +15 -16
  61. data/lib/contrast/agent/protect/rule/path_traversal.rb +13 -3
  62. data/lib/contrast/agent/protect/rule/sqli/sqli_input_classification.rb +2 -2
  63. data/lib/contrast/agent/protect/rule/sqli/sqli_worth_watching.rb +1 -1
  64. data/lib/contrast/agent/protect/rule/sqli.rb +16 -23
  65. data/lib/contrast/agent/protect/rule/unsafe_file_upload/unsafe_file_upload_input_classification.rb +61 -61
  66. data/lib/contrast/agent/protect/rule/unsafe_file_upload/unsafe_file_upload_matcher.rb +29 -29
  67. data/lib/contrast/agent/protect/rule/unsafe_file_upload.rb +32 -32
  68. data/lib/contrast/agent/protect/rule/xss.rb +17 -0
  69. data/lib/contrast/agent/protect/rule/xxe/entity_wrapper.rb +14 -13
  70. data/lib/contrast/agent/protect/rule/xxe.rb +25 -3
  71. data/lib/contrast/agent/reaction_processor.rb +1 -1
  72. data/lib/contrast/agent/reporting/attack_result/rasp_rule_sample.rb +36 -36
  73. data/lib/contrast/agent/reporting/masker/masker.rb +10 -10
  74. data/lib/contrast/agent/reporting/masker/masker_utils.rb +2 -2
  75. data/lib/contrast/agent/reporting/reporting_events/application_activity.rb +8 -10
  76. data/lib/contrast/agent/reporting/reporting_events/application_defend_activity.rb +53 -5
  77. data/lib/contrast/agent/reporting/reporting_events/application_defend_attack_activity.rb +25 -19
  78. data/lib/contrast/agent/reporting/reporting_events/application_defend_attack_sample.rb +129 -17
  79. data/lib/contrast/agent/reporting/reporting_events/application_defend_attack_sample_activity.rb +20 -21
  80. data/lib/contrast/agent/reporting/reporting_events/application_defend_attack_sample_stack.rb +22 -0
  81. data/lib/contrast/agent/reporting/reporting_events/application_defend_attacker_activity.rb +26 -12
  82. data/lib/contrast/agent/reporting/reporting_events/application_inventory.rb +5 -5
  83. data/lib/contrast/agent/reporting/reporting_events/application_inventory_activity.rb +7 -5
  84. data/lib/contrast/agent/reporting/reporting_events/application_startup.rb +4 -10
  85. data/lib/contrast/agent/reporting/reporting_events/discovered_route.rb +1 -1
  86. data/lib/contrast/agent/reporting/reporting_utilities/headers.rb +1 -2
  87. data/lib/contrast/agent/reporting/reporting_utilities/reporter_client.rb +6 -6
  88. data/lib/contrast/agent/reporting/reporting_utilities/response.rb +1 -1
  89. data/lib/contrast/agent/reporting/reporting_utilities/response_extractor.rb +1 -1
  90. data/lib/contrast/agent/reporting/reporting_utilities/response_handler.rb +7 -7
  91. data/lib/contrast/agent/reporting/reporting_utilities/response_handler_utils.rb +15 -15
  92. data/lib/contrast/agent/reporting/settings/application_settings.rb +1 -1
  93. data/lib/contrast/agent/reporting/settings/assess.rb +5 -5
  94. data/lib/contrast/agent/reporting/settings/assess_server_feature.rb +3 -3
  95. data/lib/contrast/agent/reporting/settings/exclusions.rb +3 -3
  96. data/lib/contrast/agent/reporting/settings/protect.rb +20 -5
  97. data/lib/contrast/agent/reporting/settings/protect_server_feature.rb +5 -5
  98. data/lib/contrast/agent/reporting/settings/reaction.rb +3 -3
  99. data/lib/contrast/agent/reporting/settings/sensitive_data_masking.rb +2 -2
  100. data/lib/contrast/agent/reporting/settings/sensitive_data_masking_rule.rb +2 -2
  101. data/lib/contrast/agent/reporting/settings/server_features.rb +2 -2
  102. data/lib/contrast/agent/request.rb +2 -2
  103. data/lib/contrast/agent/request_context.rb +23 -19
  104. data/lib/contrast/agent/request_context_extend.rb +10 -23
  105. data/lib/contrast/agent/request_handler.rb +1 -1
  106. data/lib/contrast/agent/rule_set.rb +2 -2
  107. data/lib/contrast/agent/scope.rb +1 -1
  108. data/lib/contrast/agent/telemetry/base.rb +9 -5
  109. data/lib/contrast/agent/telemetry/events/exceptions/obfuscate.rb +119 -0
  110. data/lib/contrast/agent/telemetry/events/exceptions/telemetry_exception_base.rb +2 -2
  111. data/lib/contrast/agent/telemetry/events/exceptions/telemetry_exception_message_exception.rb +1 -1
  112. data/lib/contrast/agent/telemetry/events/exceptions/telemetry_exception_stack_frame.rb +1 -1
  113. data/lib/contrast/agent/telemetry/events/exceptions/telemetry_exceptions_report.rb +16 -18
  114. data/lib/contrast/agent/telemetry/events/startup_metrics_event.rb +2 -2
  115. data/lib/contrast/agent/version.rb +1 -1
  116. data/lib/contrast/api/communication/messaging_queue.rb +1 -1
  117. data/lib/contrast/api/communication/service_lifecycle.rb +1 -1
  118. data/lib/contrast/api/communication/socket.rb +1 -1
  119. data/lib/contrast/api/communication/socket_client.rb +1 -1
  120. data/lib/contrast/api/communication/speedracer.rb +2 -2
  121. data/lib/contrast/api/decorators/agent_startup.rb +10 -9
  122. data/lib/contrast/api/decorators/application_settings.rb +1 -1
  123. data/lib/contrast/api/decorators/application_startup.rb +4 -4
  124. data/lib/contrast/api/decorators/response_type.rb +4 -17
  125. data/lib/contrast/components/agent.rb +1 -1
  126. data/lib/contrast/components/base.rb +1 -1
  127. data/lib/contrast/components/config.rb +6 -6
  128. data/lib/contrast/components/contrast_service.rb +4 -1
  129. data/lib/contrast/components/sampling.rb +1 -1
  130. data/lib/contrast/components/settings.rb +52 -28
  131. data/lib/contrast/config/assess_rules_configuration.rb +1 -1
  132. data/lib/contrast/config/protect_rules_configuration.rb +1 -1
  133. data/lib/contrast/config/root_configuration.rb +1 -1
  134. data/lib/contrast/configuration.rb +4 -4
  135. data/lib/contrast/extension/assess/array.rb +1 -1
  136. data/lib/contrast/extension/assess/erb.rb +1 -1
  137. data/lib/contrast/extension/assess/marshal.rb +1 -1
  138. data/lib/contrast/extension/assess/string.rb +1 -1
  139. data/lib/contrast/extension/extension.rb +2 -2
  140. data/lib/contrast/framework/base_support.rb +8 -8
  141. data/lib/contrast/framework/grape/support.rb +3 -3
  142. data/lib/contrast/framework/manager.rb +5 -5
  143. data/lib/contrast/framework/manager_extend.rb +1 -1
  144. data/lib/contrast/framework/rack/patch/session_cookie.rb +1 -1
  145. data/lib/contrast/framework/rails/patch/action_controller_live_buffer.rb +14 -3
  146. data/lib/contrast/framework/rails/patch/assess_configuration.rb +3 -3
  147. data/lib/contrast/framework/rails/patch/rails_application_configuration.rb +1 -1
  148. data/lib/contrast/framework/rails/patch/support.rb +1 -1
  149. data/lib/contrast/framework/rails/support.rb +2 -2
  150. data/lib/contrast/framework/sinatra/support.rb +1 -1
  151. data/lib/contrast/logger/aliased_logging.rb +29 -22
  152. data/lib/contrast/logger/cef_log.rb +14 -14
  153. data/lib/contrast/logger/format.rb +1 -1
  154. data/lib/contrast/logger/log.rb +8 -8
  155. data/lib/contrast/tasks/config.rb +12 -12
  156. data/lib/contrast/tasks/service.rb +2 -2
  157. data/lib/contrast/utils/assess/tracking_util.rb +4 -4
  158. data/lib/contrast/utils/class_util.rb +4 -4
  159. data/lib/contrast/utils/findings.rb +3 -3
  160. data/lib/contrast/utils/hash_digest.rb +6 -7
  161. data/lib/contrast/utils/head_dump_utils_extend.rb +1 -1
  162. data/lib/contrast/utils/invalid_configuration_util.rb +1 -1
  163. data/lib/contrast/utils/log_utils.rb +4 -4
  164. data/lib/contrast/utils/lru_cache.rb +1 -1
  165. data/lib/contrast/utils/metrics_hash.rb +1 -1
  166. data/lib/contrast/utils/middleware_utils.rb +5 -5
  167. data/lib/contrast/utils/net_http_base.rb +4 -4
  168. data/lib/contrast/utils/os.rb +1 -1
  169. data/lib/contrast/utils/patching/policy/patch_utils.rb +2 -2
  170. data/lib/contrast/utils/request_utils.rb +2 -2
  171. data/lib/contrast/utils/sha256_builder.rb +4 -4
  172. data/lib/contrast/utils/stack_trace_utils.rb +31 -13
  173. data/lib/contrast/utils/telemetry.rb +6 -9
  174. data/lib/contrast/utils/telemetry_client.rb +5 -5
  175. data/lib/contrast/utils/telemetry_hash.rb +1 -1
  176. data/lib/contrast/utils/telemetry_identifier.rb +2 -2
  177. data/lib/contrast/utils/timer.rb +1 -1
  178. data/resources/assess/policy.json +1 -1
  179. metadata +15 -13
@@ -50,9 +50,9 @@ module Contrast
50
50
 
51
51
  idx += 1
52
52
  if Contrast::Utils::DuckUtils.iterable_hash?(obj)
53
- handle_hash obj, idx
53
+ handle_hash(obj, idx)
54
54
  elsif Contrast::Utils::DuckUtils.iterable_enumerable?(obj)
55
- handle_enumerable obj, idx
55
+ handle_enumerable(obj, idx)
56
56
  else
57
57
  Contrast::Agent::Assess::Tracker.tracked?(obj)
58
58
  end
@@ -79,9 +79,9 @@ module Contrast
79
79
 
80
80
  idx += 1
81
81
  if Contrast::Utils::DuckUtils.iterable_hash?(obj)
82
- handle_hash obj, idx
82
+ handle_hash(obj, idx)
83
83
  elsif Contrast::Utils::DuckUtils.iterable_enumerable?(obj)
84
- handle_enumerable obj, idx
84
+ handle_enumerable(obj, idx)
85
85
  else
86
86
  Contrast::Agent::Assess::Tracker.trackable?(obj)
87
87
  end
@@ -33,7 +33,7 @@ module Contrast
33
33
  # need to check
34
34
  # @return [Boolean] if this method specifically was prepended
35
35
  def prepended_method? mod, method_policy
36
- target_module = determine_target_class mod, method_policy.instance_method
36
+ target_module = determine_target_class(mod, method_policy.instance_method)
37
37
  ancestors = target_module.ancestors
38
38
  return false unless prepended?(target_module, ancestors)
39
39
 
@@ -60,13 +60,13 @@ module Contrast
60
60
  # Only treat object like a string if it actually is a string+ some subclasses of String override string
61
61
  # methods we depend on
62
62
  if object.cs__class == String
63
- return @string_cache[object] if @string_cache.key? object
63
+ return @string_cache[object] if @string_cache.key?(object)
64
64
 
65
65
  @string_cache[object] = to_cached_string(object) || object.dup
66
66
  else
67
- return @lru_cache[object.__id__] if @lru_cache.key? object.__id__
67
+ return @lru_cache[object.__id__] if @lru_cache.key?(object.__id__)
68
68
 
69
- @lru_cache[object.__id__] = convert_object object
69
+ @lru_cache[object.__id__] = convert_object(object)
70
70
  end
71
71
  end
72
72
 
@@ -34,7 +34,7 @@ module Contrast
34
34
  # @param ret [Object] the Return of the invoked method
35
35
  # @param args [Array<Object>] the Arguments with which the method was invoked
36
36
  def collect_finding trigger_node, source, object, ret, *args
37
- push trigger_node, source, object, ret, args
37
+ push(trigger_node, source, object, ret, args)
38
38
  logger.trace('Finding collected', node_id: trigger_node.id,
39
39
  source_id: source.__id__,
40
40
  rule: trigger_node.rule_id)
@@ -52,11 +52,11 @@ module Contrast
52
52
 
53
53
  while @_collection.any?
54
54
  finding = @_collection.pop
55
- Contrast::Agent::Assess::Policy::TriggerMethod.build_finding finding[:trigger_node],
55
+ Contrast::Agent::Assess::Policy::TriggerMethod.build_finding(finding[:trigger_node],
56
56
  finding[:source],
57
57
  finding[:object],
58
58
  finding[:ret],
59
- finding[:args]
59
+ finding[:args])
60
60
  end
61
61
  true
62
62
  end
@@ -15,8 +15,8 @@ module Contrast
15
15
  class HashDigest < Digest::Class
16
16
  include Digest::Instance
17
17
  extend Contrast::Utils::HashDigestExtend
18
-
19
18
  CONTENT_LENGTH_HEADER = 'Content-Length'
19
+ CHARS = %w[a b c d e f g].cs__freeze
20
20
  CRYPTO_RULES = %w[crypto-bad-ciphers crypto-bad-mac].cs__freeze
21
21
  CONFIG_PATH_KEY = 'path'
22
22
  CONFIG_SESSION_ID_KEY = 'sessionId'
@@ -24,6 +24,11 @@ module Contrast
24
24
  CLASS_CONSTANT_NAME_KEY = 'name'
25
25
  CLASS_LINE_NO_KEY = 'lineNo'
26
26
 
27
+ def initialize
28
+ super
29
+ @crc32 = 0
30
+ end
31
+
27
32
  # Update to CRC checksum the finding route and verb if finding route
28
33
  # [Contrast::Api::Dtm::RouteCoverage] is available else update the passed
29
34
  # request or Contrast::REQUEST_TRACKER.current.request uri and used request
@@ -77,7 +82,6 @@ module Contrast
77
82
  end
78
83
  end
79
84
 
80
- CHARS = %w[a b c d e f g].cs__freeze
81
85
  # This method converts and integer value for length into a string value
82
86
  # that we can hash on, based on the logarithmic value of the length, and
83
87
  # updates the current hash with that value.
@@ -86,11 +90,6 @@ module Contrast
86
90
  update(CHARS[Math.log10(chr.to_s.length).to_i] || CHARS[-1])
87
91
  end
88
92
 
89
- def initialize
90
- super
91
- @crc32 = 0
92
- end
93
-
94
93
  # Converts given string to CRC checksum. CRC32 checksum ensures that If error
95
94
  # of a single bit occurs, the CRC checksum will fail, regardless of any other
96
95
  # property of the transmitted data, including its length. Called several times
@@ -13,7 +13,7 @@ module Contrast
13
13
  delay = control[:delay]
14
14
  clean = control[:clean]
15
15
 
16
- logger.info <<~WARNING
16
+ logger.info(<<~WARNING)
17
17
  *****************************************************
18
18
  ******** HEAP DUMP HAS BEEN ENABLED ********
19
19
  *** APPLICATION PROCESS WILL EXIT UPON COMPLETION ***
@@ -50,7 +50,7 @@ module Contrast
50
50
  new_preflight_message.data = "#{ rule_id },#{ hash_code }"
51
51
  new_preflight.messages << new_preflight_message
52
52
 
53
- ruby_finding = Contrast::Agent::Reporting::Finding.new rule_id
53
+ ruby_finding = Contrast::Agent::Reporting::Finding.new(rule_id)
54
54
  ruby_finding.hash_code = hash_code
55
55
  set_new_finding_properties(ruby_finding, user_provided_options, call_location)
56
56
  Contrast::Agent.reporter&.send_event(new_preflight)
@@ -64,13 +64,13 @@ module Contrast
64
64
  # Log once when the path is invalid. We'll change to this path, so no
65
65
  # need to log again.
66
66
  if previous_path != DEFAULT_NAME
67
- $stdout.puts "[!] Unable to write to '#{ path }'. Writing to default log '#{ DEFAULT_NAME }' instead."
67
+ $stdout.puts("[!] Unable to write to '#{ path }'. Writing to default log '#{ DEFAULT_NAME }' instead.")
68
68
  end
69
69
  DEFAULT_NAME
70
70
  else
71
71
  # Log once when the path is invalid. We'll change to this path, so no
72
72
  # need to log again.
73
- $stdout.puts "[!] Unable to write to '#{ path }'. Writing to standard out instead."
73
+ $stdout.puts("[!] Unable to write to '#{ path }'. Writing to standard out instead.")
74
74
  STDOUT_STR
75
75
  end
76
76
  end
@@ -141,7 +141,7 @@ module Contrast
141
141
  end
142
142
  logger.progname = PROGNAME
143
143
  logger.level = level_const
144
- change_logger_formatter logger
144
+ change_logger_formatter(logger)
145
145
  logger
146
146
  end
147
147
 
@@ -183,7 +183,7 @@ module Contrast
183
183
  DEFAULT_METADATA
184
184
  end
185
185
  app_name = ::Contrast::APP_CONTEXT.app_name
186
- attach_request_and_sender_info message, sender_info
186
+ attach_request_and_sender_info(message, sender_info)
187
187
  message << "request=#{ context.request.url } "
188
188
  message << "requestMethod=#{ request_method } "
189
189
  message << "app=#{ app_name } "
@@ -6,7 +6,7 @@ module Contrast
6
6
  # A LRU(Least Recently Used) Cache store.
7
7
  class LRUCache
8
8
  def initialize capacity = 500
9
- raise StandardError 'Capacity must be bigger than 0' if capacity <= 0
9
+ raise(StandardError('Capacity must be bigger than 0')) if capacity <= 0
10
10
 
11
11
  @capacity = capacity
12
12
  @cache = {}
@@ -29,7 +29,7 @@ module Contrast
29
29
  value_val = value.dup
30
30
  key_val.strip! if key_val.cs__is_a?(String)
31
31
  value_val.strip! if value_val.cs__is_a?(String)
32
- return unless valid_pair? key_val, value_val
32
+ return unless valid_pair?(key_val, value_val)
33
33
 
34
34
  key_val.downcase!
35
35
  key_val.strip!
@@ -37,12 +37,12 @@ module Contrast
37
37
  def handle_exception exception
38
38
  if security_exception?(exception)
39
39
  exception_control = ::Contrast::AGENT.exception_control
40
- raise exception unless exception_control[:enable]
40
+ raise(exception) unless exception_control[:enable]
41
41
 
42
42
  [exception_control[:status], {}, [exception_control[:message]]]
43
43
  else
44
44
  logger.debug('Re-throwing original error', exception)
45
- raise exception
45
+ raise(exception)
46
46
  end
47
47
  end
48
48
 
@@ -69,8 +69,8 @@ module Contrast
69
69
  return unless Contrast::Agent::Telemetry::Base.enabled?
70
70
  return unless Contrast::Utils::Telemetry.create_telemetry_file
71
71
 
72
- logger.info Contrast::Utils::Telemetry.disclaimer
73
- $stdout.print Contrast::Utils::Telemetry.disclaimer
72
+ logger.info(Contrast::Utils::Telemetry.disclaimer)
73
+ $stdout.print(Contrast::Utils::Telemetry.disclaimer)
74
74
  true
75
75
  end
76
76
 
@@ -80,7 +80,7 @@ module Contrast
80
80
  end
81
81
  rescue Contrast::SecurityException => e
82
82
  logger.trace('Security Exception raised during application lifecycle to prevent an attack', e)
83
- raise e
83
+ raise(e)
84
84
  end
85
85
  end
86
86
  end
@@ -31,14 +31,14 @@ module Contrast
31
31
  return if addr.scheme != 'https' && !addr.host.to_s.include?('localhost') # TODO: RUBY-99999 allow http w/ localhost # rubocop:disable Layout/LineLength
32
32
 
33
33
  proxy_addr = URI(Contrast::API.proxy_url) if proxy_enabled?
34
- net_http_client = initialize_client addr, proxy_addr, use_proxy, use_custom_cert
34
+ net_http_client = initialize_client(addr, proxy_addr, use_proxy, use_custom_cert)
35
35
  return if net_http_client.nil?
36
36
 
37
37
  net_http_client.start
38
38
  return unless net_http_client.started?
39
39
 
40
40
  logger.debug("Starting #{ service_name } connection test")
41
- return unless connection_verified? net_http_client
41
+ return unless connection_verified?(net_http_client)
42
42
 
43
43
  logger.debug('Client verified', service: service_name, url: url)
44
44
  net_http_client
@@ -63,7 +63,7 @@ module Contrast
63
63
  response = client.request(Net::HTTP::Get.new(client.address))
64
64
  verify_cert = client.address.to_s.include?('localhost') ||
65
65
  OpenSSL::SSL.verify_certificate_identity(client.peer_cert, client.address)
66
- resolved = resolved? client.address, ipaddr
66
+ resolved = resolved?(client.address, ipaddr)
67
67
  @_connection_verified = if resolved && response && verify_cert
68
68
  true
69
69
  else
@@ -91,7 +91,7 @@ module Contrast
91
91
  def resolved? address, ipaddr
92
92
  return @_resolved unless @_resolved.nil?
93
93
 
94
- @_resolved = if (addresses = Resolv.getaddresses address)
94
+ @_resolved = if (addresses = Resolv.getaddresses(address))
95
95
  addresses.any? { |addr| addr.include?(ipaddr) }
96
96
  else
97
97
  false
@@ -42,7 +42,7 @@ module Contrast
42
42
  end
43
43
 
44
44
  def mac?
45
- @_mac = RUBY_PLATFORM.include? 'darwin' if @_mac.nil?
45
+ @_mac = RUBY_PLATFORM.include?('darwin') if @_mac.nil?
46
46
  @_mac
47
47
  end
48
48
 
@@ -58,7 +58,7 @@ module Contrast
58
58
  rescue Contrast::SecurityException => e
59
59
  # We were told to block something, so we gotta. Don't catch this one, let it get back to our Middleware or
60
60
  # even all the way out to the framework
61
- raise e
61
+ raise(e)
62
62
  rescue StandardError => e
63
63
  # Anything else was our bad and we gotta catch that to allow for normal application flow
64
64
  logger.error('Unable to apply pre patch to method.', e)
@@ -155,7 +155,7 @@ module Contrast
155
155
  rescue Exception => e # rubocop:disable Lint/RescueException
156
156
  logger.error('Unable to assess method call.', e)
157
157
  handle_return(propagated_ret, source_ret, ret)
158
- raise e
158
+ raise(e)
159
159
  end
160
160
 
161
161
  # Generic invocation of the Inventory or Protect patch which apply to the given method.
@@ -31,7 +31,7 @@ module Contrast
31
31
  k = Contrast::Utils::StringUtils.force_utf8(k)
32
32
  nested_prefix = prefix.nil? ? k : "#{ prefix }[#{ k }]"
33
33
  hash[k] = Contrast::Utils::ObjectShare::EMPTY_STRING
34
- hash.merge! normalize_params(v, prefix: nested_prefix)
34
+ hash.merge!(normalize_params(v, prefix: nested_prefix))
35
35
  end
36
36
  res[prefix] = Contrast::Utils::ObjectShare::EMPTY_STRING if prefix
37
37
  res
@@ -39,7 +39,7 @@ module Contrast
39
39
  idx = 0
40
40
  res = {}
41
41
  while idx < val.length
42
- res.merge! normalize_params(val[idx], prefix: "#{ prefix }[#{ idx }]")
42
+ res.merge!(normalize_params(val[idx], prefix: "#{ prefix }[#{ idx }]"))
43
43
  idx += 1
44
44
  end
45
45
  res[prefix] = Contrast::Utils::ObjectShare::EMPTY_STRING if prefix
@@ -9,16 +9,16 @@ module Contrast
9
9
  # Utility methods for building and caching hashes from strings
10
10
  class Sha256Builder
11
11
  include Singleton
12
+ # Return a list of "source" files. Ignore metadata files as well as files
13
+ # in the spec, test or exe directories. Could potentially miss important
14
+ # files but good enough for the time being.
15
+ PATHS = '{lib,bin,ext}/**/*.{rb,c,h,c++,cpp,java,rs}'
12
16
 
13
17
  def initialize
14
18
  @sha256_cache = {}
15
19
  @gem_hash_cache = {}
16
20
  end
17
21
 
18
- # Return a list of "source" files. Ignore metadata files as well as files
19
- # in the spec, test or exe directories. Could potentially miss important
20
- # files but good enough for the time being.
21
- PATHS = '{lib,bin,ext}/**/*.{rb,c,h,c++,cpp,java,rs}'
22
22
  def files path
23
23
  if Dir.exist?(path)
24
24
  Dir.glob(File.join(path, PATHS))
@@ -2,6 +2,7 @@
2
2
  # frozen_string_literal: true
3
3
 
4
4
  require 'contrast/utils/object_share'
5
+ require 'contrast/agent/reporting/reporting_events/application_defend_attack_sample_stack'
5
6
  require 'contrast/api'
6
7
 
7
8
  module Contrast
@@ -35,21 +36,18 @@ module Contrast
35
36
  # StackTraceElement for TeamServer to display, excluding any Contrast
36
37
  # code found.
37
38
  #
38
- # @return [Array<Contrast::Api::Dtm::StackTraceElement]
39
+ # @return [Array<Contrast::Api::Dtm::StackTraceElement>]
39
40
  def build_protect_stack_array
40
- stack = caller(2, 20)
41
- return [] unless stack
41
+ build_protect_stack(Contrast::Api::Dtm::StackTraceElement)
42
+ end
42
43
 
43
- stack = reject_caller_entries(stack)
44
- i = 0
45
- stack.map! do |entry|
46
- element = Contrast::Api::Dtm::StackTraceElement.new
47
- element = fill_protect_element(element, entry, i)
48
- i += 1
49
- element
50
- end
51
- stack.compact!
52
- stack
44
+ # Call and translate a caller_locations array to an array of
45
+ # StackTraceElement for TeamServer to display, excluding any Contrast
46
+ # code found.
47
+ #
48
+ # @return [Array<Contrast::Agent::Reporting::ApplicationDefendAttackSampleStack>]
49
+ def build_protect_report_stack_array
50
+ build_protect_stack(Contrast::Agent::Reporting::ApplicationDefendAttackSampleStack)
53
51
  end
54
52
 
55
53
  # Translate a caller array to an array of TraceStacks for TeamServer to
@@ -86,6 +84,26 @@ module Contrast
86
84
  end
87
85
  end
88
86
 
87
+ # @param clazz [Class] Contrast::Api::Dtm::StackTraceElement or
88
+ # Contrast::Agent::Reporting::ApplicationDefendAttackSampleStack
89
+ # @return [Array<Contrast::Agent::Reporting::ApplicationDefendAttackSampleStack|
90
+ # Contrast::Api::Dtm::StackTraceElement>]
91
+ def build_protect_stack clazz
92
+ stack = caller(3, 21)
93
+ return [] unless stack
94
+
95
+ stack = reject_caller_entries(stack)
96
+ i = 0
97
+ stack.map! do |entry|
98
+ element = clazz.new
99
+ element = fill_protect_element(element, entry, i)
100
+ i += 1
101
+ element
102
+ end
103
+ stack.compact!
104
+ stack
105
+ end
106
+
89
107
  # In Contrast UI - there are many ways to render the stacktraces. For
90
108
  # Protect, there are two ways we're concerned about, one for the first
91
109
  # element and then all others.
@@ -31,7 +31,7 @@ module Contrast
31
31
  # @return[Boolean, nil] true if file is created, false if file already exist
32
32
  # and nil if Telemetry is disabled or on unsupported OS.
33
33
  def self.create_telemetry_file
34
- write_mark_file DIR, FILE, CONFIG_DIR
34
+ write_mark_file(DIR, FILE, CONFIG_DIR)
35
35
  end
36
36
 
37
37
  def self.disclaimer
@@ -39,10 +39,7 @@ module Contrast
39
39
  end
40
40
 
41
41
  def self.exceptions_enabled?
42
- # TODO: RUBY-1643 Obfuscate path
43
- # Enabled this once the masking of stack frames is done.
44
- # @_exceptions_enabled = telemetry_exceptions_enabled? if @_exceptions_enabled.nil?
45
- @_exceptions_enabled = false if @_exceptions_enabled.nil?
42
+ @_exceptions_enabled = telemetry_exceptions_enabled? if @_exceptions_enabled.nil?
46
43
  @_exceptions_enabled
47
44
  end
48
45
 
@@ -67,7 +64,7 @@ module Contrast
67
64
  # nor can we write to the "root" directory ( / ). This results in Errno::EROFS exception.
68
65
  # So for the MacOS we would use the config directory of the instrumented application.
69
66
  @dir = config_dir if Contrast::Utils::OS.mac?
70
- return false if File.file? @dir + file
67
+ return false if File.file?(@dir + file)
71
68
  return true if touch_marker(@dir, file)
72
69
 
73
70
  # If we don't have permission to write to root directory use config instead
@@ -78,9 +75,9 @@ module Contrast
78
75
  #
79
76
  # @return[Boolean] true if success, false if fails
80
77
  def touch_marker dir, file
81
- FileUtils.mkdir_p dir unless Dir.exist? dir
82
- FileUtils.touch dir + file
83
- File.file? dir + file
78
+ FileUtils.mkdir_p(dir) unless Dir.exist?(dir)
79
+ FileUtils.touch(dir + file)
80
+ File.file?(dir + file)
84
81
  rescue StandardError => _e
85
82
  false
86
83
  end
@@ -12,10 +12,10 @@ module Contrast
12
12
  module Utils
13
13
  # This module creates a Net::HTTP client and initiates a connection to the provided result
14
14
  class TelemetryClient < NetHttpBase
15
+ include Contrast::Components::Logger::InstanceMethods
15
16
  ENDPOINT = 'api/v1/telemetry/metrics' # /TelemetryEvent.path
16
17
  EXCEPTIONS = 'api/v1/telemetry/exceptions' # /TelemetryExceptions::Event.path
17
18
  SERVICE_NAME = 'Telemetry'
18
- include Contrast::Components::Logger::InstanceMethods
19
19
  # This method initializes the Net::HTTP client we'll need. it will validate
20
20
  # the connection and make the first request. If connection is valid and response
21
21
  # is available then the open connection is returned.
@@ -32,7 +32,7 @@ module Contrast
32
32
  # @param event [Contrast::Agent::Telemetry::Event, Array<Contrast::Agent::Telemetry::TelemetryException::Event>]
33
33
  # @return [Net::HTTP::Post]
34
34
  def build_request event
35
- return unless valid_event? event
35
+ return unless valid_event?(event)
36
36
 
37
37
  string_body = if Array(event).all?(Contrast::Agent::Telemetry::TelemetryException::Event)
38
38
  event.map(&:to_controlled_hash).flatten!
@@ -54,10 +54,10 @@ module Contrast
54
54
  # @param connection[Net::HTTP]
55
55
  def send_request event, connection
56
56
  return if connection.nil? || event.nil?
57
- return unless valid_event? event
57
+ return unless valid_event?(event)
58
58
 
59
- req = build_request event
60
- connection.request req
59
+ req = build_request(event)
60
+ connection.request(req)
61
61
  end
62
62
 
63
63
  # This method will handle the response from the tenant
@@ -18,7 +18,7 @@ module Contrast
18
18
  end
19
19
 
20
20
  def []= key, value
21
- return unless valid_value? value
21
+ return unless valid_value?(value)
22
22
 
23
23
  super(key, value)
24
24
  end
@@ -76,10 +76,10 @@ module Contrast
76
76
  next if primary && !name.include?(primary)
77
77
 
78
78
  # retrieving MAC address from primary network interface or first available
79
- mac = retrieve_mac addr
79
+ mac = retrieve_mac(addr)
80
80
  next unless mac
81
81
 
82
- result = mac if mac && (mac.match? MAC_REGEX)
82
+ result = mac if mac&.match?(MAC_REGEX)
83
83
  break if result
84
84
  end
85
85
  result
@@ -4,7 +4,7 @@
4
4
  module Contrast
5
5
  module Utils
6
6
  # Timer is class that can track state about when an event starts and how long it takes
7
- # Also containes utility methods to get time values in milliseconds
7
+ # Also contains utility methods to get time values in milliseconds
8
8
  class Timer
9
9
  attr_reader :start_ms, :events
10
10
 
@@ -1716,7 +1716,7 @@
1716
1716
  "source":"P0"
1717
1717
  }, {
1718
1718
  "class_name": "BasicObject",
1719
- "instance_method": false,
1719
+ "instance_method": true,
1720
1720
  "method_visibility": "public",
1721
1721
  "method_name":"instance_eval",
1722
1722
  "source":"P0",
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: contrast-agent
3
3
  version: !ruby/object:Gem::Version
4
- version: 6.1.0
4
+ version: 6.1.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - galen.palmer@contrastsecurity.com
@@ -13,7 +13,7 @@ authors:
13
13
  autorequire:
14
14
  bindir: exe
15
15
  cert_chain: []
16
- date: 2022-05-05 00:00:00.000000000 Z
16
+ date: 2022-05-12 00:00:00.000000000 Z
17
17
  dependencies:
18
18
  - !ruby/object:Gem::Dependency
19
19
  name: bundler
@@ -631,22 +631,22 @@ executables:
631
631
  - contrast_service
632
632
  extensions:
633
633
  - ext/cs__common/extconf.rb
634
- - ext/cs__assess_hash/extconf.rb
635
- - ext/cs__assess_array/extconf.rb
636
- - ext/cs__assess_test/extconf.rb
637
- - ext/cs__os_information/extconf.rb
638
- - ext/cs__assess_yield_track/extconf.rb
639
- - ext/cs__assess_kernel/extconf.rb
640
- - ext/cs__assess_module/extconf.rb
641
- - ext/cs__assess_string_interpolation26/extconf.rb
642
- - ext/cs__assess_regexp/extconf.rb
643
- - ext/cs__assess_fiber_track/extconf.rb
644
- - ext/cs__scope/extconf.rb
645
634
  - ext/cs__assess_marshal_module/extconf.rb
635
+ - ext/cs__assess_kernel/extconf.rb
646
636
  - ext/cs__assess_string/extconf.rb
637
+ - ext/cs__assess_test/extconf.rb
638
+ - ext/cs__assess_string_interpolation26/extconf.rb
647
639
  - ext/cs__assess_basic_object/extconf.rb
640
+ - ext/cs__assess_array/extconf.rb
641
+ - ext/cs__assess_regexp/extconf.rb
648
642
  - ext/cs__contrast_patch/extconf.rb
643
+ - ext/cs__assess_hash/extconf.rb
644
+ - ext/cs__scope/extconf.rb
645
+ - ext/cs__assess_fiber_track/extconf.rb
646
+ - ext/cs__assess_module/extconf.rb
647
+ - ext/cs__os_information/extconf.rb
649
648
  - ext/cs__tests/extconf.rb
649
+ - ext/cs__assess_yield_track/extconf.rb
650
650
  extra_rdoc_files: []
651
651
  files:
652
652
  - ".clang-format"
@@ -1007,6 +1007,7 @@ files:
1007
1007
  - lib/contrast/agent/reporting/reporting_events/application_defend_attack_activity.rb
1008
1008
  - lib/contrast/agent/reporting/reporting_events/application_defend_attack_sample.rb
1009
1009
  - lib/contrast/agent/reporting/reporting_events/application_defend_attack_sample_activity.rb
1010
+ - lib/contrast/agent/reporting/reporting_events/application_defend_attack_sample_stack.rb
1010
1011
  - lib/contrast/agent/reporting/reporting_events/application_defend_attacker_activity.rb
1011
1012
  - lib/contrast/agent/reporting/reporting_events/application_inventory.rb
1012
1013
  - lib/contrast/agent/reporting/reporting_events/application_inventory_activity.rb
@@ -1075,6 +1076,7 @@ files:
1075
1076
  - lib/contrast/agent/static_analysis.rb
1076
1077
  - lib/contrast/agent/telemetry/base.rb
1077
1078
  - lib/contrast/agent/telemetry/events/event.rb
1079
+ - lib/contrast/agent/telemetry/events/exceptions/obfuscate.rb
1078
1080
  - lib/contrast/agent/telemetry/events/exceptions/telemetry_exception_base.rb
1079
1081
  - lib/contrast/agent/telemetry/events/exceptions/telemetry_exception_event.rb
1080
1082
  - lib/contrast/agent/telemetry/events/exceptions/telemetry_exception_message.rb