contrast-agent 3.11.0 → 3.13.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.dockerignore +0 -1
- data/.flayignore +1 -0
- data/.gitignore +1 -1
- data/.simplecov +1 -1
- data/Rakefile +31 -0
- data/ext/build_funchook.rb +0 -2
- data/ext/cs__assess_active_record_named/cs__active_record_named.c +7 -2
- data/ext/cs__assess_active_record_named/cs__active_record_named.h +1 -0
- data/ext/cs__assess_array/cs__assess_array.c +2 -1
- data/ext/cs__assess_array/cs__assess_array.h +1 -0
- data/ext/cs__assess_basic_object/cs__assess_basic_object.c +3 -7
- data/ext/cs__assess_basic_object/cs__assess_basic_object.h +2 -1
- data/ext/cs__assess_fiber_track/cs__assess_fiber_track.c +2 -8
- data/ext/cs__assess_fiber_track/cs__assess_fiber_track.h +0 -1
- data/ext/cs__assess_kernel/cs__assess_kernel.c +1 -1
- data/ext/cs__assess_module/cs__assess_module.c +5 -7
- data/ext/cs__assess_module/cs__assess_module.h +3 -0
- data/ext/cs__assess_string_interpolation26/cs__assess_string_interpolation26.c +1 -6
- data/ext/cs__assess_yield_track/cs__assess_yield_track.c +1 -5
- data/ext/cs__assess_yield_track/cs__assess_yield_track.h +0 -1
- data/ext/cs__common/cs__common.c +25 -1
- data/ext/cs__common/cs__common.h +3 -0
- data/ext/cs__common/extconf.rb +0 -14
- data/ext/cs__protect_kernel/cs__protect_kernel.c +4 -2
- data/ext/cs__protect_kernel/cs__protect_kernel.h +1 -0
- data/ext/extconf_common.rb +0 -28
- data/lib/contrast.rb +3 -2
- data/lib/contrast/agent.rb +33 -24
- data/lib/contrast/agent/assess.rb +0 -9
- data/lib/contrast/agent/assess/contrast_event.rb +28 -167
- data/lib/contrast/agent/assess/events/source_event.rb +3 -7
- data/lib/contrast/agent/assess/policy/dynamic_source_factory.rb +1 -1
- data/lib/contrast/agent/assess/policy/patcher.rb +1 -0
- data/lib/contrast/agent/assess/policy/policy_node.rb +5 -99
- data/lib/contrast/agent/assess/policy/policy_scanner.rb +1 -1
- data/lib/contrast/agent/assess/policy/propagation_method.rb +4 -2
- data/lib/contrast/agent/assess/policy/propagation_node.rb +5 -1
- data/lib/contrast/agent/assess/policy/propagator/base.rb +1 -1
- data/lib/contrast/agent/assess/policy/propagator/custom.rb +1 -1
- data/lib/contrast/agent/assess/policy/propagator/database_write.rb +1 -3
- data/lib/contrast/agent/assess/policy/propagator/insert.rb +1 -4
- data/lib/contrast/agent/assess/policy/propagator/match_data.rb +9 -1
- data/lib/contrast/agent/assess/policy/propagator/remove.rb +6 -11
- data/lib/contrast/agent/assess/policy/propagator/select.rb +4 -4
- data/lib/contrast/agent/assess/policy/propagator/split.rb +2 -2
- data/lib/contrast/agent/assess/policy/propagator/substitution.rb +4 -4
- data/lib/contrast/agent/assess/policy/propagator/trim.rb +6 -10
- data/lib/contrast/agent/assess/policy/source_method.rb +1 -2
- data/lib/contrast/agent/assess/policy/trigger/reflected_xss.rb +90 -0
- data/lib/contrast/agent/assess/policy/trigger/xpath.rb +57 -0
- data/lib/contrast/agent/assess/policy/trigger_method.rb +2 -14
- data/lib/contrast/agent/assess/policy/trigger_node.rb +20 -5
- data/lib/contrast/agent/assess/properties.rb +4 -382
- data/lib/contrast/agent/assess/property/evented.rb +78 -0
- data/lib/contrast/agent/assess/property/tagged.rb +339 -0
- data/lib/contrast/agent/assess/rule/base.rb +0 -15
- data/lib/contrast/agent/assess/rule/provider/hardcoded_value_rule.rb +5 -6
- data/lib/contrast/agent/assess/rule/redos.rb +0 -1
- data/lib/contrast/agent/assess/tag.rb +27 -12
- data/lib/contrast/agent/at_exit_hook.rb +4 -2
- data/lib/contrast/agent/class_reopener.rb +9 -4
- data/lib/contrast/agent/exclusion_matcher.rb +2 -3
- data/lib/contrast/agent/inventory/policy/datastores.rb +53 -0
- data/lib/contrast/agent/inventory/policy/policy.rb +1 -1
- data/lib/contrast/agent/middleware.rb +36 -44
- data/lib/contrast/agent/patching/policy/after_load_patch.rb +11 -2
- data/lib/contrast/agent/patching/policy/after_load_patcher.rb +51 -56
- data/lib/contrast/agent/patching/policy/patch.rb +3 -2
- data/lib/contrast/agent/patching/policy/patcher.rb +10 -12
- data/lib/contrast/agent/patching/policy/policy.rb +3 -3
- data/lib/contrast/agent/patching/policy/policy_node.rb +3 -3
- data/lib/contrast/agent/patching/policy/trigger_node.rb +1 -1
- data/lib/contrast/agent/protect/policy/applies_command_injection_rule.rb +63 -0
- data/lib/contrast/agent/protect/policy/applies_deserialization_rule.rb +52 -0
- data/lib/contrast/agent/protect/policy/applies_no_sqli_rule.rb +68 -0
- data/lib/contrast/agent/protect/policy/applies_path_traversal_rule.rb +117 -0
- data/lib/contrast/agent/protect/policy/applies_sqli_rule.rb +54 -0
- data/lib/contrast/agent/protect/policy/applies_xxe_rule.rb +129 -0
- data/lib/contrast/agent/protect/policy/policy.rb +6 -6
- data/lib/contrast/agent/protect/policy/rule_applicator.rb +51 -0
- data/lib/contrast/agent/protect/rule.rb +0 -5
- data/lib/contrast/agent/protect/rule/base.rb +25 -36
- data/lib/contrast/agent/protect/rule/base_service.rb +1 -1
- data/lib/contrast/agent/protect/rule/cmd_injection.rb +3 -3
- data/lib/contrast/agent/protect/rule/http_method_tampering.rb +2 -7
- data/lib/contrast/agent/protect/rule/path_traversal.rb +2 -7
- data/lib/contrast/agent/protect/rule/sqli.rb +4 -4
- data/lib/contrast/agent/protect/rule/xxe.rb +1 -0
- data/lib/contrast/agent/railtie.rb +1 -0
- data/lib/contrast/agent/reaction_processor.rb +3 -3
- data/lib/contrast/agent/request.rb +91 -334
- data/lib/contrast/agent/request_context.rb +17 -18
- data/lib/contrast/agent/request_handler.rb +2 -2
- data/lib/contrast/agent/response.rb +2 -83
- data/lib/contrast/agent/scope.rb +1 -1
- data/lib/contrast/agent/service_heartbeat.rb +8 -10
- data/lib/contrast/agent/static_analysis.rb +2 -3
- data/lib/contrast/agent/thread_watcher.rb +49 -0
- data/lib/contrast/agent/version.rb +1 -1
- data/lib/contrast/agent/worker_thread.rb +24 -0
- data/lib/contrast/api.rb +3 -5
- data/lib/contrast/api/communication.rb +20 -0
- data/lib/contrast/api/communication/connection_status.rb +41 -0
- data/lib/contrast/api/communication/messaging_queue.rb +79 -0
- data/lib/contrast/{utils/service_response_util.rb → api/communication/response_processor.rb} +15 -22
- data/lib/contrast/api/communication/service_lifecycle.rb +61 -0
- data/lib/contrast/api/communication/socket.rb +45 -0
- data/lib/contrast/api/communication/socket_client.rb +76 -0
- data/lib/contrast/api/communication/speedracer.rb +111 -0
- data/lib/contrast/api/communication/tcp_socket.rb +31 -0
- data/lib/contrast/api/communication/unix_socket.rb +27 -0
- data/lib/contrast/api/decorators.rb +10 -0
- data/lib/contrast/api/decorators/address.rb +60 -0
- data/lib/contrast/api/decorators/application_settings.rb +7 -3
- data/lib/contrast/api/decorators/application_update.rb +0 -9
- data/lib/contrast/api/decorators/http_request.rb +139 -0
- data/lib/contrast/api/decorators/message.rb +75 -0
- data/lib/contrast/api/decorators/rasp_rule_sample.rb +28 -0
- data/lib/contrast/api/decorators/route_coverage.rb +57 -0
- data/lib/contrast/api/decorators/trace_event.rb +99 -0
- data/lib/contrast/api/decorators/trace_event_object.rb +57 -0
- data/lib/contrast/api/decorators/trace_event_signature.rb +46 -0
- data/lib/contrast/api/decorators/trace_taint_range.rb +51 -0
- data/lib/contrast/api/decorators/trace_taint_range_tags.rb +109 -0
- data/lib/contrast/api/decorators/user_input.rb +40 -0
- data/lib/contrast/components/agent.rb +17 -12
- data/lib/contrast/components/app_context.rb +27 -2
- data/lib/contrast/components/assess.rb +25 -15
- data/lib/contrast/components/config.rb +4 -9
- data/lib/contrast/components/contrast_service.rb +23 -67
- data/lib/contrast/components/interface.rb +5 -13
- data/lib/contrast/components/inventory.rb +5 -1
- data/lib/contrast/components/logger.rb +2 -2
- data/lib/contrast/components/protect.rb +40 -4
- data/lib/contrast/components/scope.rb +2 -52
- data/lib/contrast/components/settings.rb +18 -18
- data/lib/contrast/config/protect_rules_configuration.rb +0 -1
- data/lib/contrast/configuration.rb +2 -2
- data/lib/contrast/{extensions/ruby_core → extension}/assess.rb +12 -15
- data/lib/contrast/extension/assess/array.rb +77 -0
- data/lib/contrast/{extensions/ruby_core → extension}/assess/assess_extension.rb +3 -4
- data/lib/contrast/{extensions/ruby_core → extension}/assess/erb.rb +0 -0
- data/lib/contrast/extension/assess/eval_trigger.rb +78 -0
- data/lib/contrast/{extensions/ruby_core → extension}/assess/exec_trigger.rb +1 -1
- data/lib/contrast/{extensions/ruby_core → extension}/assess/fiber.rb +7 -6
- data/lib/contrast/{extensions/ruby_core → extension}/assess/hash.rb +2 -2
- data/lib/contrast/extension/assess/kernel.rb +110 -0
- data/lib/contrast/{extensions/ruby_core → extension}/assess/regexp.rb +4 -4
- data/lib/contrast/{extensions/ruby_core → extension}/assess/string.rb +6 -6
- data/lib/contrast/{extensions/ruby_core → extension}/delegator.rb +0 -0
- data/lib/contrast/{extensions/ruby_core → extension}/inventory.rb +2 -3
- data/lib/contrast/extension/kernel.rb +54 -0
- data/lib/contrast/{extensions/ruby_core → extension}/module.rb +0 -0
- data/lib/contrast/{extensions/ruby_core → extension}/protect.rb +2 -2
- data/lib/contrast/extension/protect/kernel.rb +44 -0
- data/lib/contrast/{extensions/ruby_core → extension}/protect/psych.rb +1 -1
- data/lib/contrast/{extensions/ruby_core → extension}/thread.rb +0 -0
- data/lib/contrast/framework/base_support.rb +22 -23
- data/lib/contrast/framework/manager.rb +31 -15
- data/lib/contrast/framework/rack/patch/session_cookie.rb +126 -0
- data/lib/contrast/framework/rack/patch/support.rb +24 -0
- data/lib/contrast/framework/rack/support.rb +22 -0
- data/lib/contrast/framework/rails/patch/action_controller_live_buffer.rb +41 -0
- data/lib/contrast/framework/rails/patch/assess_configuration.rb +102 -0
- data/lib/contrast/framework/rails/patch/rails_application_configuration.rb +31 -0
- data/lib/contrast/framework/rails/patch/support.rb +67 -0
- data/lib/contrast/framework/rails/rewrite/action_controller_railties_helper_inherited.rb +34 -0
- data/lib/contrast/framework/rails/rewrite/active_record_attribute_methods_read.rb +39 -0
- data/lib/contrast/framework/rails/rewrite/active_record_named.rb +73 -0
- data/lib/contrast/framework/rails/rewrite/active_record_time_zone_inherited.rb +33 -0
- data/lib/contrast/framework/rails/support.rb +86 -0
- data/lib/contrast/framework/sinatra/patch/base.rb +83 -0
- data/lib/contrast/framework/sinatra/patch/support.rb +27 -0
- data/lib/contrast/framework/sinatra/support.rb +98 -0
- data/lib/contrast/funchook/funchook.rb +45 -0
- data/lib/contrast/logger/application.rb +80 -0
- data/lib/contrast/logger/format.rb +51 -0
- data/lib/contrast/{agent/logger.rb → logger/log.rb} +39 -63
- data/lib/contrast/logger/time.rb +50 -0
- data/lib/contrast/tasks/config.rb +54 -0
- data/lib/contrast/tasks/service.rb +1 -5
- data/lib/contrast/utils/assess/tracking_util.rb +45 -20
- data/lib/contrast/utils/class_util.rb +4 -2
- data/lib/contrast/utils/gemfile_reader.rb +2 -2
- data/lib/contrast/utils/hash_digest.rb +13 -9
- data/lib/contrast/utils/invalid_configuration_util.rb +2 -18
- data/lib/contrast/utils/inventory_util.rb +2 -7
- data/lib/contrast/utils/job_servers_running.rb +4 -2
- data/lib/contrast/utils/object_share.rb +0 -2
- data/lib/contrast/utils/os.rb +16 -4
- data/lib/contrast/utils/stack_trace_utils.rb +0 -1
- data/lib/contrast/utils/tag_util.rb +1 -1
- data/lib/contrast/utils/thread_tracker.rb +1 -14
- data/lib/contrast/utils/timer.rb +1 -17
- data/resources/assess/policy.json +9 -50
- data/resources/inventory/policy.json +2 -2
- data/resources/protect/policy.json +6 -6
- data/ruby-agent.gemspec +9 -5
- data/service_executables/VERSION +1 -1
- data/service_executables/linux/contrast-service +0 -0
- data/service_executables/mac/contrast-service +0 -0
- metadata +103 -139
- data/funchook/Makefile +0 -29
- data/funchook/autom4te.cache/output.0 +0 -4964
- data/funchook/autom4te.cache/requests +0 -77
- data/funchook/autom4te.cache/traces.0 +0 -361
- data/funchook/config.log +0 -651
- data/funchook/config.status +0 -1015
- data/funchook/configure +0 -4964
- data/funchook/src/Makefile +0 -70
- data/funchook/src/config.h +0 -101
- data/funchook/src/config.h.in +0 -100
- data/funchook/src/decoder.o +0 -0
- data/funchook/src/distorm.o +0 -0
- data/funchook/src/funchook.o +0 -0
- data/funchook/src/funchook_io.o +0 -0
- data/funchook/src/funchook_syscall.o +0 -0
- data/funchook/src/funchook_unix.o +0 -0
- data/funchook/src/funchook_x86.o +0 -0
- data/funchook/src/instructions.o +0 -0
- data/funchook/src/insts.o +0 -0
- data/funchook/src/libfunchook.dylib +0 -0
- data/funchook/src/mnemonics.o +0 -0
- data/funchook/src/operands.o +0 -0
- data/funchook/src/os_func.o +0 -0
- data/funchook/src/os_func_unix.o +0 -0
- data/funchook/src/prefix.o +0 -0
- data/funchook/src/printf_base.o +0 -0
- data/funchook/src/textdefs.o +0 -0
- data/funchook/src/wstring.o +0 -0
- data/funchook/test/Makefile +0 -43
- data/funchook/test/funchook_test +0 -0
- data/funchook/test/libfunchook_test.so +0 -0
- data/funchook/test/libfunchook_test.so.dSYM/Contents/Info.plist +0 -20
- data/funchook/test/libfunchook_test.so.dSYM/Contents/Resources/DWARF/libfunchook_test.so +0 -0
- data/funchook/test/test_main.o +0 -0
- data/funchook/test/x86_64_test.o +0 -0
- data/lib/contrast/agent/assess/adjusted_span.rb +0 -27
- data/lib/contrast/agent/assess/rule/csrf.rb +0 -66
- data/lib/contrast/agent/assess/rule/csrf/csrf_action.rb +0 -28
- data/lib/contrast/agent/assess/rule/csrf/csrf_applicator.rb +0 -53
- data/lib/contrast/agent/assess/rule/csrf/csrf_watcher.rb +0 -136
- data/lib/contrast/agent/assess/rule/response_scanning_rule.rb +0 -47
- data/lib/contrast/agent/assess/rule/response_watcher.rb +0 -36
- data/lib/contrast/agent/assess/rule/watcher.rb +0 -36
- data/lib/contrast/agent/feature_state.rb +0 -346
- data/lib/contrast/agent/protect/rule/csrf.rb +0 -119
- data/lib/contrast/agent/protect/rule/csrf/csrf_evaluator.rb +0 -100
- data/lib/contrast/agent/protect/rule/csrf/csrf_token_injector.rb +0 -85
- data/lib/contrast/agent/settings_state.rb +0 -88
- data/lib/contrast/agent/socket_client.rb +0 -134
- data/lib/contrast/api/connection_status.rb +0 -49
- data/lib/contrast/api/decorators/exclusion.rb +0 -20
- data/lib/contrast/api/socket.rb +0 -43
- data/lib/contrast/api/speedracer.rb +0 -188
- data/lib/contrast/api/tcp_socket.rb +0 -29
- data/lib/contrast/api/unix_socket.rb +0 -25
- data/lib/contrast/extensions/framework/rack/cookie.rb +0 -24
- data/lib/contrast/extensions/framework/rack/request.rb +0 -24
- data/lib/contrast/extensions/framework/rack/response.rb +0 -23
- data/lib/contrast/extensions/framework/rails/action_controller_inheritance.rb +0 -39
- data/lib/contrast/extensions/framework/rails/action_controller_railties_helper_inherited.rb +0 -20
- data/lib/contrast/extensions/framework/rails/active_record.rb +0 -26
- data/lib/contrast/extensions/framework/rails/active_record_named.rb +0 -58
- data/lib/contrast/extensions/framework/rails/active_record_time_zone_inherited.rb +0 -21
- data/lib/contrast/extensions/framework/rails/buffer.rb +0 -28
- data/lib/contrast/extensions/framework/rails/configuration.rb +0 -27
- data/lib/contrast/extensions/framework/sinatra/base.rb +0 -59
- data/lib/contrast/extensions/ruby_core/assess/array.rb +0 -59
- data/lib/contrast/extensions/ruby_core/assess/basic_object.rb +0 -15
- data/lib/contrast/extensions/ruby_core/assess/kernel.rb +0 -96
- data/lib/contrast/extensions/ruby_core/assess/module.rb +0 -14
- data/lib/contrast/extensions/ruby_core/assess/tilt_template_trigger.rb +0 -78
- data/lib/contrast/extensions/ruby_core/assess/xpath_library_trigger.rb +0 -40
- data/lib/contrast/extensions/ruby_core/eval_trigger.rb +0 -51
- data/lib/contrast/extensions/ruby_core/inventory/datastores.rb +0 -37
- data/lib/contrast/extensions/ruby_core/protect/applies_command_injection_rule.rb +0 -61
- data/lib/contrast/extensions/ruby_core/protect/applies_deserialization_rule.rb +0 -50
- data/lib/contrast/extensions/ruby_core/protect/applies_no_sqli_rule.rb +0 -66
- data/lib/contrast/extensions/ruby_core/protect/applies_path_traversal_rule.rb +0 -115
- data/lib/contrast/extensions/ruby_core/protect/applies_sqli_rule.rb +0 -53
- data/lib/contrast/extensions/ruby_core/protect/applies_xxe_rule.rb +0 -127
- data/lib/contrast/extensions/ruby_core/protect/kernel.rb +0 -30
- data/lib/contrast/extensions/ruby_core/protect/rule_applicator.rb +0 -50
- data/lib/contrast/framework/rails_support.rb +0 -104
- data/lib/contrast/framework/sinatra_application_helper.rb +0 -49
- data/lib/contrast/framework/sinatra_support.rb +0 -104
- data/lib/contrast/framework/view_technologies_descriptor.rb +0 -21
- data/lib/contrast/internal_exception.rb +0 -8
- data/lib/contrast/utils/cache.rb +0 -58
- data/lib/contrast/utils/data_store_util.rb +0 -23
- data/lib/contrast/utils/rack_assess_session_cookie.rb +0 -104
- data/lib/contrast/utils/rails_assess_configuration.rb +0 -95
- data/lib/contrast/utils/random_util.rb +0 -22
- data/lib/contrast/utils/service_sender_util.rb +0 -110
- data/lib/contrast/utils/sinatra_helper.rb +0 -49
- data/resources/csrf/inject.js +0 -44
@@ -14,7 +14,7 @@ module Contrast
|
|
14
14
|
# in a standardized and normalized format which the Agent understands.
|
15
15
|
class RequestContext
|
16
16
|
include Contrast::Components::Interface
|
17
|
-
access_component :
|
17
|
+
access_component :agent, :analysis, :logging, :scope
|
18
18
|
|
19
19
|
EMPTY_INPUT_ANALYSIS_PB = Contrast::Api::Settings::InputAnalysis.new
|
20
20
|
|
@@ -90,10 +90,7 @@ module Contrast
|
|
90
90
|
# For TS routes
|
91
91
|
@observed_route.signature = route.route
|
92
92
|
@observed_route.verb = route.verb
|
93
|
-
@observed_route.
|
94
|
-
|
95
|
-
# TODO: SPEED-273: deprecate when SR handles this. ContrastUI API currently does not allow empty url, so we have to provide a default
|
96
|
-
@observed_route.url = route.url.empty? ? Contrast::Utils::ObjectShare::SLASH : route.url
|
93
|
+
@observed_route.url = route.url if route.url
|
97
94
|
end
|
98
95
|
|
99
96
|
# Collect the results for the given rule with the given action
|
@@ -111,10 +108,11 @@ module Contrast
|
|
111
108
|
end
|
112
109
|
|
113
110
|
def service_extract_request
|
111
|
+
return false unless AGENT.enabled?
|
114
112
|
return false unless PROTECT.enabled?
|
115
113
|
return false if @do_not_track
|
116
114
|
|
117
|
-
service_response =
|
115
|
+
service_response = Contrast::Agent.messaging_queue.send_event_immediately(@activity.http_request)
|
118
116
|
return false unless service_response
|
119
117
|
|
120
118
|
handle_protect_state(service_response)
|
@@ -128,8 +126,8 @@ module Contrast
|
|
128
126
|
logger.trace('Analysis from Contrast Service was empty.')
|
129
127
|
false
|
130
128
|
end
|
131
|
-
rescue Contrast::SecurityException
|
132
|
-
raise
|
129
|
+
rescue Contrast::SecurityException => e
|
130
|
+
raise e
|
133
131
|
rescue StandardError => e
|
134
132
|
logger.warn('Unable to extract Contrast Service information from request', e)
|
135
133
|
false
|
@@ -139,21 +137,20 @@ module Contrast
|
|
139
137
|
# when the protect state indicates a security exception should be thrown. This method
|
140
138
|
# ensures that the attack reports are generated. Normally these should be generated on
|
141
139
|
# Speedracer for any attacks detected during prefilter.
|
140
|
+
#
|
141
|
+
# @param agent_settings [Contrast::Api::Settings::AgentSettings]
|
142
142
|
def handle_protect_state agent_settings
|
143
|
-
return unless agent_settings
|
144
|
-
return unless agent_settings.protect_state
|
145
|
-
|
146
|
-
@uuid = agent_settings.protect_state.uuid
|
147
|
-
@do_not_track = true unless agent_settings.protect_state.track_request
|
143
|
+
return unless agent_settings&.protect_state
|
148
144
|
|
149
|
-
|
145
|
+
state = agent_settings.protect_state
|
146
|
+
@uuid = state.uuid
|
147
|
+
@do_not_track = true unless state.track_request
|
148
|
+
return unless state.security_exception
|
150
149
|
|
151
150
|
# If Contrast Service has NOT handled the input analysis, handle them here
|
152
151
|
build_attack_results(agent_settings)
|
153
|
-
|
154
|
-
|
155
|
-
logger.warn('Contrast Service said to block this request')
|
156
|
-
raise Contrast::SecurityException.new(nil, (msg || 'Blocking suspicious behavior'))
|
152
|
+
logger.debug('Contrast Service said to block this request')
|
153
|
+
raise Contrast::SecurityException.new(nil, (state.security_message || 'Blocking suspicious behavior'))
|
157
154
|
end
|
158
155
|
|
159
156
|
# append anything we've learned to the request seen message
|
@@ -184,6 +181,8 @@ module Contrast
|
|
184
181
|
|
185
182
|
# Generate attack results directly from any evaluations on the
|
186
183
|
# agent settings object.
|
184
|
+
#
|
185
|
+
# @param agent_settings [Contrast::Api::Settings::AgentSettings]
|
187
186
|
def build_attack_results agent_settings
|
188
187
|
return unless agent_settings&.input_analysis&.results&.any?
|
189
188
|
|
@@ -8,7 +8,7 @@ module Contrast
|
|
8
8
|
# prefilter and postfilter).
|
9
9
|
class RequestHandler
|
10
10
|
include Contrast::Components::Interface
|
11
|
-
access_component :agent, :
|
11
|
+
access_component :agent, :logging, :scope
|
12
12
|
|
13
13
|
attr_reader :ruleset, :context
|
14
14
|
|
@@ -20,7 +20,7 @@ module Contrast
|
|
20
20
|
def send_activity_messages
|
21
21
|
Contrast::Utils::GemfileReader.instance.generate_library_usage(context.activity)
|
22
22
|
[context.server_activity, context.activity, context.observed_route].each do |message|
|
23
|
-
|
23
|
+
Contrast::Agent.messaging_queue.send_event_eventually(message)
|
24
24
|
end
|
25
25
|
end
|
26
26
|
|
@@ -43,7 +43,7 @@ module Contrast
|
|
43
43
|
def dtm
|
44
44
|
context_response = Contrast::Api::Dtm::HttpResponse.new
|
45
45
|
context_response.response_code = response_code.to_i
|
46
|
-
headers
|
46
|
+
headers&.each_pair do |key, value|
|
47
47
|
k = Contrast::Utils::StringUtils.force_utf8(key)
|
48
48
|
v = Contrast::Utils::StringUtils.force_utf8(value)
|
49
49
|
context_response.response_headers[k] = v
|
@@ -75,48 +75,16 @@ module Contrast
|
|
75
75
|
end
|
76
76
|
end
|
77
77
|
|
78
|
-
# Header keys upcased and any underscores replaced with dashes
|
79
|
-
# We cannot memoize this, b/c response headers can change during the
|
80
|
-
# request lifecycle.
|
81
|
-
def normalized_headers
|
82
|
-
hash = {}
|
83
|
-
headers.each_pair do |header_name, header_value|
|
84
|
-
hash[Contrast::Utils::StringUtils.normalized_key(header_name)] = header_value
|
85
|
-
end
|
86
|
-
hash
|
87
|
-
end
|
88
|
-
|
89
|
-
CONTENT_TYPE_HEADER = 'CONTENT-TYPE'.cs__freeze
|
90
78
|
def content_type
|
91
79
|
return unless rack_response
|
92
80
|
|
93
81
|
if @is_array
|
94
|
-
|
82
|
+
headers[Rack::CONTENT_TYPE]
|
95
83
|
else
|
96
84
|
rack_response.content_type
|
97
85
|
end
|
98
86
|
end
|
99
87
|
|
100
|
-
def header key
|
101
|
-
return unless rack_response
|
102
|
-
|
103
|
-
if @is_array
|
104
|
-
normalized_headers[Contrast::Utils::StringUtils.normalized_key(key)]
|
105
|
-
else
|
106
|
-
rack_response.get_header(key)
|
107
|
-
end
|
108
|
-
end
|
109
|
-
|
110
|
-
def set_header key, value
|
111
|
-
return unless rack_response
|
112
|
-
|
113
|
-
if @is_array
|
114
|
-
Rack::Utils.set_cookie_header!(rack_response[1], key, value)
|
115
|
-
elsif rack_response.is_a?(Rack::Response)
|
116
|
-
rack_response.set_header(key, value)
|
117
|
-
end
|
118
|
-
end
|
119
|
-
|
120
88
|
# The response body can change during the request lifecycle
|
121
89
|
# We should not extract it out as a variable here, or we'll miss those
|
122
90
|
# changes.
|
@@ -127,59 +95,10 @@ module Contrast
|
|
127
95
|
extract_body(body_content)
|
128
96
|
end
|
129
97
|
|
130
|
-
def update_body body_string
|
131
|
-
return unless rack_response
|
132
|
-
|
133
|
-
successfully_updated_body = true
|
134
|
-
if @is_array
|
135
|
-
if rack_response[2].is_a?(Rack::BodyProxy)
|
136
|
-
successfully_updated_body = update_rack_body_proxy(body_string, true)
|
137
|
-
else
|
138
|
-
rack_response[2] = [body_string]
|
139
|
-
end
|
140
|
-
elsif rack_response.body.is_a?(Rack::BodyProxy)
|
141
|
-
successfully_updated_body = update_rack_body_proxy(body_string)
|
142
|
-
else
|
143
|
-
rack_response.body = body_string
|
144
|
-
end
|
145
|
-
update_content_length(body_string.bytesize) if successfully_updated_body
|
146
|
-
end
|
147
|
-
|
148
|
-
# Set the length header for this response. This value should be set ot the
|
149
|
-
# bytesize, NOT THE LENGTH, of the response body. Otherwise, we may get
|
150
|
-
# got by the Lint thing.
|
151
|
-
CONTENT_LENGTH_HEADER = 'Content-Length'.cs__freeze
|
152
|
-
def update_content_length length
|
153
|
-
headers[CONTENT_LENGTH_HEADER] = length.to_s
|
154
|
-
end
|
155
|
-
|
156
98
|
private
|
157
99
|
|
158
100
|
HTTP_PREFIX = /^[Hh][Tt][Tt][Pp][_-]/i.cs__freeze
|
159
101
|
|
160
|
-
def update_rack_body_proxy body_string, is_array = false
|
161
|
-
top_body_proxy = is_array ? rack_response[2] : rack_response
|
162
|
-
parent_body_proxy = top_body_proxy
|
163
|
-
until (next_body = parent_body_proxy.instance_variable_get(:@body)).cs__class != Rack::BodyProxy
|
164
|
-
parent_body_proxy = next_body
|
165
|
-
end
|
166
|
-
|
167
|
-
if next_body.cs__class.to_s == 'ActionDispatch::Response::RackBody'
|
168
|
-
modified_response = next_body.instance_variable_defined?(:@response) ? next_body.instance_variable_get(:@response) : nil
|
169
|
-
if modified_response
|
170
|
-
modified_response.body = body_string
|
171
|
-
next_body.instance_variable_set(:@response, modified_response)
|
172
|
-
end
|
173
|
-
elsif next_body.is_a?(Array) && next_body[0].cs__class.to_s == 'ActionView::OutputBuffer'
|
174
|
-
new_body = ActionView::OutputBuffer.new(body_string)
|
175
|
-
next_body[0] = new_body
|
176
|
-
else
|
177
|
-
logger.warn('Detected unsupported Rack::BodyProxy internal response class', module: next_body.cs__class)
|
178
|
-
return false
|
179
|
-
end
|
180
|
-
true
|
181
|
-
end
|
182
|
-
|
183
102
|
# Given some holder of the content of the response's body, extract that
|
184
103
|
# content and return it as a String
|
185
104
|
#
|
data/lib/contrast/agent/scope.rb
CHANGED
@@ -107,7 +107,7 @@ module Contrast
|
|
107
107
|
def ensure_valid_scope! scope_sym
|
108
108
|
unless valid_scope? scope_sym # rubocop:disable Style/GuardClause
|
109
109
|
with_contrast_scope do
|
110
|
-
raise
|
110
|
+
raise NoMethodError, "Scope '#{ scope_sym.inspect }' is not registered as a scope."
|
111
111
|
end
|
112
112
|
end
|
113
113
|
end
|
@@ -2,38 +2,36 @@
|
|
2
2
|
# frozen_string_literal: true
|
3
3
|
|
4
4
|
cs__scoped_require 'contrast/components/interface'
|
5
|
+
cs__scoped_require 'contrast/agent/worker_thread'
|
5
6
|
|
6
7
|
module Contrast
|
7
8
|
module Agent
|
8
9
|
# The ServiceHeartbeat functions to keep the Contrast Service alive and
|
9
10
|
# ensure that it maintains this Agent's ApplicationContext.
|
10
|
-
class ServiceHeartbeat
|
11
|
+
class ServiceHeartbeat < WorkerThread
|
11
12
|
include Contrast::Components::Interface
|
12
|
-
access_component :
|
13
|
+
access_component :logging
|
13
14
|
|
14
15
|
# Spec recommends 30 seconds, we're going with 15.
|
15
16
|
REFRESH_INTERVAL_SEC = 15
|
16
17
|
|
17
|
-
def
|
18
|
-
|
18
|
+
def start_thread!
|
19
|
+
return if running?
|
20
|
+
|
21
|
+
@_thread = Contrast::Agent::Thread.new do
|
19
22
|
logger.info('Starting heartbeat thread.')
|
20
23
|
loop do
|
21
24
|
begin
|
22
|
-
|
25
|
+
Contrast::Agent.messaging_queue.send_event_eventually(poll_message)
|
23
26
|
end
|
24
27
|
sleep REFRESH_INTERVAL_SEC
|
25
28
|
end
|
26
29
|
end
|
27
30
|
end
|
28
|
-
alias_method :start, :updater_thread
|
29
31
|
|
30
32
|
def poll_message
|
31
33
|
@_poll_message ||= Contrast::Api::Dtm::Poll.new
|
32
34
|
end
|
33
|
-
|
34
|
-
def stop
|
35
|
-
Thread.kill(@_updater_thread) if @_updater_thread&.alive?
|
36
|
-
end
|
37
35
|
end
|
38
36
|
end
|
39
37
|
end
|
@@ -11,7 +11,7 @@ module Contrast
|
|
11
11
|
class StaticAnalysis
|
12
12
|
include Singleton
|
13
13
|
include Contrast::Components::Interface
|
14
|
-
access_component :logging, :analysis, :
|
14
|
+
access_component :logging, :analysis, :scope
|
15
15
|
class << self
|
16
16
|
# After the first request is complete, we do a one-time manual catchup to review and
|
17
17
|
# report the already-loaded gems.
|
@@ -33,8 +33,7 @@ module Contrast
|
|
33
33
|
app_update_msg = Contrast::Api::Dtm::ApplicationUpdate.build
|
34
34
|
|
35
35
|
Contrast::Utils::InventoryUtil.append_db_config(app_update_msg)
|
36
|
-
|
37
|
-
CONTRAST_SERVICE.queue_message app_update_msg
|
36
|
+
Contrast::Agent.messaging_queue.send_event_eventually(app_update_msg)
|
38
37
|
end
|
39
38
|
end
|
40
39
|
end
|
@@ -0,0 +1,49 @@
|
|
1
|
+
# Copyright (c) 2020 Contrast Security, Inc. See https://www.contrastsecurity.com/enduser-terms-0317a for more details.
|
2
|
+
# frozen_string_literal: true
|
3
|
+
|
4
|
+
cs__scoped_require 'contrast/components/interface'
|
5
|
+
cs__scoped_require 'contrast/agent/service_heartbeat'
|
6
|
+
|
7
|
+
module Contrast
|
8
|
+
module Agent
|
9
|
+
# This class used to ensure that our worker threads are running in multi-process environments
|
10
|
+
class ThreadWatcher
|
11
|
+
include Contrast::Components::Interface
|
12
|
+
access_component :logging
|
13
|
+
|
14
|
+
attr_reader :heartbeat
|
15
|
+
|
16
|
+
def initialize
|
17
|
+
@pids = {}
|
18
|
+
@heartbeat = Contrast::Agent::ServiceHeartbeat.new
|
19
|
+
end
|
20
|
+
|
21
|
+
def startup!
|
22
|
+
unless heartbeat.running?
|
23
|
+
logger.debug('Attempting to start heartbeat thread')
|
24
|
+
heartbeat.start_thread!
|
25
|
+
end
|
26
|
+
heartbeat_result = heartbeat.running?
|
27
|
+
logger.debug('Heartbeat thread status', alive: heartbeat_result)
|
28
|
+
|
29
|
+
unless Contrast::Agent.messaging_queue.running?
|
30
|
+
logger.debug('Attempting to start messaging queue thread')
|
31
|
+
Contrast::Agent.messaging_queue.start_thread!
|
32
|
+
end
|
33
|
+
messaging_result = Contrast::Agent.messaging_queue.running?
|
34
|
+
logger.debug('Messaging thread status', alive: messaging_result)
|
35
|
+
|
36
|
+
logger.debug('ThreadWatcher started threads')
|
37
|
+
|
38
|
+
@pids[Process.pid] = messaging_result && heartbeat_result
|
39
|
+
end
|
40
|
+
|
41
|
+
def ensure_running?
|
42
|
+
return if @pids[Process.pid] == true
|
43
|
+
|
44
|
+
logger.debug('ThreadWatcher - threads not running')
|
45
|
+
startup!
|
46
|
+
end
|
47
|
+
end
|
48
|
+
end
|
49
|
+
end
|
@@ -0,0 +1,24 @@
|
|
1
|
+
# Copyright (c) 2020 Contrast Security, Inc. See https://www.contrastsecurity.com/enduser-terms-0317a for more details.
|
2
|
+
# frozen_string_literal: true
|
3
|
+
|
4
|
+
module Contrast
|
5
|
+
module Agent
|
6
|
+
# Base class for threads that do async processing
|
7
|
+
class WorkerThread
|
8
|
+
def initialize
|
9
|
+
@_thread = nil
|
10
|
+
end
|
11
|
+
|
12
|
+
def running?
|
13
|
+
!!@_thread&.alive?
|
14
|
+
end
|
15
|
+
|
16
|
+
def stop!
|
17
|
+
return unless running?
|
18
|
+
|
19
|
+
Thread.kill(@_thread)
|
20
|
+
@_thread = nil
|
21
|
+
end
|
22
|
+
end
|
23
|
+
end
|
24
|
+
end
|
data/lib/contrast/api.rb
CHANGED
@@ -10,9 +10,7 @@ module Contrast
|
|
10
10
|
end
|
11
11
|
end
|
12
12
|
|
13
|
-
cs__scoped_require 'contrast/api/
|
14
|
-
cs__scoped_require 'contrast/api/
|
13
|
+
cs__scoped_require 'contrast/api/dtm.pb'
|
14
|
+
cs__scoped_require 'contrast/api/settings.pb'
|
15
15
|
cs__scoped_require 'contrast/api/decorators'
|
16
|
-
cs__scoped_require 'contrast/api/
|
17
|
-
cs__scoped_require 'contrast/api/tcp_socket'
|
18
|
-
cs__scoped_require 'contrast/api/speedracer'
|
16
|
+
cs__scoped_require 'contrast/api/communication'
|
@@ -0,0 +1,20 @@
|
|
1
|
+
# Copyright (c) 2020 Contrast Security, Inc. See https://www.contrastsecurity.com/enduser-terms-0317a for more details.
|
2
|
+
# frozen_string_literal: true
|
3
|
+
|
4
|
+
module Contrast
|
5
|
+
module Api
|
6
|
+
# Used to contain all modules that handle communication with speedracer
|
7
|
+
module Communication
|
8
|
+
end
|
9
|
+
end
|
10
|
+
end
|
11
|
+
|
12
|
+
cs__scoped_require 'contrast/api/communication/service_lifecycle'
|
13
|
+
cs__scoped_require 'contrast/api/communication/connection_status'
|
14
|
+
cs__scoped_require 'contrast/api/communication/socket'
|
15
|
+
cs__scoped_require 'contrast/api/communication/tcp_socket'
|
16
|
+
cs__scoped_require 'contrast/api/communication/unix_socket'
|
17
|
+
cs__scoped_require 'contrast/api/communication/socket_client'
|
18
|
+
cs__scoped_require 'contrast/api/communication/messaging_queue'
|
19
|
+
cs__scoped_require 'contrast/api/communication/response_processor'
|
20
|
+
cs__scoped_require 'contrast/api/communication/speedracer'
|
@@ -0,0 +1,41 @@
|
|
1
|
+
# Copyright (c) 2020 Contrast Security, Inc. See https://www.contrastsecurity.com/enduser-terms-0317a for more details.
|
2
|
+
# frozen_string_literal: true
|
3
|
+
|
4
|
+
module Contrast
|
5
|
+
module Api
|
6
|
+
module Communication
|
7
|
+
# Keeps track of the state of connections to the service.
|
8
|
+
class ConnectionStatus
|
9
|
+
def initialize
|
10
|
+
@last_success = nil
|
11
|
+
@last_failure = nil
|
12
|
+
@startup_messages_sent = false
|
13
|
+
end
|
14
|
+
|
15
|
+
# Whether we have sent startup message to the service. True after successfully
|
16
|
+
# sending startup messages to service and reset to false if we lose connection
|
17
|
+
# to the service.
|
18
|
+
def startup_messages_sent?
|
19
|
+
@startup_messages_sent
|
20
|
+
end
|
21
|
+
|
22
|
+
# The last message sent was successful
|
23
|
+
def connected?
|
24
|
+
@last_success && (@last_failure.nil? || @last_success > @last_failure)
|
25
|
+
end
|
26
|
+
|
27
|
+
# The current state of the service is active with a successful message sent
|
28
|
+
def success!
|
29
|
+
@startup_messages_sent = true
|
30
|
+
@last_success = Time.now.to_f
|
31
|
+
end
|
32
|
+
|
33
|
+
# The service may be in some sort of error state
|
34
|
+
def failure!
|
35
|
+
@startup_messages_sent = false
|
36
|
+
@last_failure = Time.now.to_f
|
37
|
+
end
|
38
|
+
end
|
39
|
+
end
|
40
|
+
end
|
41
|
+
end
|