contrast-agent 3.12.2 → 3.15.0
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/.gitignore +1 -1
- data/.simplecov +1 -1
- data/Rakefile +31 -0
- data/exe/contrast_service +1 -7
- data/ext/build_funchook.rb +0 -2
- data/ext/cs__assess_active_record_named/cs__active_record_named.c +8 -7
- data/ext/cs__assess_array/cs__assess_array.c +6 -5
- data/ext/cs__assess_basic_object/cs__assess_basic_object.c +5 -5
- data/ext/cs__assess_fiber_track/cs__assess_fiber_track.c +4 -9
- data/ext/cs__assess_fiber_track/cs__assess_fiber_track.h +0 -1
- data/ext/cs__assess_hash/cs__assess_hash.c +18 -17
- data/ext/cs__assess_hash/cs__assess_hash.h +2 -1
- data/ext/cs__assess_kernel/cs__assess_kernel.c +7 -8
- data/ext/cs__assess_marshal_module/cs__assess_marshal_module.c +18 -16
- data/ext/cs__assess_marshal_module/cs__assess_marshal_module.h +1 -0
- data/ext/cs__assess_module/cs__assess_module.c +6 -6
- data/ext/cs__assess_regexp/cs__assess_regexp.c +4 -4
- data/ext/cs__assess_string/cs__assess_string.c +31 -16
- data/ext/cs__assess_string/cs__assess_string.h +6 -1
- data/ext/cs__assess_string_interpolation26/cs__assess_string_interpolation26.c +4 -7
- data/ext/cs__assess_yield_track/cs__assess_yield_track.c +3 -7
- data/ext/cs__assess_yield_track/cs__assess_yield_track.h +0 -1
- data/ext/cs__common/cs__common.c +63 -30
- data/ext/cs__common/cs__common.h +19 -21
- data/ext/cs__common/extconf.rb +0 -14
- data/ext/cs__contrast_patch/cs__contrast_patch.c +27 -25
- data/ext/cs__contrast_patch/cs__contrast_patch.h +5 -7
- data/ext/cs__protect_kernel/cs__protect_kernel.c +11 -12
- data/ext/cs__protect_kernel/cs__protect_kernel.h +2 -2
- data/ext/extconf_common.rb +0 -28
- data/lib/contrast-agent.rb +1 -1
- data/lib/contrast.rb +15 -23
- data/lib/contrast/agent.rb +51 -39
- data/lib/contrast/agent/assess.rb +12 -12
- data/lib/contrast/agent/assess/contrast_event.rb +40 -185
- data/lib/contrast/agent/assess/events/event_factory.rb +2 -2
- data/lib/contrast/agent/assess/events/source_event.rb +5 -9
- data/lib/contrast/agent/assess/finalizers/freeze.rb +15 -0
- data/lib/contrast/agent/assess/finalizers/hash.rb +97 -0
- data/lib/contrast/agent/assess/policy/dynamic_source_factory.rb +2 -2
- data/lib/contrast/agent/assess/policy/patcher.rb +6 -6
- data/lib/contrast/agent/assess/policy/policy.rb +9 -11
- data/lib/contrast/agent/assess/policy/policy_node.rb +5 -99
- data/lib/contrast/agent/assess/policy/policy_scanner.rb +2 -3
- data/lib/contrast/agent/assess/policy/preshift.rb +13 -7
- data/lib/contrast/agent/assess/policy/propagation_method.rb +64 -45
- data/lib/contrast/agent/assess/policy/propagation_node.rb +6 -2
- data/lib/contrast/agent/assess/policy/propagator.rb +18 -18
- data/lib/contrast/agent/assess/policy/propagator/append.rb +8 -5
- data/lib/contrast/agent/assess/policy/propagator/base.rb +2 -2
- data/lib/contrast/agent/assess/policy/propagator/center.rb +9 -5
- data/lib/contrast/agent/assess/policy/propagator/custom.rb +1 -1
- data/lib/contrast/agent/assess/policy/propagator/database_write.rb +6 -4
- data/lib/contrast/agent/assess/policy/propagator/insert.rb +7 -7
- data/lib/contrast/agent/assess/policy/propagator/keep.rb +4 -1
- data/lib/contrast/agent/assess/policy/propagator/match_data.rb +18 -9
- data/lib/contrast/agent/assess/policy/propagator/next.rb +7 -5
- data/lib/contrast/agent/assess/policy/propagator/prepend.rb +13 -5
- data/lib/contrast/agent/assess/policy/propagator/remove.rb +14 -15
- data/lib/contrast/agent/assess/policy/propagator/replace.rb +5 -2
- data/lib/contrast/agent/assess/policy/propagator/reverse.rb +7 -5
- data/lib/contrast/agent/assess/policy/propagator/select.rb +19 -11
- data/lib/contrast/agent/assess/policy/propagator/splat.rb +14 -8
- data/lib/contrast/agent/assess/policy/propagator/split.rb +19 -13
- data/lib/contrast/agent/assess/policy/propagator/substitution.rb +36 -26
- data/lib/contrast/agent/assess/policy/propagator/trim.rb +17 -15
- data/lib/contrast/agent/assess/policy/rewriter_patch.rb +5 -5
- data/lib/contrast/agent/assess/policy/source_method.rb +90 -73
- data/lib/contrast/agent/assess/policy/source_validation/cross_site_validator.rb +1 -1
- data/lib/contrast/agent/assess/policy/source_validation/source_validation.rb +1 -1
- data/lib/contrast/agent/assess/policy/trigger/reflected_xss.rb +16 -11
- data/lib/contrast/agent/assess/policy/trigger/xpath.rb +2 -2
- data/lib/contrast/agent/assess/policy/trigger_method.rb +41 -26
- data/lib/contrast/agent/assess/policy/trigger_node.rb +30 -17
- data/lib/contrast/agent/assess/policy/trigger_validation/ssrf_validator.rb +2 -1
- data/lib/contrast/agent/assess/policy/trigger_validation/trigger_validation.rb +2 -2
- data/lib/contrast/agent/assess/properties.rb +15 -383
- 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/property/updated.rb +136 -0
- data/lib/contrast/agent/assess/rule.rb +2 -2
- data/lib/contrast/agent/assess/rule/base.rb +3 -4
- data/lib/contrast/agent/assess/rule/provider.rb +3 -3
- data/lib/contrast/agent/assess/rule/provider/hardcoded_password.rb +1 -1
- data/lib/contrast/agent/assess/rule/provider/hardcoded_value_rule.rb +4 -22
- data/lib/contrast/agent/assess/tag.rb +27 -12
- data/lib/contrast/agent/assess/tracker.rb +66 -0
- data/lib/contrast/agent/at_exit_hook.rb +4 -2
- data/lib/contrast/agent/class_reopener.rb +14 -11
- data/lib/contrast/agent/deadzone/policy/deadzone_node.rb +1 -1
- data/lib/contrast/agent/deadzone/policy/policy.rb +2 -2
- data/lib/contrast/agent/disable_reaction.rb +1 -1
- data/lib/contrast/agent/exclusion_matcher.rb +3 -3
- data/lib/contrast/agent/inventory/policy/datastores.rb +2 -3
- data/lib/contrast/agent/inventory/policy/policy.rb +3 -3
- data/lib/contrast/agent/inventory/policy/trigger_node.rb +1 -1
- data/lib/contrast/agent/middleware.rb +36 -48
- data/lib/contrast/agent/patching/policy/after_load_patch.rb +4 -4
- data/lib/contrast/agent/patching/policy/after_load_patcher.rb +6 -5
- data/lib/contrast/agent/patching/policy/module_policy.rb +1 -1
- data/lib/contrast/agent/patching/policy/patch.rb +16 -16
- data/lib/contrast/agent/patching/policy/patcher.rb +43 -44
- data/lib/contrast/agent/patching/policy/policy.rb +10 -13
- data/lib/contrast/agent/patching/policy/policy_node.rb +3 -3
- data/lib/contrast/agent/patching/policy/trigger_node.rb +2 -2
- data/lib/contrast/agent/protect/policy/applies_command_injection_rule.rb +3 -3
- data/lib/contrast/agent/protect/policy/applies_deserialization_rule.rb +2 -2
- data/lib/contrast/agent/protect/policy/applies_no_sqli_rule.rb +2 -2
- data/lib/contrast/agent/protect/policy/applies_path_traversal_rule.rb +3 -3
- data/lib/contrast/agent/protect/policy/applies_sqli_rule.rb +2 -2
- data/lib/contrast/agent/protect/policy/applies_xxe_rule.rb +3 -3
- data/lib/contrast/agent/protect/policy/policy.rb +8 -8
- data/lib/contrast/agent/protect/policy/rule_applicator.rb +3 -3
- data/lib/contrast/agent/protect/policy/trigger_node.rb +1 -1
- data/lib/contrast/agent/protect/rule.rb +18 -18
- data/lib/contrast/agent/protect/rule/base.rb +21 -32
- data/lib/contrast/agent/protect/rule/base_service.rb +2 -2
- data/lib/contrast/agent/protect/rule/cmd_injection.rb +5 -5
- data/lib/contrast/agent/protect/rule/deserialization.rb +1 -1
- data/lib/contrast/agent/protect/rule/http_method_tampering.rb +3 -8
- data/lib/contrast/agent/protect/rule/no_sqli.rb +1 -1
- data/lib/contrast/agent/protect/rule/path_traversal.rb +4 -5
- data/lib/contrast/agent/protect/rule/sqli.rb +2 -2
- data/lib/contrast/agent/protect/rule/unsafe_file_upload.rb +1 -1
- data/lib/contrast/agent/protect/rule/xss.rb +1 -1
- data/lib/contrast/agent/protect/rule/xxe.rb +4 -5
- data/lib/contrast/agent/protect/rule/xxe/entity_wrapper.rb +2 -2
- data/lib/contrast/agent/railtie.rb +1 -1
- data/lib/contrast/agent/reaction_processor.rb +5 -5
- data/lib/contrast/agent/request.rb +103 -340
- data/lib/contrast/agent/request_context.rb +25 -21
- data/lib/contrast/agent/request_handler.rb +1 -1
- data/lib/contrast/agent/response.rb +25 -26
- data/lib/contrast/agent/rewriter.rb +6 -9
- data/lib/contrast/agent/scope.rb +1 -1
- data/lib/contrast/agent/service_heartbeat.rb +8 -10
- data/lib/contrast/agent/static_analysis.rb +4 -4
- data/lib/contrast/agent/thread.rb +1 -1
- data/lib/contrast/agent/thread_watcher.rb +49 -0
- data/lib/contrast/agent/tracepoint_hook.rb +1 -1
- data/lib/contrast/agent/version.rb +1 -1
- data/lib/contrast/agent/worker_thread.rb +24 -0
- data/lib/contrast/api.rb +4 -6
- 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 +76 -0
- data/lib/contrast/{utils/service_response_util.rb → api/communication/response_processor.rb} +10 -19
- 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 +14 -4
- data/lib/contrast/api/decorators/address.rb +61 -0
- data/lib/contrast/api/decorators/application_settings.rb +10 -5
- data/lib/contrast/api/decorators/application_update.rb +7 -17
- data/lib/contrast/api/decorators/http_request.rb +140 -0
- data/lib/contrast/api/decorators/input_analysis.rb +3 -2
- data/lib/contrast/api/decorators/message.rb +76 -0
- data/lib/contrast/api/decorators/rasp_rule_sample.rb +29 -0
- data/lib/contrast/api/decorators/route_coverage.rb +58 -0
- data/lib/contrast/api/decorators/server_features.rb +3 -2
- data/lib/contrast/api/decorators/trace_event.rb +100 -0
- data/lib/contrast/api/decorators/trace_event_object.rb +58 -0
- data/lib/contrast/api/decorators/trace_event_signature.rb +47 -0
- data/lib/contrast/api/decorators/trace_taint_range.rb +52 -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/common_agent_configuration.rb +2 -2
- data/lib/contrast/components/agent.rb +2 -2
- data/lib/contrast/components/app_context.rb +12 -17
- data/lib/contrast/components/config.rb +8 -23
- data/lib/contrast/components/contrast_service.rb +3 -3
- data/lib/contrast/components/interface.rb +16 -16
- data/lib/contrast/components/logger.rb +1 -1
- data/lib/contrast/components/scope.rb +3 -3
- data/lib/contrast/components/settings.rb +0 -6
- data/lib/contrast/config.rb +18 -18
- data/lib/contrast/config/application_configuration.rb +5 -2
- data/lib/contrast/config/base_configuration.rb +2 -2
- data/lib/contrast/config/protect_rule_configuration.rb +1 -1
- data/lib/contrast/config/service_configuration.rb +8 -2
- data/lib/contrast/configuration.rb +93 -52
- data/lib/contrast/extension/assess.rb +21 -23
- data/lib/contrast/extension/assess/array.rb +12 -9
- data/lib/contrast/extension/assess/erb.rb +6 -3
- data/lib/contrast/extension/assess/eval_trigger.rb +3 -3
- data/lib/contrast/extension/assess/exec_trigger.rb +1 -1
- data/lib/contrast/extension/assess/fiber.rb +12 -12
- data/lib/contrast/extension/assess/hash.rb +5 -4
- data/lib/contrast/extension/assess/kernel.rb +19 -11
- data/lib/contrast/extension/assess/marshal.rb +63 -0
- data/lib/contrast/extension/assess/regexp.rb +8 -7
- data/lib/contrast/extension/assess/string.rb +13 -15
- data/lib/contrast/extension/inventory.rb +4 -5
- data/lib/contrast/extension/kernel.rb +1 -1
- data/lib/contrast/extension/module.rb +1 -1
- data/lib/contrast/extension/protect.rb +3 -3
- data/lib/contrast/extension/protect/kernel.rb +2 -2
- data/lib/contrast/extension/protect/psych.rb +2 -2
- data/lib/contrast/framework/base_support.rb +0 -23
- data/lib/contrast/framework/manager.rb +7 -17
- data/lib/contrast/framework/rack/patch/session_cookie.rb +13 -19
- data/lib/contrast/framework/rack/patch/support.rb +1 -1
- data/lib/contrast/framework/rack/support.rb +2 -2
- data/lib/contrast/framework/rails/patch/action_controller_live_buffer.rb +1 -3
- data/lib/contrast/framework/rails/patch/assess_configuration.rb +6 -13
- data/lib/contrast/framework/rails/patch/rails_application_configuration.rb +1 -1
- data/lib/contrast/framework/rails/patch/support.rb +3 -3
- data/lib/contrast/framework/rails/rewrite/action_controller_railties_helper_inherited.rb +2 -2
- data/lib/contrast/framework/rails/rewrite/active_record_named.rb +2 -2
- data/lib/contrast/framework/rails/rewrite/active_record_time_zone_inherited.rb +2 -2
- data/lib/contrast/framework/rails/support.rb +58 -37
- data/lib/contrast/framework/sinatra/patch/base.rb +2 -2
- data/lib/contrast/framework/sinatra/patch/support.rb +1 -1
- data/lib/contrast/framework/sinatra/support.rb +13 -24
- data/lib/contrast/funchook/funchook.rb +45 -0
- data/lib/contrast/logger/application.rb +13 -5
- data/lib/contrast/logger/format.rb +64 -0
- data/lib/contrast/logger/log.rb +17 -9
- data/lib/contrast/logger/request.rb +30 -0
- data/lib/contrast/tasks/config.rb +1 -1
- data/lib/contrast/tasks/service.rb +2 -2
- data/lib/contrast/utils/assess/sampling_util.rb +2 -2
- data/lib/contrast/utils/assess/tracking_util.rb +89 -19
- data/lib/contrast/utils/boolean_util.rb +1 -1
- data/lib/contrast/utils/class_util.rb +2 -2
- data/lib/contrast/utils/duck_utils.rb +0 -10
- data/lib/contrast/utils/env_configuration_item.rb +2 -1
- data/lib/contrast/utils/gemfile_reader.rb +5 -5
- data/lib/contrast/utils/hash_digest.rb +13 -3
- data/lib/contrast/utils/heap_dump_util.rb +2 -2
- data/lib/contrast/utils/invalid_configuration_util.rb +21 -35
- data/lib/contrast/utils/inventory_util.rb +6 -11
- data/lib/contrast/utils/io_util.rb +1 -1
- data/lib/contrast/utils/object_share.rb +0 -1
- data/lib/contrast/utils/os.rb +16 -4
- data/lib/contrast/utils/ruby_ast_rewriter.rb +1 -1
- data/lib/contrast/utils/sha256_builder.rb +2 -2
- data/lib/contrast/utils/stack_trace_utils.rb +2 -3
- data/lib/contrast/utils/string_utils.rb +11 -6
- 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 +0 -10
- data/resources/deadzone/policy.json +5 -0
- data/ruby-agent.gemspec +24 -23
- data/service_executables/VERSION +1 -1
- data/service_executables/linux/contrast-service +0 -0
- data/service_executables/mac/contrast-service +0 -0
- metadata +92 -92
- 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/insulator.rb +0 -49
- data/lib/contrast/agent/require_state.rb +0 -61
- data/lib/contrast/agent/socket_client.rb +0 -134
- data/lib/contrast/api/connection_status.rb +0 -49
- 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/extension/assess/assess_extension.rb +0 -148
- data/lib/contrast/framework/sinatra/application_helper.rb +0 -51
- 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/freeze_util.rb +0 -32
- data/lib/contrast/utils/service_sender_util.rb +0 -167
- data/lib/contrast/utils/sinatra_helper.rb +0 -49
@@ -1,11 +1,11 @@
|
|
1
1
|
# Copyright (c) 2020 Contrast Security, Inc. See https://www.contrastsecurity.com/enduser-terms-0317a for more details.
|
2
2
|
# frozen_string_literal: true
|
3
3
|
|
4
|
-
|
5
|
-
|
6
|
-
|
7
|
-
|
8
|
-
|
4
|
+
require 'contrast/utils/timer'
|
5
|
+
require 'contrast/agent/request'
|
6
|
+
require 'contrast/agent/response'
|
7
|
+
require 'contrast/utils/inventory_util'
|
8
|
+
require 'contrast/components/interface'
|
9
9
|
|
10
10
|
module Contrast
|
11
11
|
module Agent
|
@@ -14,11 +14,12 @@ 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 :agent, :analysis, :logging, :
|
17
|
+
access_component :agent, :analysis, :logging, :scope
|
18
18
|
|
19
19
|
EMPTY_INPUT_ANALYSIS_PB = Contrast::Api::Settings::InputAnalysis.new
|
20
20
|
|
21
21
|
attr_reader :timer,
|
22
|
+
:logging_hash,
|
22
23
|
:speedracer_input_analysis,
|
23
24
|
:request,
|
24
25
|
:response,
|
@@ -29,8 +30,11 @@ module Contrast
|
|
29
30
|
|
30
31
|
def initialize rack_request, app_loaded = true
|
31
32
|
with_contrast_scope do
|
32
|
-
# all requests get a timer
|
33
|
+
# all requests get a timer and hash
|
33
34
|
@timer = Contrast::Utils::Timer.new
|
35
|
+
@logging_hash = {
|
36
|
+
request_id: __id__
|
37
|
+
}
|
34
38
|
|
35
39
|
# instantiate helper for request and response
|
36
40
|
@request = Contrast::Agent::Request.new(rack_request)
|
@@ -90,7 +94,6 @@ module Contrast
|
|
90
94
|
# For TS routes
|
91
95
|
@observed_route.signature = route.route
|
92
96
|
@observed_route.verb = route.verb
|
93
|
-
@observed_route.session_id = SETTINGS.session_id
|
94
97
|
@observed_route.url = route.url if route.url
|
95
98
|
end
|
96
99
|
|
@@ -113,7 +116,7 @@ module Contrast
|
|
113
116
|
return false unless PROTECT.enabled?
|
114
117
|
return false if @do_not_track
|
115
118
|
|
116
|
-
service_response = Contrast::
|
119
|
+
service_response = Contrast::Agent.messaging_queue.send_event_immediately(@activity.http_request)
|
117
120
|
return false unless service_response
|
118
121
|
|
119
122
|
handle_protect_state(service_response)
|
@@ -127,8 +130,8 @@ module Contrast
|
|
127
130
|
logger.trace('Analysis from Contrast Service was empty.')
|
128
131
|
false
|
129
132
|
end
|
130
|
-
rescue Contrast::SecurityException
|
131
|
-
raise
|
133
|
+
rescue Contrast::SecurityException => e
|
134
|
+
raise e
|
132
135
|
rescue StandardError => e
|
133
136
|
logger.warn('Unable to extract Contrast Service information from request', e)
|
134
137
|
false
|
@@ -138,21 +141,20 @@ module Contrast
|
|
138
141
|
# when the protect state indicates a security exception should be thrown. This method
|
139
142
|
# ensures that the attack reports are generated. Normally these should be generated on
|
140
143
|
# Speedracer for any attacks detected during prefilter.
|
144
|
+
#
|
145
|
+
# @param agent_settings [Contrast::Api::Settings::AgentSettings]
|
141
146
|
def handle_protect_state agent_settings
|
142
|
-
return unless agent_settings
|
143
|
-
return unless agent_settings.protect_state
|
144
|
-
|
145
|
-
@uuid = agent_settings.protect_state.uuid
|
146
|
-
@do_not_track = true unless agent_settings.protect_state.track_request
|
147
|
+
return unless agent_settings&.protect_state
|
147
148
|
|
148
|
-
|
149
|
+
state = agent_settings.protect_state
|
150
|
+
@uuid = state.uuid
|
151
|
+
@do_not_track = true unless state.track_request
|
152
|
+
return unless state.security_exception
|
149
153
|
|
150
154
|
# If Contrast Service has NOT handled the input analysis, handle them here
|
151
155
|
build_attack_results(agent_settings)
|
152
|
-
|
153
|
-
|
154
|
-
logger.warn('Contrast Service said to block this request')
|
155
|
-
raise Contrast::SecurityException.new(nil, (msg || 'Blocking suspicious behavior'))
|
156
|
+
logger.debug('Contrast Service said to block this request')
|
157
|
+
raise Contrast::SecurityException.new(nil, (state.security_message || 'Blocking suspicious behavior'))
|
156
158
|
end
|
157
159
|
|
158
160
|
# append anything we've learned to the request seen message
|
@@ -183,6 +185,8 @@ module Contrast
|
|
183
185
|
|
184
186
|
# Generate attack results directly from any evaluations on the
|
185
187
|
# agent settings object.
|
188
|
+
#
|
189
|
+
# @param agent_settings [Contrast::Api::Settings::AgentSettings]
|
186
190
|
def build_attack_results agent_settings
|
187
191
|
return unless agent_settings&.input_analysis&.results&.any?
|
188
192
|
|
@@ -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
|
-
Contrast::
|
23
|
+
Contrast::Agent.messaging_queue.send_event_eventually(message)
|
24
24
|
end
|
25
25
|
end
|
26
26
|
|
@@ -1,13 +1,13 @@
|
|
1
1
|
# Copyright (c) 2020 Contrast Security, Inc. See https://www.contrastsecurity.com/enduser-terms-0317a for more details.
|
2
2
|
# frozen_string_literal: true
|
3
3
|
|
4
|
-
|
5
|
-
|
4
|
+
require 'resolv'
|
5
|
+
require 'timeout'
|
6
6
|
|
7
|
-
|
8
|
-
|
9
|
-
|
10
|
-
|
7
|
+
require 'contrast/utils/object_share'
|
8
|
+
require 'contrast/utils/string_utils'
|
9
|
+
require 'contrast/utils/hash_digest'
|
10
|
+
require 'contrast/components/interface'
|
11
11
|
|
12
12
|
module Contrast
|
13
13
|
module Agent
|
@@ -43,15 +43,10 @@ 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
|
47
|
-
|
48
|
-
v = Contrast::Utils::StringUtils.force_utf8(value)
|
49
|
-
context_response.response_headers[k] = v
|
46
|
+
headers&.each_pair do |key, value|
|
47
|
+
append_pair(context_response.normalized_response_headers, key, value)
|
50
48
|
end
|
51
|
-
context_response.parsed_response_headers = true
|
52
|
-
|
53
49
|
context_response.response_body_binary = Contrast::Utils::StringUtils.force_utf8(body)
|
54
|
-
context_response.parsed_response_body = false
|
55
50
|
|
56
51
|
doc_type = document_type
|
57
52
|
context_response.document_type = doc_type if doc_type
|
@@ -75,23 +70,11 @@ module Contrast
|
|
75
70
|
end
|
76
71
|
end
|
77
72
|
|
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
73
|
def content_type
|
91
74
|
return unless rack_response
|
92
75
|
|
93
76
|
if @is_array
|
94
|
-
|
77
|
+
headers[Rack::CONTENT_TYPE]
|
95
78
|
else
|
96
79
|
rack_response.content_type
|
97
80
|
end
|
@@ -109,6 +92,22 @@ module Contrast
|
|
109
92
|
|
110
93
|
private
|
111
94
|
|
95
|
+
# From the dtm for normalized_response_headers:
|
96
|
+
# Key is UPPERCASE_UNDERSCORE
|
97
|
+
#
|
98
|
+
# Example: Content-Type: text/html; charset=utf-8
|
99
|
+
# "CONTENT_TYPE" => Content-Type,["text/html; charset=utf8"]
|
100
|
+
def append_pair map, key, value
|
101
|
+
return unless key && value
|
102
|
+
return if value.is_a?(Hash)
|
103
|
+
|
104
|
+
safe_key = Contrast::Utils::StringUtils.force_utf8(key)
|
105
|
+
hash_key = Contrast::Utils::StringUtils.normalized_key(safe_key)
|
106
|
+
map[hash_key] ||= Contrast::Api::Dtm::Pair.new
|
107
|
+
map[hash_key].key = safe_key
|
108
|
+
map[hash_key].values << Contrast::Utils::StringUtils.force_utf8(value)
|
109
|
+
end
|
110
|
+
|
112
111
|
HTTP_PREFIX = /^[Hh][Tt][Tt][Pp][_-]/i.cs__freeze
|
113
112
|
|
114
113
|
# Given some holder of the content of the response's body, extract that
|
@@ -3,10 +3,10 @@
|
|
3
3
|
|
4
4
|
# intentional -- we're using a << operator here
|
5
5
|
|
6
|
-
|
7
|
-
|
8
|
-
|
9
|
-
|
6
|
+
require 'contrast/agent/class_reopener'
|
7
|
+
require 'contrast/agent/patching/policy/patch_status'
|
8
|
+
require 'contrast/components/interface'
|
9
|
+
require 'contrast/utils/ruby_ast_rewriter'
|
10
10
|
|
11
11
|
module Contrast
|
12
12
|
module Agent
|
@@ -61,9 +61,7 @@ module Contrast
|
|
61
61
|
status ||= Contrast::Agent::Patching::Policy::PatchStatus.get_status(mod)
|
62
62
|
status.failed_rewrite!
|
63
63
|
ensure
|
64
|
-
|
65
|
-
opener&.commit_patches
|
66
|
-
end
|
64
|
+
opener&.commit_patches
|
67
65
|
logger.trace('Rewriting complete',
|
68
66
|
module: module_data.name,
|
69
67
|
result: Contrast::Agent::Patching::Policy::PatchStatus.get_status(
|
@@ -163,8 +161,7 @@ module Contrast
|
|
163
161
|
|
164
162
|
def rewrite_method original_source_code
|
165
163
|
new_code = rewrite(original_source_code)
|
166
|
-
|
167
|
-
new_code
|
164
|
+
remove_self_definition(new_code)
|
168
165
|
end
|
169
166
|
|
170
167
|
def rewrite source
|
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
|
@@ -1,39 +1,37 @@
|
|
1
1
|
# Copyright (c) 2020 Contrast Security, Inc. See https://www.contrastsecurity.com/enduser-terms-0317a for more details.
|
2
2
|
# frozen_string_literal: true
|
3
3
|
|
4
|
-
|
4
|
+
require 'contrast/components/interface'
|
5
|
+
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
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
|
-
Contrast::
|
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
|
@@ -1,9 +1,9 @@
|
|
1
1
|
# Copyright (c) 2020 Contrast Security, Inc. See https://www.contrastsecurity.com/enduser-terms-0317a for more details.
|
2
2
|
# frozen_string_literal: true
|
3
3
|
|
4
|
-
|
5
|
-
|
6
|
-
|
4
|
+
require 'contrast/components/interface'
|
5
|
+
require 'contrast/utils/gemfile_reader'
|
6
|
+
require 'contrast/api/decorators/application_update'
|
7
7
|
|
8
8
|
module Contrast
|
9
9
|
module Agent
|
@@ -33,7 +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
|
-
Contrast::
|
36
|
+
Contrast::Agent.messaging_queue.send_event_eventually(app_update_msg)
|
37
37
|
end
|
38
38
|
end
|
39
39
|
end
|
@@ -1,7 +1,7 @@
|
|
1
1
|
# Copyright (c) 2020 Contrast Security, Inc. See https://www.contrastsecurity.com/enduser-terms-0317a for more details.
|
2
2
|
# frozen_string_literal: true
|
3
3
|
|
4
|
-
|
4
|
+
require 'contrast/components/interface'
|
5
5
|
|
6
6
|
module Contrast
|
7
7
|
module Agent
|
@@ -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
|
+
require 'contrast/components/interface'
|
5
|
+
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
|
@@ -1,7 +1,7 @@
|
|
1
1
|
# Copyright (c) 2020 Contrast Security, Inc. See https://www.contrastsecurity.com/enduser-terms-0317a for more details.
|
2
2
|
# frozen_string_literal: true
|
3
3
|
|
4
|
-
|
4
|
+
require 'contrast/components/interface'
|
5
5
|
|
6
6
|
module Contrast
|
7
7
|
module Agent
|
@@ -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
|
-
|
14
|
-
|
15
|
-
|
16
|
-
|
17
|
-
cs__scoped_require 'contrast/api/tcp_socket'
|
18
|
-
cs__scoped_require 'contrast/api/speedracer'
|
13
|
+
require 'contrast/api/dtm.pb'
|
14
|
+
require 'contrast/api/settings.pb'
|
15
|
+
require 'contrast/api/decorators'
|
16
|
+
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
|
+
require 'contrast/api/communication/service_lifecycle'
|
13
|
+
require 'contrast/api/communication/connection_status'
|
14
|
+
require 'contrast/api/communication/socket'
|
15
|
+
require 'contrast/api/communication/tcp_socket'
|
16
|
+
require 'contrast/api/communication/unix_socket'
|
17
|
+
require 'contrast/api/communication/socket_client'
|
18
|
+
require 'contrast/api/communication/messaging_queue'
|
19
|
+
require 'contrast/api/communication/response_processor'
|
20
|
+
require 'contrast/api/communication/speedracer'
|