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
@@ -1,7 +1,6 @@
|
|
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
|
-
cs__scoped_require 'contrast/utils/sinatra_helper'
|
5
4
|
cs__scoped_require 'rubygems/version'
|
6
5
|
|
7
6
|
module Contrast
|
@@ -16,13 +15,17 @@ module Contrast
|
|
16
15
|
include Contrast::Components::ComponentBase
|
17
16
|
include Contrast::Components::Interface
|
18
17
|
|
19
|
-
access_component :config
|
18
|
+
access_component :agent, :config
|
20
19
|
|
21
20
|
DEFAULT_APP_NAME = 'rails'
|
22
21
|
DEFAULT_APP_PATH = '/'
|
23
22
|
DEFAULT_SERVER_NAME = 'localhost'
|
24
23
|
DEFAULT_SERVER_PATH = '/'
|
25
24
|
|
25
|
+
def initialize
|
26
|
+
original_pid
|
27
|
+
end
|
28
|
+
|
26
29
|
def server_type
|
27
30
|
@_server_type ||= begin
|
28
31
|
tmp = CONFIG.root.server.type
|
@@ -118,6 +121,28 @@ module Contrast
|
|
118
121
|
def instrument_middleware_stack?
|
119
122
|
!Contrast::Utils::JobServersRunning.job_servers_running?
|
120
123
|
end
|
124
|
+
|
125
|
+
def disabled_agent_rake_tasks
|
126
|
+
CONFIG.root.agent.ruby.disabled_agent_rake_tasks
|
127
|
+
end
|
128
|
+
|
129
|
+
# Determines if the Process we're currently in matches that of the
|
130
|
+
# Process in which the App Context instance was created.
|
131
|
+
# If it doesn't, that indicates the running context is in a new
|
132
|
+
# Process.
|
133
|
+
# @return [Boolean] if we're in the original Process in which the
|
134
|
+
# App Context instance was initialized.
|
135
|
+
def in_new_process?
|
136
|
+
current_pid = Process.pid
|
137
|
+
original_pid = pid
|
138
|
+
current_pid != original_pid
|
139
|
+
end
|
140
|
+
|
141
|
+
private
|
142
|
+
|
143
|
+
def original_pid
|
144
|
+
@_original_pid ||= Process.pid
|
145
|
+
end
|
121
146
|
end
|
122
147
|
|
123
148
|
COMPONENT_INTERFACE = Interface.new
|
@@ -12,12 +12,14 @@ module Contrast
|
|
12
12
|
include Contrast::Components::ComponentBase
|
13
13
|
include Contrast::Components::Interface
|
14
14
|
|
15
|
-
access_component :settings
|
15
|
+
access_component :config, :settings
|
16
16
|
|
17
17
|
def enabled?
|
18
|
-
|
18
|
+
# config overrides if forcibly set
|
19
|
+
return false if forcibly_disabled?
|
20
|
+
return true if forcibly_enabled?
|
19
21
|
|
20
|
-
|
22
|
+
SETTINGS.assess_enabled?
|
21
23
|
end
|
22
24
|
|
23
25
|
def tainted_columns
|
@@ -25,39 +27,47 @@ module Contrast
|
|
25
27
|
end
|
26
28
|
|
27
29
|
def forcibly_disabled?
|
28
|
-
|
30
|
+
@_forcibly_disabled = false?(CONFIG.root.assess.enable) if @_forcibly_disabled.nil?
|
31
|
+
@_forcibly_disabled
|
29
32
|
end
|
30
33
|
|
31
34
|
def rule_disabled? name
|
32
|
-
|
33
|
-
end
|
34
|
-
|
35
|
-
def disabled_rules
|
36
|
-
state.assess_disabled_rules
|
35
|
+
disabled_rules.include?(name)
|
37
36
|
end
|
38
37
|
|
39
38
|
def scan_response?
|
40
|
-
|
39
|
+
@_scan_response = !false?(CONFIG.root.assess.enable_scan_response) if @_scan_response.nil?
|
40
|
+
@_scan_response
|
41
41
|
end
|
42
42
|
|
43
43
|
def track_frozen_sources?
|
44
|
-
|
44
|
+
@_track_frozen_sources = !false?(CONFIG.root.agent.ruby.track_frozen_sources) if @_track_frozen_sources.nil?
|
45
|
+
@_track_frozen_sources
|
45
46
|
end
|
46
47
|
|
47
48
|
def require_scan?
|
48
|
-
|
49
|
+
@_require_scan = !false?(CONFIG.root.agent.ruby.require_scan) if @_require_scan.nil?
|
50
|
+
@_require_scan
|
49
51
|
end
|
50
52
|
|
51
53
|
def tags
|
52
|
-
|
54
|
+
CONFIG.root.assess&.tags
|
53
55
|
end
|
54
56
|
|
55
57
|
def rules
|
56
58
|
SETTINGS.assess_rules
|
57
59
|
end
|
58
60
|
|
59
|
-
|
60
|
-
|
61
|
+
private
|
62
|
+
|
63
|
+
def forcibly_enabled?
|
64
|
+
@_forcibly_enabled = true?(CONFIG.root.assess.enable) if @_forcibly_enabled.nil?
|
65
|
+
@_forcibly_enabled
|
66
|
+
end
|
67
|
+
|
68
|
+
def disabled_rules
|
69
|
+
# TODO: RUBY-903
|
70
|
+
CONFIG.root.assess&.rules&.disabled_rules || SETTINGS.disabled_assess_rules || []
|
61
71
|
end
|
62
72
|
end
|
63
73
|
|
@@ -3,6 +3,7 @@
|
|
3
3
|
|
4
4
|
cs__scoped_require 'contrast/utils/boolean_util'
|
5
5
|
cs__scoped_require 'contrast/utils/env_configuration_item'
|
6
|
+
cs__scoped_require 'contrast/utils/object_share'
|
6
7
|
cs__scoped_require 'contrast/configuration'
|
7
8
|
|
8
9
|
module Contrast
|
@@ -69,17 +70,11 @@ module Contrast
|
|
69
70
|
end
|
70
71
|
|
71
72
|
def session_id
|
72
|
-
@_session_id ||=
|
73
|
-
s = raw.application.session_id || ''
|
74
|
-
s.empty? ? nil : s
|
75
|
-
end
|
73
|
+
@_session_id ||= raw.application.session_id || Contrast::Utils::ObjectShare::EMPTY_STRING
|
76
74
|
end
|
77
75
|
|
78
76
|
def session_metadata
|
79
|
-
@_session_metadata ||=
|
80
|
-
s = raw.application.session_metadata || ''
|
81
|
-
s.empty? ? nil : s
|
82
|
-
end
|
77
|
+
@_session_metadata ||= raw.application.session_metadata || Contrast::Utils::ObjectShare::EMPTY_STRING
|
83
78
|
end
|
84
79
|
|
85
80
|
def valid?
|
@@ -98,7 +93,7 @@ module Contrast
|
|
98
93
|
# If the config is invalid, and you want to know about it, then
|
99
94
|
# you have a circular dependency if you try to log it,
|
100
95
|
# hence `log: false`.
|
101
|
-
if session_id && session_metadata
|
96
|
+
if !session_id.empty? && !session_metadata.empty?
|
102
97
|
if log
|
103
98
|
cs__class.log_error(SESSION_VARIABLES)
|
104
99
|
else
|
@@ -15,18 +15,24 @@ module Contrast
|
|
15
15
|
include Contrast::Components::ComponentBase
|
16
16
|
include Contrast::Components::Interface
|
17
17
|
|
18
|
-
|
18
|
+
DEFAULT_SERVICE_LOG = 'contrast_service.log'
|
19
|
+
# The Rails ActionDispatch regexp for localhost IP + literal localhost
|
20
|
+
# https://github.com/rails/rails/blob/master/actionpack/lib/action_dispatch/http/request.rb#L32
|
21
|
+
LOCALHOST = Regexp.union [/^127\.\d{1,3}\.\d{1,3}\.\d{1,3}$/, /^::1$/, /^0:0:0:0:0:0:0:1(%.*)?$/, /^localhost$/]
|
19
22
|
|
20
|
-
|
21
|
-
state.update_received?
|
22
|
-
end
|
23
|
-
|
24
|
-
def enabled?
|
25
|
-
state.service_enabled?
|
26
|
-
end
|
23
|
+
access_component :agent, :config
|
27
24
|
|
28
|
-
def
|
29
|
-
|
25
|
+
def use_bundled_service?
|
26
|
+
# Validates the config to decide if it's suitable for starting
|
27
|
+
# the bundled service
|
28
|
+
@_use_bundled_service ||= begin
|
29
|
+
# Requirement says "must be true" but that
|
30
|
+
# should be "must not be false" -- oops.
|
31
|
+
!false?(CONFIG.root.agent.start_bundled_service) &&
|
32
|
+
# Either a valid host or a valid socket
|
33
|
+
# Path validity is the service's problem
|
34
|
+
(LOCALHOST.match?(host) || !!socket_path)
|
35
|
+
end
|
30
36
|
end
|
31
37
|
|
32
38
|
def host
|
@@ -34,76 +40,26 @@ module Contrast
|
|
34
40
|
end
|
35
41
|
|
36
42
|
def port
|
37
|
-
@_port ||= (CONFIG.root.agent.service.port ||
|
43
|
+
@_port ||= (CONFIG.root.agent.service.port || DEFAULT_PORT).to_i
|
38
44
|
end
|
39
45
|
|
40
46
|
def socket_path
|
41
47
|
@_socket_path ||= CONFIG.root.agent.service.socket
|
42
48
|
end
|
43
49
|
|
44
|
-
def logger_path
|
45
|
-
@_logger_path ||= CONFIG.root.agent.service.logger.path || DEFAULT_LOG_FILENAME
|
46
|
-
end
|
47
|
-
|
48
50
|
def use_tcp?
|
49
51
|
socket_path.nil?
|
50
52
|
end
|
51
53
|
|
52
|
-
def
|
53
|
-
|
54
|
-
end
|
55
|
-
|
56
|
-
def use_bundled_service?
|
57
|
-
# Validates the config to decide if it's suitable for starting
|
58
|
-
# the bundled service
|
59
|
-
@_use_bundled_service ||= begin
|
60
|
-
# Requirement says "must be true" but that
|
61
|
-
# should be "must not be false" -- oops.
|
62
|
-
!false?(CONFIG.root.agent.start_bundled_service) &&
|
63
|
-
# Either a valid host or a valid socket
|
64
|
-
((CONFIG.root.agent.service.host.nil? ||
|
65
|
-
CONFIG.root.agent.service.host == 'localhost' ||
|
66
|
-
CONFIG.root.agent.service.host == '127.0.0.1') ||
|
67
|
-
# Path validity is the service's problem
|
68
|
-
!!CONFIG.root.agent.service.socket)
|
69
|
-
end
|
70
|
-
end
|
71
|
-
|
72
|
-
# TODO: As part of RUBY-356. Add new handling for SQL analysis via RPC (SPEED-211)
|
73
|
-
|
74
|
-
# The API for Agent to Service communication. These methods abstract away implementation
|
75
|
-
# details, responsibilities of sending messages to the service, and requirements mandated
|
76
|
-
# within the Agent<>SpeedRacer contract.
|
77
|
-
|
78
|
-
# Pushes a message onto a queue to later be consumed when the service sender thread is ready to
|
79
|
-
# handle it. The service response is not returned; rather, it is processed by the service sender
|
80
|
-
# thread. All messages sent to SpeedRacer should be queued rather than sent unless the calling method
|
81
|
-
# explicitly needs to act on the response object with custom logic (i.e. RequestContext#service_extract_response)
|
82
|
-
#
|
83
|
-
# @param event [Contrast::Api::Dtm] One of the DTMs valid for the event
|
84
|
-
# field of Contrast::Api::Dtm::Message
|
85
|
-
# TODO: rename method to queue_event
|
86
|
-
def queue_message event
|
87
|
-
return unless event
|
88
|
-
|
89
|
-
Contrast::Utils::ServiceSenderUtil.push_to_ready_queue(event)
|
54
|
+
def logger_path
|
55
|
+
@_logger_path ||= CONFIG.root.agent.service.logger.path || DEFAULT_SERVICE_LOG
|
90
56
|
end
|
91
57
|
|
92
|
-
|
93
|
-
# to connect to the service.
|
58
|
+
private
|
94
59
|
|
95
|
-
|
96
|
-
|
97
|
-
|
98
|
-
#
|
99
|
-
# @param event [Contrast::Api::Dtm] One of the DTMs valid for the event
|
100
|
-
# field of Contrast::Api::Dtm::Message
|
101
|
-
# @return [Array<Contrast::Api::Dtm::AttackResult>] the response from SpeedRacer
|
102
|
-
# TODO: rename method to send_event
|
103
|
-
def send_message event
|
104
|
-
return unless event
|
105
|
-
|
106
|
-
state.client.send_to_speedracer(event)
|
60
|
+
def disabled?
|
61
|
+
@_disabled = false?(CONFIG.root.agent.start_bundled_service) if @_disabled.nil?
|
62
|
+
@_disabled
|
107
63
|
end
|
108
64
|
end
|
109
65
|
|
@@ -2,7 +2,7 @@
|
|
2
2
|
# frozen_string_literal: true
|
3
3
|
|
4
4
|
cs__scoped_require 'delegate'
|
5
|
-
cs__scoped_require 'contrast/
|
5
|
+
cs__scoped_require 'contrast/extension/module'
|
6
6
|
cs__scoped_require 'contrast/utils/boolean_util'
|
7
7
|
|
8
8
|
module Contrast
|
@@ -56,14 +56,6 @@ module Contrast
|
|
56
56
|
def true? config_param
|
57
57
|
Contrast::Utils::BooleanUtil.true?(config_param)
|
58
58
|
end
|
59
|
-
|
60
|
-
# TODO: RUBY-536
|
61
|
-
private
|
62
|
-
|
63
|
-
def _state_shim
|
64
|
-
Contrast::Agent::FeatureState.instance
|
65
|
-
end
|
66
|
-
alias_method :state, :_state_shim
|
67
59
|
end
|
68
60
|
end
|
69
61
|
|
@@ -128,7 +120,7 @@ module Contrast
|
|
128
120
|
|
129
121
|
@_access_component[sym] = true
|
130
122
|
else
|
131
|
-
raise
|
123
|
+
raise NoMethodError, "#{ self } asked to access undefined component '#{ sym }'."
|
132
124
|
end
|
133
125
|
end
|
134
126
|
end
|
@@ -164,12 +156,12 @@ Contrast::Components::ComponentReceiverClassInterface::COMPONENT_MAP[:logging] =
|
|
164
156
|
cs__scoped_require 'contrast/components/agent'
|
165
157
|
Contrast::Components::ComponentReceiverClassInterface::COMPONENT_MAP[:agent] = [Contrast::Components::Agent]
|
166
158
|
|
167
|
-
cs__scoped_require 'contrast/components/app_context'
|
168
|
-
Contrast::Components::ComponentReceiverClassInterface::COMPONENT_MAP[:app_context] = [Contrast::Components::AppContext]
|
169
|
-
|
170
159
|
cs__scoped_require 'contrast/components/contrast_service'
|
171
160
|
Contrast::Components::ComponentReceiverClassInterface::COMPONENT_MAP[:contrast_service] = [Contrast::Components::ContrastService]
|
172
161
|
|
162
|
+
cs__scoped_require 'contrast/components/app_context'
|
163
|
+
Contrast::Components::ComponentReceiverClassInterface::COMPONENT_MAP[:app_context] = [Contrast::Components::AppContext]
|
164
|
+
|
173
165
|
cs__scoped_require 'contrast/components/heap_dump'
|
174
166
|
Contrast::Components::ComponentReceiverClassInterface::COMPONENT_MAP[:heap_dump] = [Contrast::Components::HeapDump]
|
175
167
|
|
@@ -11,9 +11,13 @@ module Contrast
|
|
11
11
|
# product.
|
12
12
|
class Interface
|
13
13
|
include Contrast::Components::ComponentBase
|
14
|
+
include Contrast::Components::Interface
|
15
|
+
|
16
|
+
access_component :config
|
14
17
|
|
15
18
|
def enabled?
|
16
|
-
|
19
|
+
@_enabled = !false?(CONFIG.root.inventory.enable) if @_enabled.nil?
|
20
|
+
@_enabled
|
17
21
|
end
|
18
22
|
end
|
19
23
|
|
@@ -1,14 +1,14 @@
|
|
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
|
-
cs__scoped_require 'contrast/
|
4
|
+
cs__scoped_require 'contrast/logger/log'
|
5
5
|
|
6
6
|
module Contrast
|
7
7
|
module Components
|
8
8
|
module Logger
|
9
9
|
module InstanceMethods #:nodoc:
|
10
10
|
def logger
|
11
|
-
Contrast::
|
11
|
+
Contrast::Logger::Log.instance.logger
|
12
12
|
end
|
13
13
|
end
|
14
14
|
ClassMethods = InstanceMethods
|
@@ -13,23 +13,59 @@ module Contrast
|
|
13
13
|
include Contrast::Components::ComponentBase
|
14
14
|
include Contrast::Components::Interface
|
15
15
|
|
16
|
-
access_component :settings
|
16
|
+
access_component :config, :settings
|
17
17
|
|
18
18
|
def enabled?
|
19
|
-
|
19
|
+
# config overrides if forcibly set
|
20
|
+
return false if forcibly_disabled?
|
21
|
+
return true if forcibly_enabled?
|
22
|
+
|
23
|
+
SETTINGS.protect_enabled?
|
20
24
|
end
|
21
25
|
|
22
|
-
def
|
23
|
-
|
26
|
+
def rule_config
|
27
|
+
CONFIG.root.protect.rules
|
24
28
|
end
|
25
29
|
|
26
30
|
def rules
|
27
31
|
SETTINGS.protect_rules
|
28
32
|
end
|
29
33
|
|
34
|
+
def rule_mode rule_id
|
35
|
+
CONFIG.root.protect.rules[rule_id]&.mode || SETTINGS.modes_by_id[rule_id] || :NO_ACTION
|
36
|
+
end
|
37
|
+
|
30
38
|
def rule name
|
31
39
|
SETTINGS.protect_rules[name]
|
32
40
|
end
|
41
|
+
|
42
|
+
def report_any_command_execution?
|
43
|
+
if @_report_any_command_execution.nil?
|
44
|
+
ctrl = rule_config[Contrast::Agent::Protect::Rule::CmdInjection::NAME]
|
45
|
+
@_report_any_command_execution = true?(ctrl.disable_system_commands)
|
46
|
+
end
|
47
|
+
@_report_any_command_execution
|
48
|
+
end
|
49
|
+
|
50
|
+
def report_custom_code_sysfile_access?
|
51
|
+
if @_report_custom_code_sysfile_access.nil?
|
52
|
+
ctrl = rule_config[Contrast::Agent::Protect::Rule::PathTraversal::NAME]
|
53
|
+
@_report_custom_code_sysfile_access = true?(ctrl.detect_custom_code_accessing_system_files)
|
54
|
+
end
|
55
|
+
@_report_custom_code_sysfile_access
|
56
|
+
end
|
57
|
+
|
58
|
+
def forcibly_disabled?
|
59
|
+
@_forcibly_disabled = false?(CONFIG.root.protect.enable) if @_forcibly_disabled.nil?
|
60
|
+
@_forcibly_disabled
|
61
|
+
end
|
62
|
+
|
63
|
+
private
|
64
|
+
|
65
|
+
def forcibly_enabled?
|
66
|
+
@_forcibly_enabled = true?(CONFIG.root.protect.enable) if @_forcibly_enabled.nil?
|
67
|
+
@_forcibly_enabled
|
68
|
+
end
|
33
69
|
end
|
34
70
|
|
35
71
|
COMPONENT_INTERFACE = Interface.new
|
@@ -1,8 +1,8 @@
|
|
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
|
-
cs__scoped_require 'monitor'
|
5
4
|
cs__scoped_require 'fiber'
|
5
|
+
cs__scoped_require 'monitor'
|
6
6
|
cs__scoped_require 'contrast/agent/scope'
|
7
7
|
|
8
8
|
# This is the Scope component.
|
@@ -54,7 +54,7 @@ module Contrast
|
|
54
54
|
end
|
55
55
|
end
|
56
56
|
|
57
|
-
# TODO:
|
57
|
+
# TODO: RUBY-572
|
58
58
|
#
|
59
59
|
# Current behavior is to no-op if we're not "in a request context".
|
60
60
|
# Our C functions were previously checking to see if we had a scope, because
|
@@ -84,53 +84,3 @@ module Contrast
|
|
84
84
|
end
|
85
85
|
end
|
86
86
|
end
|
87
|
-
|
88
|
-
# This is a reasonable place for the Kernel#catch hook to live.
|
89
|
-
# No current plans for component re-design, but if we had some kind of
|
90
|
-
# "do this when a component is hooked in" thing, this would live there.
|
91
|
-
# For now, it's over-engineering to live anywhere else. -ajm
|
92
|
-
module Kernel # :nodoc:
|
93
|
-
alias_method :cs__catch, :catch
|
94
|
-
|
95
|
-
# In the event of a `throw`, we need to override `catch`
|
96
|
-
# to save & restore scope state:
|
97
|
-
#
|
98
|
-
# scope_level == 0
|
99
|
-
#
|
100
|
-
# catch(:abc) do
|
101
|
-
# with_contrast_scope do
|
102
|
-
# throw :abc # will leak
|
103
|
-
# end
|
104
|
-
# end
|
105
|
-
#
|
106
|
-
# scope_level == 1
|
107
|
-
#
|
108
|
-
# Frankly, this isn't how scope should be used. This is in place of
|
109
|
-
# proper `ensure` blocks within the instrumentation call stack.
|
110
|
-
# This will actually /create/ scope leaks if you're doing something like:
|
111
|
-
#
|
112
|
-
# catch(:ohno) do
|
113
|
-
# enter scope
|
114
|
-
# end
|
115
|
-
#
|
116
|
-
# abc()
|
117
|
-
#
|
118
|
-
# exit scope
|
119
|
-
#
|
120
|
-
# i.e. if you intend to change net scope across a catch block boundary.
|
121
|
-
|
122
|
-
private
|
123
|
-
|
124
|
-
def catch *args, &block
|
125
|
-
# Save current scope level
|
126
|
-
scope_level = Contrast::Components::Scope::COMPONENT_INTERFACE.scope_for_current_ec.instance_variable_get(:@contrast_scope)
|
127
|
-
|
128
|
-
# Run original catch with block.
|
129
|
-
retval = cs__catch(*args, &block)
|
130
|
-
|
131
|
-
# Restore scope.
|
132
|
-
Contrast::Components::Scope::COMPONENT_INTERFACE.scope_for_current_ec.instance_variable_set(:@contrast_scope, scope_level)
|
133
|
-
|
134
|
-
retval
|
135
|
-
end
|
136
|
-
end
|