contrast-agent 3.10.2 → 3.11.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.simplecov +5 -2
- data/ext/build_funchook.rb +13 -17
- data/ext/cs__assess_active_record_named/cs__active_record_named.c +5 -12
- data/ext/cs__assess_active_record_named/extconf.rb +3 -0
- data/ext/cs__assess_array/cs__assess_array.c +3 -5
- data/ext/cs__assess_array/extconf.rb +3 -0
- data/ext/cs__assess_basic_object/cs__assess_basic_object.c +10 -4
- data/ext/cs__assess_basic_object/extconf.rb +3 -0
- data/ext/cs__assess_fiber_track/cs__assess_fiber_track.c +4 -3
- data/ext/cs__assess_fiber_track/cs__assess_fiber_track.h +3 -3
- data/ext/cs__assess_fiber_track/extconf.rb +3 -0
- data/ext/cs__assess_hash/cs__assess_hash.c +40 -17
- data/ext/cs__assess_hash/cs__assess_hash.h +4 -6
- data/ext/cs__assess_hash/extconf.rb +3 -0
- data/ext/cs__assess_kernel/cs__assess_kernel.c +10 -8
- data/ext/cs__assess_kernel/cs__assess_kernel.h +1 -0
- data/ext/cs__assess_kernel/extconf.rb +3 -0
- data/ext/cs__assess_marshal_module/cs__assess_marshal_module.c +3 -6
- data/ext/cs__assess_marshal_module/extconf.rb +3 -0
- data/ext/cs__assess_module/cs__assess_module.c +13 -9
- data/ext/cs__assess_module/extconf.rb +3 -0
- data/ext/cs__assess_regexp/cs__assess_regexp.c +13 -9
- data/ext/cs__assess_regexp/cs__assess_regexp.h +1 -0
- data/ext/cs__assess_regexp/extconf.rb +3 -0
- data/ext/cs__assess_string/cs__assess_string.c +5 -8
- data/ext/cs__assess_string/cs__assess_string.h +2 -1
- data/ext/cs__assess_string/extconf.rb +3 -0
- data/ext/cs__assess_string_interpolation26/cs__assess_string_interpolation26.c +2 -2
- data/ext/cs__assess_string_interpolation26/cs__assess_string_interpolation26.h +3 -3
- data/ext/cs__assess_string_interpolation26/extconf.rb +3 -0
- data/ext/cs__assess_yield_track/cs__assess_yield_track.h +1 -1
- data/ext/cs__assess_yield_track/extconf.rb +3 -0
- data/ext/cs__common/cs__common.c +79 -0
- data/ext/cs__common/cs__common.h +34 -0
- data/ext/cs__common/extconf.rb +9 -8
- data/ext/cs__contrast_patch/cs__contrast_patch.h +1 -6
- data/ext/cs__contrast_patch/extconf.rb +3 -0
- data/ext/cs__protect_kernel/cs__protect_kernel.c +20 -11
- data/ext/cs__protect_kernel/extconf.rb +3 -0
- data/ext/extconf_common.rb +10 -8
- data/funchook/autom4te.cache/output.0 +1 -13
- data/funchook/autom4te.cache/requests +44 -45
- data/funchook/autom4te.cache/traces.0 +0 -3
- data/funchook/config.log +378 -217
- data/funchook/config.status +23 -24
- data/funchook/configure +1 -13
- data/funchook/src/Makefile +7 -7
- data/funchook/src/config.h +2 -2
- 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 +2 -2
- 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 +20 -0
- 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.rb +1 -0
- data/lib/contrast/agent.rb +21 -15
- data/lib/contrast/agent/assess.rb +1 -2
- data/lib/contrast/agent/assess/adjusted_span.rb +3 -1
- data/lib/contrast/agent/assess/contrast_event.rb +16 -62
- data/lib/contrast/agent/assess/events/event_factory.rb +25 -0
- data/lib/contrast/agent/assess/events/source_event.rb +83 -0
- data/lib/contrast/agent/assess/insulator.rb +0 -4
- data/lib/contrast/agent/assess/policy/patcher.rb +5 -2
- data/lib/contrast/agent/assess/policy/policy_node.rb +0 -7
- data/lib/contrast/agent/assess/policy/policy_scanner.rb +1 -1
- data/lib/contrast/agent/assess/policy/preshift.rb +1 -1
- data/lib/contrast/agent/assess/policy/propagation_method.rb +65 -33
- data/lib/contrast/agent/assess/policy/propagation_node.rb +2 -1
- data/lib/contrast/agent/assess/policy/propagator.rb +1 -0
- data/lib/contrast/agent/assess/policy/propagator/match_data.rb +80 -0
- data/lib/contrast/agent/assess/policy/propagator/select.rb +35 -22
- data/lib/contrast/agent/assess/policy/propagator/split.rb +26 -6
- data/lib/contrast/agent/assess/policy/propagator/substitution.rb +2 -0
- data/lib/contrast/agent/assess/policy/rewriter_patch.rb +37 -26
- data/lib/contrast/agent/assess/policy/source_method.rb +20 -20
- data/lib/contrast/agent/assess/policy/source_node.rb +0 -15
- data/lib/contrast/agent/assess/policy/trigger_method.rb +29 -40
- data/lib/contrast/agent/assess/policy/trigger_node.rb +3 -6
- data/lib/contrast/agent/assess/policy/trigger_validation/ssrf_validator.rb +2 -31
- data/lib/contrast/agent/assess/properties.rb +5 -3
- data/lib/contrast/agent/assess/rule/base.rb +1 -5
- data/lib/contrast/agent/assess/rule/csrf/csrf_applicator.rb +2 -22
- data/lib/contrast/agent/assess/rule/csrf/csrf_watcher.rb +5 -1
- data/lib/contrast/agent/assess/rule/provider/hardcoded_value_rule.rb +2 -2
- data/lib/contrast/agent/assess/rule/redos.rb +4 -4
- data/lib/contrast/agent/assess/tag.rb +24 -14
- data/lib/contrast/agent/at_exit_hook.rb +16 -13
- data/lib/contrast/agent/class_reopener.rb +14 -4
- data/lib/contrast/agent/deadzone/policy/policy.rb +2 -2
- data/lib/contrast/agent/disable_reaction.rb +3 -4
- data/lib/contrast/agent/exclusion_matcher.rb +8 -48
- data/lib/contrast/agent/feature_state.rb +45 -75
- data/lib/contrast/agent/logger.rb +173 -0
- data/lib/contrast/agent/middleware.rb +87 -250
- data/lib/contrast/agent/module_data.rb +2 -1
- data/lib/contrast/agent/patching/policy/after_load_patch.rb +2 -1
- data/lib/contrast/agent/patching/policy/after_load_patcher.rb +21 -4
- data/lib/contrast/agent/patching/policy/method_policy.rb +3 -3
- data/lib/contrast/agent/patching/policy/module_policy.rb +0 -25
- data/lib/contrast/agent/patching/policy/patch.rb +96 -23
- data/lib/contrast/agent/patching/policy/patcher.rb +19 -19
- data/lib/contrast/agent/patching/policy/policy.rb +7 -7
- data/lib/contrast/agent/patching/policy/policy_node.rb +2 -10
- data/lib/contrast/agent/patching/policy/trigger_node.rb +1 -4
- data/lib/contrast/agent/protect/rule/base.rb +14 -33
- data/lib/contrast/agent/protect/rule/base_service.rb +3 -1
- data/lib/contrast/agent/protect/rule/cmd_injection.rb +10 -13
- data/lib/contrast/agent/protect/rule/csrf.rb +2 -1
- data/lib/contrast/agent/protect/rule/csrf/csrf_evaluator.rb +11 -14
- data/lib/contrast/agent/protect/rule/default_scanner.rb +0 -13
- data/lib/contrast/agent/protect/rule/deserialization.rb +2 -0
- data/lib/contrast/agent/protect/rule/http_method_tampering.rb +2 -2
- data/lib/contrast/agent/protect/rule/no_sqli.rb +4 -4
- data/lib/contrast/agent/protect/rule/path_traversal.rb +5 -4
- data/lib/contrast/agent/protect/rule/sqli.rb +1 -0
- data/lib/contrast/agent/protect/rule/unsafe_file_upload.rb +2 -0
- data/lib/contrast/agent/protect/rule/xss.rb +2 -0
- data/lib/contrast/agent/protect/rule/xxe.rb +10 -4
- data/lib/contrast/agent/railtie.rb +2 -8
- data/lib/contrast/agent/reaction_processor.rb +5 -5
- data/lib/contrast/agent/request.rb +9 -12
- data/lib/contrast/agent/request_context.rb +12 -14
- data/lib/contrast/agent/request_handler.rb +35 -0
- data/lib/contrast/agent/response.rb +33 -30
- data/lib/contrast/agent/rewriter.rb +22 -10
- data/lib/contrast/agent/rule_set.rb +49 -0
- data/lib/contrast/agent/scope.rb +0 -6
- data/lib/contrast/agent/service_heartbeat.rb +1 -2
- data/lib/contrast/agent/settings_state.rb +10 -74
- data/lib/contrast/agent/socket_client.rb +17 -11
- data/lib/contrast/agent/static_analysis.rb +42 -0
- data/lib/contrast/agent/thread.rb +1 -1
- data/lib/contrast/agent/tracepoint_hook.rb +1 -5
- data/lib/contrast/agent/version.rb +1 -1
- data/lib/contrast/api.rb +1 -1
- data/lib/contrast/api/decorators.rb +14 -0
- data/lib/contrast/api/decorators/application_settings.rb +37 -0
- data/lib/contrast/api/decorators/application_update.rb +66 -0
- data/lib/contrast/api/decorators/exclusion.rb +20 -0
- data/lib/contrast/api/decorators/input_analysis.rb +17 -0
- data/lib/contrast/api/decorators/server_features.rb +24 -0
- data/lib/contrast/api/speedracer.rb +27 -23
- data/lib/contrast/api/tcp_socket.rb +0 -2
- data/lib/contrast/components/agent.rb +27 -22
- data/lib/contrast/components/app_context.rb +18 -43
- data/lib/contrast/components/config.rb +7 -5
- data/lib/contrast/components/contrast_service.rb +0 -4
- data/lib/contrast/components/heap_dump.rb +12 -8
- data/lib/contrast/components/interface.rb +11 -10
- data/lib/contrast/components/logger.rb +3 -68
- data/lib/contrast/components/sampling.rb +22 -11
- data/lib/contrast/components/settings.rb +18 -5
- data/lib/contrast/config/base_configuration.rb +1 -0
- data/lib/contrast/config/default_value.rb +1 -0
- data/lib/contrast/config/protect_rule_configuration.rb +0 -14
- data/lib/contrast/extensions/framework/rails/action_controller_inheritance.rb +39 -0
- data/lib/contrast/extensions/framework/rails/active_record_named.rb +13 -8
- data/lib/contrast/extensions/ruby_core/assess.rb +1 -2
- data/lib/contrast/extensions/ruby_core/assess/assess_extension.rb +27 -22
- data/lib/contrast/extensions/ruby_core/assess/erb.rb +0 -8
- data/lib/contrast/extensions/ruby_core/assess/exec_trigger.rb +6 -8
- data/lib/contrast/extensions/ruby_core/assess/fiber.rb +88 -100
- data/lib/contrast/extensions/ruby_core/assess/hash.rb +32 -15
- data/lib/contrast/extensions/ruby_core/assess/kernel.rb +28 -27
- data/lib/contrast/extensions/ruby_core/assess/regexp.rb +74 -196
- data/lib/contrast/extensions/ruby_core/assess/string.rb +15 -7
- data/lib/contrast/extensions/ruby_core/assess/tilt_template_trigger.rb +29 -24
- data/lib/contrast/extensions/ruby_core/assess/xpath_library_trigger.rb +2 -2
- data/lib/contrast/extensions/ruby_core/eval_trigger.rb +0 -1
- data/lib/contrast/extensions/ruby_core/inventory/datastores.rb +2 -2
- data/lib/contrast/extensions/ruby_core/protect/applies_command_injection_rule.rb +9 -20
- data/lib/contrast/extensions/ruby_core/protect/applies_deserialization_rule.rb +9 -19
- data/lib/contrast/extensions/ruby_core/protect/applies_no_sqli_rule.rb +10 -27
- data/lib/contrast/extensions/ruby_core/protect/applies_path_traversal_rule.rb +13 -21
- data/lib/contrast/extensions/ruby_core/protect/applies_sqli_rule.rb +11 -23
- data/lib/contrast/extensions/ruby_core/protect/applies_xxe_rule.rb +62 -78
- data/lib/contrast/extensions/ruby_core/protect/rule_applicator.rb +50 -0
- data/lib/contrast/framework/base_support.rb +10 -0
- data/lib/contrast/framework/manager.rb +28 -2
- data/lib/contrast/framework/platform_version.rb +1 -0
- data/lib/contrast/framework/rails_support.rb +16 -0
- data/lib/contrast/framework/sinatra_support.rb +12 -2
- data/lib/contrast/framework/view_technologies_descriptor.rb +1 -0
- data/lib/contrast/tasks/service.rb +2 -8
- data/lib/contrast/utils/assess/sampling_util.rb +4 -9
- data/lib/contrast/utils/assess/tracking_util.rb +7 -1
- data/lib/contrast/utils/boolean_util.rb +2 -2
- data/lib/contrast/utils/cache.rb +0 -11
- data/lib/contrast/utils/class_util.rb +20 -1
- data/lib/contrast/utils/gemfile_reader.rb +5 -3
- data/lib/contrast/utils/hash_digest.rb +0 -4
- data/lib/contrast/utils/heap_dump_util.rb +12 -11
- data/lib/contrast/utils/invalid_configuration_util.rb +1 -1
- data/lib/contrast/utils/inventory_util.rb +2 -2
- data/lib/contrast/utils/io_util.rb +1 -11
- data/lib/contrast/utils/job_servers_running.rb +2 -2
- data/lib/contrast/utils/object_share.rb +1 -27
- data/lib/contrast/utils/os.rb +1 -25
- data/lib/contrast/utils/rack_assess_session_cookie.rb +3 -3
- data/lib/contrast/utils/rails_assess_configuration.rb +3 -3
- data/lib/contrast/utils/service_response_util.rb +27 -53
- data/lib/contrast/utils/service_sender_util.rb +9 -5
- data/lib/contrast/utils/sinatra_helper.rb +0 -6
- data/lib/contrast/utils/stack_trace_utils.rb +86 -182
- data/lib/contrast/utils/string_utils.rb +18 -2
- data/lib/contrast/utils/tag_util.rb +11 -1
- data/lib/contrast/utils/thread_tracker.rb +2 -2
- data/lib/contrast/utils/timer.rb +0 -40
- data/resources/assess/policy.json +33 -21
- data/resources/protect/policy.json +9 -9
- data/ruby-agent.gemspec +6 -3
- metadata +76 -51
- data/ext/cs__assess_regexp_track/cs__assess_regexp_track.c +0 -63
- data/ext/cs__assess_regexp_track/cs__assess_regexp_track.h +0 -29
- data/ext/cs__assess_regexp_track/extconf.rb +0 -2
- data/funchook/src/libfunchook.so +0 -0
- data/lib/contrast/agent/assess/frozen_properties.rb +0 -41
- data/lib/contrast/agent/logger_manager.rb +0 -116
- data/lib/contrast/delegators.rb +0 -9
- data/lib/contrast/delegators/application_update.rb +0 -32
- data/lib/contrast/utils/comment_range.rb +0 -19
- data/lib/contrast/utils/environment_util.rb +0 -81
- data/lib/contrast/utils/performs_logging.rb +0 -152
- data/resources/factory-bot-spec/spec_helper.rb +0 -30
- data/resources/rubocops/kernel/catch_cop.rb +0 -37
- data/resources/rubocops/kernel/require_cop.rb +0 -37
- data/resources/rubocops/kernel/require_relative_cop.rb +0 -33
- data/resources/rubocops/module/autoload_cop.rb +0 -37
- data/resources/rubocops/module/const_defined_cop.rb +0 -37
- data/resources/rubocops/module/const_get_cop.rb +0 -37
- data/resources/rubocops/module/const_set_cop.rb +0 -37
- data/resources/rubocops/module/constants_cop.rb +0 -37
- data/resources/rubocops/module/name_cop.rb +0 -37
- data/resources/rubocops/object/class_cop.rb +0 -37
- data/resources/rubocops/object/freeze_cop.rb +0 -37
- data/resources/rubocops/object/frozen_cop.rb +0 -37
- data/resources/rubocops/object/is_a_cop.rb +0 -37
- data/resources/rubocops/object/method_cop.rb +0 -37
- data/resources/rubocops/object/respond_to_cop.rb +0 -37
- data/resources/rubocops/object/singleton_class_cop.rb +0 -37
- data/resources/rubocops/regexp/spelling_cop.rb +0 -44
- data/resources/rubocops/thread/new_cop.rb +0 -39
- data/resources/ruby-spec/ancestors_spec.rb +0 -70
- data/resources/ruby-spec/modulo_spec.rb +0 -831
- data/resources/ruby-spec/parameters_spec.rb +0 -261
- data/resources/ruby-spec/ruby_spec_spec_helper.rb +0 -35
@@ -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
|
+
module Contrast
|
5
|
+
module Agent
|
6
|
+
# This class is responsible for holding our ruleset and performing filtering operations on all
|
7
|
+
# rules when asked by the middleware.
|
8
|
+
class RuleSet < Set
|
9
|
+
include Contrast::Components::Interface
|
10
|
+
access_component :analysis, :logging
|
11
|
+
|
12
|
+
# The filtering that needs to happen before the application gets access to the request object.
|
13
|
+
# The main action here is snapshotting the request as provided to the application from the
|
14
|
+
# user before any application code has acted upon it. Additionally, this is where Protect will
|
15
|
+
# terminate requests on attack detection if set to block at perimeter
|
16
|
+
def prefilter
|
17
|
+
context = Contrast::Agent::REQUEST_TRACKER.current
|
18
|
+
# TODO: RUBY-801 We shouldn't be responsible for knowing what modes are enabled
|
19
|
+
return unless context.analyze_request? || PROTECT.enabled?
|
20
|
+
|
21
|
+
logger.trace_with_time('Running prefilter...') do
|
22
|
+
map { |rule| rule.prefilter(context) }
|
23
|
+
end
|
24
|
+
rescue Contrast::SecurityException => e
|
25
|
+
logger.warn('RASP threw security exception in prefilter', e)
|
26
|
+
raise e
|
27
|
+
rescue StandardError => e
|
28
|
+
logger.error('Unexpected exception during prefilter', e)
|
29
|
+
end
|
30
|
+
|
31
|
+
# The filtering that needs occur after the application has acted on the request and the response
|
32
|
+
# has been created. The main actions here are analyzing the response for unsafe state or actions.
|
33
|
+
def postfilter
|
34
|
+
context = Contrast::Agent::REQUEST_TRACKER.current
|
35
|
+
# TODO: RUBY-801 We shouldn't be responsible for knowing what modes are enabled
|
36
|
+
return unless context.analyze_response? || PROTECT.enabled?
|
37
|
+
|
38
|
+
logger.trace_with_time('Running postfilter...') do
|
39
|
+
map { |rule| rule.postfilter(context) }
|
40
|
+
end
|
41
|
+
rescue Contrast::SecurityException => e
|
42
|
+
logger.warn('RASP threw security exception in postfilter', e)
|
43
|
+
raise e
|
44
|
+
rescue StandardError => e
|
45
|
+
logger.error('Unexpected exception during postfilter', e)
|
46
|
+
end
|
47
|
+
end
|
48
|
+
end
|
49
|
+
end
|
data/lib/contrast/agent/scope.rb
CHANGED
@@ -99,12 +99,6 @@ module Contrast
|
|
99
99
|
send(call)
|
100
100
|
end
|
101
101
|
|
102
|
-
def with_scope name, &block
|
103
|
-
cs__class.ensure_valid_scope! name
|
104
|
-
call = with_contrast_scope { :"with_#{ name }_scope" }
|
105
|
-
send(call, &block)
|
106
|
-
end
|
107
|
-
|
108
102
|
class << self
|
109
103
|
def valid_scope? scope_sym
|
110
104
|
Contrast::Agent::Scope::SCOPE_LIST.include? scope_sym
|
@@ -16,10 +16,9 @@ module Contrast
|
|
16
16
|
|
17
17
|
def updater_thread
|
18
18
|
@_updater_thread ||= Contrast::Agent::Thread.new do
|
19
|
-
logger.
|
19
|
+
logger.info('Starting heartbeat thread.')
|
20
20
|
loop do
|
21
21
|
begin
|
22
|
-
logger.debug(nil, 'Sending Heartbeat...')
|
23
22
|
CONTRAST_SERVICE.queue_message(poll_message)
|
24
23
|
end
|
25
24
|
sleep REFRESH_INTERVAL_SEC
|
@@ -3,21 +3,12 @@
|
|
3
3
|
|
4
4
|
cs__scoped_require 'securerandom'
|
5
5
|
cs__scoped_require 'set'
|
6
|
+
cs__scoped_require 'singleton'
|
6
7
|
|
7
|
-
cs__scoped_require 'contrast/utils/assess/sampling_util'
|
8
|
-
cs__scoped_require 'contrast/utils/assess/tracking_util'
|
9
|
-
cs__scoped_require 'contrast/utils/environment_util'
|
10
|
-
cs__scoped_require 'contrast/utils/env_configuration_item'
|
11
|
-
cs__scoped_require 'contrast/utils/gemfile_reader'
|
12
|
-
cs__scoped_require 'contrast/utils/object_share'
|
13
|
-
cs__scoped_require 'contrast/utils/performs_logging'
|
14
|
-
cs__scoped_require 'contrast/utils/string_utils'
|
15
|
-
cs__scoped_require 'contrast/agent/reaction_processor'
|
16
|
-
cs__scoped_require 'contrast/agent/require_state'
|
17
|
-
cs__scoped_require 'contrast/agent/assess/policy/patcher'
|
18
|
-
cs__scoped_require 'contrast/agent/patching/policy/patcher'
|
19
8
|
cs__scoped_require 'contrast/components/interface'
|
20
9
|
|
10
|
+
cs__scoped_require 'contrast/agent/reaction_processor'
|
11
|
+
|
21
12
|
module Contrast
|
22
13
|
module Agent
|
23
14
|
# This class functions as a way to query the Agent for its current
|
@@ -27,19 +18,12 @@ module Contrast
|
|
27
18
|
#
|
28
19
|
# @abstract Use the methods in FeatureState to access this data
|
29
20
|
class SettingsState
|
30
|
-
include Contrast::Utils::PerformsLogging
|
31
21
|
include Contrast::Components::Interface
|
32
22
|
|
33
|
-
INVALID_CONFIG = '!!! CONFIG FILE IS INVALID - DISABLING CONTRAST AGENT !!!'
|
34
|
-
|
35
23
|
access_component :agent, :analysis, :settings, :config, :contrast_service
|
36
24
|
|
37
|
-
MODE_WHITELIST = %i[NO_ACTION BLOCK_AT_PERIMETER MONITOR BLOCK].cs__freeze
|
38
|
-
|
39
25
|
# These are components.
|
40
|
-
attr_accessor :last_update
|
41
|
-
:log_file,
|
42
|
-
:log_level
|
26
|
+
attr_accessor :last_update
|
43
27
|
|
44
28
|
# These represent process-level attributes,
|
45
29
|
# not directly related to Contrast function itself.
|
@@ -57,11 +41,7 @@ module Contrast
|
|
57
41
|
@pid = Process.pid.to_i
|
58
42
|
@ppid = Process.ppid.to_i
|
59
43
|
|
60
|
-
init_log_queueing
|
61
|
-
|
62
44
|
check_config
|
63
|
-
|
64
|
-
flush_log_queues
|
65
45
|
end
|
66
46
|
|
67
47
|
def check_config
|
@@ -69,29 +49,15 @@ module Contrast
|
|
69
49
|
|
70
50
|
if CONFIG.invalid?
|
71
51
|
AGENT.disable!
|
72
|
-
|
73
|
-
|
74
|
-
elseif CONFIG.disabled?
|
52
|
+
logger.error('!!! CONFIG FILE IS INVALID - DISABLING CONTRAST AGENT !!!')
|
53
|
+
elsif CONFIG.disabled?
|
75
54
|
AGENT.disable!
|
76
|
-
|
55
|
+
logger.warn('Contrast disabled by configuration. Continuing without instrumentation.')
|
77
56
|
else
|
78
57
|
AGENT.enable!
|
79
58
|
end
|
80
59
|
end
|
81
60
|
|
82
|
-
# workaround to mixed use of class/instance
|
83
|
-
def self.logger
|
84
|
-
instance.logger
|
85
|
-
end
|
86
|
-
|
87
|
-
def logger
|
88
|
-
logger_manager.current
|
89
|
-
end
|
90
|
-
|
91
|
-
def logger_manager
|
92
|
-
(@_logger_manager ||= Contrast::Agent::LoggerManager.new.tap(&:update))
|
93
|
-
end
|
94
|
-
|
95
61
|
def assess_rule name
|
96
62
|
ASSESS.rule name
|
97
63
|
end
|
@@ -105,48 +71,18 @@ module Contrast
|
|
105
71
|
@instrumented_packages[package] = true
|
106
72
|
end
|
107
73
|
|
108
|
-
|
74
|
+
logger.trace_with_time("instrumenting #{ package } ") do
|
109
75
|
cs__scoped_require(package)
|
110
76
|
end
|
111
77
|
rescue LoadError, StandardError => e
|
112
78
|
@instrumented_packages[package] = false
|
113
|
-
|
79
|
+
logger.error("failed instrumenting #{ package } ", e)
|
114
80
|
end
|
115
81
|
|
82
|
+
# Test only
|
116
83
|
def protect_rule name
|
117
84
|
PROTECT.rule name
|
118
85
|
end
|
119
|
-
|
120
|
-
def send_inventory_message
|
121
|
-
return unless INVENTORY.enabled?
|
122
|
-
|
123
|
-
app_update_msg = Contrast::Api::Dtm::ApplicationUpdate.new
|
124
|
-
|
125
|
-
# TODO: RUBY-770
|
126
|
-
Contrast::Utils::EnvironmentUtil.add_library_to_app_update(app_update_msg, protobuf_format(CONFIG.root.inventory.tags))
|
127
|
-
|
128
|
-
Contrast::Delegators::ApplicationUpdate.new(app_update_msg).instance_eval do
|
129
|
-
append_view_technology_descriptor_data(Contrast::Agent.framework_manager.find_applicable_view_technologies) if INVENTORY.enabled?
|
130
|
-
append_route_coverage_data(Contrast::Agent.framework_manager.find_route_discovery_data) if INVENTORY.enabled?
|
131
|
-
append_platform_version(Contrast::Agent.framework_manager.platform_version)
|
132
|
-
end
|
133
|
-
|
134
|
-
Contrast::Utils::InventoryUtil.append_db_config(app_update_msg)
|
135
|
-
|
136
|
-
CONTRAST_SERVICE.queue_message app_update_msg
|
137
|
-
end
|
138
|
-
|
139
|
-
def present? str
|
140
|
-
Contrast::Utils::EnvironmentUtil.present?(str)
|
141
|
-
end
|
142
|
-
|
143
|
-
# CONTRAST-35326, move this responsibility toward the protobuf object
|
144
|
-
def protobuf_format param, truncate: true
|
145
|
-
param = param&.to_s
|
146
|
-
param = Contrast::Utils::StringUtils.force_utf8(param)
|
147
|
-
param = Contrast::Utils::StringUtils.truncate(param) if truncate
|
148
|
-
param
|
149
|
-
end
|
150
86
|
end
|
151
87
|
end
|
152
88
|
end
|
@@ -17,9 +17,9 @@ module Contrast
|
|
17
17
|
class SocketClient
|
18
18
|
include Contrast::Components::Interface
|
19
19
|
|
20
|
-
access_component :
|
20
|
+
access_component :app_context, :contrast_service, :logging
|
21
21
|
|
22
|
-
|
22
|
+
attr_reader :speedracer, :status
|
23
23
|
|
24
24
|
def initialize
|
25
25
|
@status = Contrast::Api::ConnectionStatus.new
|
@@ -68,7 +68,9 @@ module Contrast
|
|
68
68
|
end
|
69
69
|
rescue StandardError => e
|
70
70
|
status.failure!
|
71
|
-
logger.error(
|
71
|
+
logger.error('Unable to send message.', e,
|
72
|
+
event_id: event.__id__,
|
73
|
+
event_type: event.cs__class.name)
|
72
74
|
nil
|
73
75
|
end
|
74
76
|
|
@@ -85,10 +87,10 @@ module Contrast
|
|
85
87
|
# we've attempted to start it up.
|
86
88
|
def start_or_restart
|
87
89
|
if restart?
|
88
|
-
logger.info(
|
90
|
+
logger.info('Attempting to restart service.')
|
89
91
|
return speedracer.start_service
|
90
92
|
elsif !status.was_connected?
|
91
|
-
logger.info(
|
93
|
+
logger.info('Attempting to start service.')
|
92
94
|
return speedracer.start_service
|
93
95
|
end
|
94
96
|
|
@@ -102,27 +104,31 @@ module Contrast
|
|
102
104
|
# 1 initial attempt, + 3 potential retries.
|
103
105
|
# The agent-service-api REQUIREMENTS.md spec mandates this #.
|
104
106
|
4.times do
|
105
|
-
|
106
|
-
logger.debug("Immediately sending #{ agent_startup_msg.cs__class.name } event #{ agent_startup_msg.__id__ }.")
|
107
|
+
log_send_event(agent_startup_msg)
|
107
108
|
next unless (agent_response = speedracer.send_one(agent_startup_msg))
|
108
109
|
|
109
110
|
# Connection was successful
|
110
|
-
|
111
|
-
logger.debug("Immediately sending #{ app_startup_msg.cs__class.name } event #{ app_startup_msg.__id__ }.")
|
111
|
+
log_send_event(app_startup_msg)
|
112
112
|
app_response = speedracer.send_one(app_startup_msg)
|
113
113
|
[agent_response, app_response].each do |msg|
|
114
114
|
Contrast::Utils::ServiceResponseUtil.process_response msg
|
115
115
|
end
|
116
116
|
status.success!
|
117
|
-
logger.debug(
|
117
|
+
logger.debug('Successfully sent startup messages to service.')
|
118
118
|
return
|
119
119
|
end
|
120
120
|
|
121
121
|
logger.error('Could not send agent startup message context')
|
122
122
|
rescue StandardError => e
|
123
|
-
logger.error(
|
123
|
+
logger.error('Could not build service context', e)
|
124
124
|
raise # re-raise the error to be caught by SocketClient#send_to_speedracer
|
125
125
|
end
|
126
|
+
|
127
|
+
def log_send_event event
|
128
|
+
logger.debug('Immediately sending event.',
|
129
|
+
event_id: event.__id__,
|
130
|
+
event_type: event.cs__class.name)
|
131
|
+
end
|
126
132
|
end
|
127
133
|
end
|
128
134
|
end
|
@@ -0,0 +1,42 @@
|
|
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/utils/gemfile_reader'
|
6
|
+
cs__scoped_require 'contrast/api/decorators/application_update'
|
7
|
+
|
8
|
+
module Contrast
|
9
|
+
module Agent
|
10
|
+
# this module handles one time static analysis tasks
|
11
|
+
class StaticAnalysis
|
12
|
+
include Singleton
|
13
|
+
include Contrast::Components::Interface
|
14
|
+
access_component :logging, :analysis, :contrast_service, :scope
|
15
|
+
class << self
|
16
|
+
# After the first request is complete, we do a one-time manual catchup to review and
|
17
|
+
# report the already-loaded gems.
|
18
|
+
def catchup
|
19
|
+
@_catchup ||= begin
|
20
|
+
with_contrast_scope do
|
21
|
+
Contrast::Utils::GemfileReader.instance.map_loaded_classes
|
22
|
+
send_inventory_message
|
23
|
+
true
|
24
|
+
end
|
25
|
+
end
|
26
|
+
rescue StandardError => e
|
27
|
+
logger.warn('Unable to run post-initialization static analysis', e)
|
28
|
+
end
|
29
|
+
|
30
|
+
def send_inventory_message
|
31
|
+
return unless INVENTORY.enabled?
|
32
|
+
|
33
|
+
app_update_msg = Contrast::Api::Dtm::ApplicationUpdate.build
|
34
|
+
|
35
|
+
Contrast::Utils::InventoryUtil.append_db_config(app_update_msg)
|
36
|
+
|
37
|
+
CONTRAST_SERVICE.queue_message app_update_msg
|
38
|
+
end
|
39
|
+
end
|
40
|
+
end
|
41
|
+
end
|
42
|
+
end
|
@@ -12,10 +12,6 @@ module Contrast
|
|
12
12
|
access_component :logging, :scope
|
13
13
|
|
14
14
|
class << self
|
15
|
-
def active?
|
16
|
-
instance_variable_defined?(:@require_hook) && @require_hook.enabled?
|
17
|
-
end
|
18
|
-
|
19
15
|
def enable!
|
20
16
|
@require_hook ||= TracePoint.new(:end) do |tracepoint_event|
|
21
17
|
process(tracepoint_event)
|
@@ -33,7 +29,7 @@ module Contrast
|
|
33
29
|
|
34
30
|
def process tracepoint_event
|
35
31
|
with_contrast_scope do
|
36
|
-
logger.
|
32
|
+
logger.trace('Received TracePoint end event', module: tracepoint_event.self.to_s)
|
37
33
|
|
38
34
|
loaded_module = tracepoint_event.self
|
39
35
|
path = tracepoint_event.path
|
data/lib/contrast/api.rb
CHANGED
@@ -12,7 +12,7 @@ end
|
|
12
12
|
|
13
13
|
cs__scoped_require 'contrast/api/dtm_pb'
|
14
14
|
cs__scoped_require 'contrast/api/settings_pb'
|
15
|
-
cs__scoped_require 'contrast/
|
15
|
+
cs__scoped_require 'contrast/api/decorators'
|
16
16
|
cs__scoped_require 'contrast/api/unix_socket'
|
17
17
|
cs__scoped_require 'contrast/api/tcp_socket'
|
18
18
|
cs__scoped_require 'contrast/api/speedracer'
|
@@ -0,0 +1,14 @@
|
|
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 decorate protobuf models
|
7
|
+
module Decorators
|
8
|
+
end
|
9
|
+
end
|
10
|
+
end
|
11
|
+
cs__scoped_require 'contrast/api/decorators/application_update'
|
12
|
+
cs__scoped_require 'contrast/api/decorators/input_analysis'
|
13
|
+
cs__scoped_require 'contrast/api/decorators/application_settings'
|
14
|
+
cs__scoped_require 'contrast/api/decorators/server_features'
|
@@ -0,0 +1,37 @@
|
|
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/utils/string_utils'
|
5
|
+
|
6
|
+
module Contrast
|
7
|
+
module Api
|
8
|
+
module Decorators
|
9
|
+
# Used to decorate the ApplicationSettings protobuf model to handle setting translation
|
10
|
+
module ApplicationSettings
|
11
|
+
MODE_ALLOWLIST = %i[NO_ACTION BLOCK_AT_PERIMETER MONITOR BLOCK].cs__freeze
|
12
|
+
# Convert protobuf exlcusions into Agent exclusions
|
13
|
+
def translated_exclusions
|
14
|
+
exclusions.map { |exc| Contrast::Agent::ExclusionMatcher.new(exc) }
|
15
|
+
end
|
16
|
+
|
17
|
+
# Convert protobuf protect rule settings into a hash that settings state understands
|
18
|
+
def translated_protection_mode_by_id
|
19
|
+
protection_rules = self.protection_rules.map { |pr, _hash| [pr.id, pr.mode] } # [[RULE_ID, MODE]]
|
20
|
+
protection_rules.select! { |(_id, mode)| MODE_ALLOWLIST.include? mode } # [REMOVE IF MODE INVALID]
|
21
|
+
protection_rules.to_h # {RULE_ID => MODE}
|
22
|
+
end
|
23
|
+
|
24
|
+
def application_state_translation
|
25
|
+
{
|
26
|
+
modes_by_id: translated_protection_mode_by_id,
|
27
|
+
exclusion_matchers: translated_exclusions,
|
28
|
+
disabled_assess_rules: disabled_assess_rules,
|
29
|
+
session_id: session_id
|
30
|
+
}
|
31
|
+
end
|
32
|
+
end
|
33
|
+
end
|
34
|
+
end
|
35
|
+
end
|
36
|
+
|
37
|
+
Contrast::Api::Settings::ApplicationSettings.include(Contrast::Api::Decorators::ApplicationSettings)
|
@@ -0,0 +1,66 @@
|
|
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/utils/string_utils'
|
6
|
+
|
7
|
+
module Contrast
|
8
|
+
module Api
|
9
|
+
module Decorators
|
10
|
+
# Used to decorate the ApplicationUpdate protobuf model so it can own some of the data massaging required for
|
11
|
+
# AppUpdate dtm
|
12
|
+
module ApplicationUpdate
|
13
|
+
include Contrast::Components::Interface
|
14
|
+
access_component :config
|
15
|
+
|
16
|
+
def self.included klass
|
17
|
+
klass.extend(ClassMethods)
|
18
|
+
end
|
19
|
+
|
20
|
+
def append_view_technology_descriptor_data view_technology_descriptors
|
21
|
+
view_technology_descriptors.each do |vtd|
|
22
|
+
vtd.technology_names.each do |tech_name|
|
23
|
+
technologies[tech_name] = true
|
24
|
+
end
|
25
|
+
end
|
26
|
+
end
|
27
|
+
|
28
|
+
def append_library_update library_dtm_list, library_tags
|
29
|
+
lib_tags = Contrast::Utils::StringUtils.protobuf_format(library_tags)
|
30
|
+
library_dtm_list.each do |library_dtm|
|
31
|
+
library_dtm.tags = lib_tags
|
32
|
+
libraries[library_dtm.hash_code] = library_dtm
|
33
|
+
end
|
34
|
+
end
|
35
|
+
|
36
|
+
# TS only allows you to report 500 routes per application
|
37
|
+
def append_route_coverage_data route_coverage_dtms
|
38
|
+
route_coverage_dtms.take(500).each do |route_coverage_dtm|
|
39
|
+
routes << route_coverage_dtm
|
40
|
+
end
|
41
|
+
end
|
42
|
+
|
43
|
+
def append_platform_version platform_version
|
44
|
+
self.platform = Contrast::Api::Dtm::Platform.new if platform.nil?
|
45
|
+
platform.major = platform_version.major
|
46
|
+
platform.minor = platform_version.minor
|
47
|
+
platform.build = platform_version.patch
|
48
|
+
end
|
49
|
+
|
50
|
+
# Used to add class methods to the ApplicationUpdate class on inclusion of the decorator
|
51
|
+
module ClassMethods
|
52
|
+
def build
|
53
|
+
msg = new
|
54
|
+
msg.append_view_technology_descriptor_data(Contrast::Agent.framework_manager.find_applicable_view_technologies)
|
55
|
+
msg.append_route_coverage_data(Contrast::Agent.framework_manager.find_route_discovery_data)
|
56
|
+
msg.append_platform_version(Contrast::Agent.framework_manager.platform_version)
|
57
|
+
msg.append_library_update(Contrast::Utils::GemfileReader.instance.library_pb_list, CONFIG.root.inventory.tags)
|
58
|
+
msg
|
59
|
+
end
|
60
|
+
end
|
61
|
+
end
|
62
|
+
end
|
63
|
+
end
|
64
|
+
end
|
65
|
+
|
66
|
+
Contrast::Api::Dtm::ApplicationUpdate.include(Contrast::Api::Decorators::ApplicationUpdate)
|