contrast-agent 4.6.0 → 4.9.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.gitignore +6 -1
- data/.gitmodules +1 -1
- data/.simplecov +1 -0
- data/Rakefile +1 -2
- data/ext/build_funchook.rb +3 -3
- data/ext/extconf_common.rb +1 -5
- data/lib/contrast.rb +24 -14
- data/lib/contrast/agent/assess.rb +1 -1
- data/lib/contrast/agent/assess/contrast_event.rb +1 -4
- data/lib/contrast/agent/assess/contrast_object.rb +2 -2
- data/lib/contrast/agent/assess/events/event_factory.rb +2 -1
- data/lib/contrast/agent/assess/finalizers/hash.rb +2 -4
- data/lib/contrast/agent/assess/policy/dynamic_source_factory.rb +6 -3
- data/lib/contrast/agent/assess/policy/patcher.rb +16 -21
- data/lib/contrast/agent/assess/policy/policy.rb +1 -1
- data/lib/contrast/agent/assess/policy/policy_node.rb +25 -33
- data/lib/contrast/agent/assess/policy/policy_scanner.rb +3 -5
- data/lib/contrast/agent/assess/policy/preshift.rb +7 -5
- data/lib/contrast/agent/assess/policy/propagation_method.rb +10 -19
- data/lib/contrast/agent/assess/policy/propagation_node.rb +19 -8
- data/lib/contrast/agent/assess/policy/propagator.rb +1 -0
- data/lib/contrast/agent/assess/policy/propagator/center.rb +2 -1
- data/lib/contrast/agent/assess/policy/propagator/database_write.rb +3 -6
- data/lib/contrast/agent/assess/policy/propagator/insert.rb +3 -1
- data/lib/contrast/agent/assess/policy/propagator/match_data.rb +2 -1
- data/lib/contrast/agent/assess/policy/propagator/rack_protection.rb +73 -0
- data/lib/contrast/agent/assess/policy/propagator/select.rb +2 -12
- data/lib/contrast/agent/assess/policy/propagator/split.rb +12 -13
- data/lib/contrast/agent/assess/policy/propagator/substitution.rb +3 -10
- data/lib/contrast/agent/assess/policy/propagator/trim.rb +3 -15
- data/lib/contrast/agent/assess/policy/rewriter_patch.rb +13 -10
- data/lib/contrast/agent/assess/policy/source_method.rb +12 -12
- data/lib/contrast/agent/assess/policy/source_validation/source_validation.rb +1 -3
- data/lib/contrast/agent/assess/policy/trigger/reflected_xss.rb +5 -1
- data/lib/contrast/agent/assess/policy/trigger/xpath.rb +0 -3
- data/lib/contrast/agent/assess/policy/trigger_method.rb +8 -18
- data/lib/contrast/agent/assess/policy/trigger_node.rb +3 -2
- data/lib/contrast/agent/assess/policy/trigger_validation/redos_validator.rb +4 -3
- data/lib/contrast/agent/assess/policy/trigger_validation/ssrf_validator.rb +1 -2
- data/lib/contrast/agent/assess/policy/trigger_validation/xss_validator.rb +1 -8
- data/lib/contrast/agent/assess/property/evented.rb +8 -5
- data/lib/contrast/agent/assess/rule/provider/hardcoded_key.rb +11 -5
- data/lib/contrast/agent/assess/rule/provider/hardcoded_password.rb +4 -1
- data/lib/contrast/agent/assess/rule/provider/hardcoded_value_rule.rb +7 -9
- data/lib/contrast/agent/at_exit_hook.rb +3 -3
- data/lib/contrast/agent/class_reopener.rb +9 -6
- data/lib/contrast/agent/disable_reaction.rb +4 -7
- data/lib/contrast/agent/exclusion_matcher.rb +7 -14
- data/lib/contrast/agent/inventory/dependencies.rb +2 -0
- data/lib/contrast/agent/inventory/dependency_analysis.rb +2 -6
- data/lib/contrast/agent/inventory/dependency_usage_analysis.rb +3 -5
- data/lib/contrast/agent/inventory/policy/datastores.rb +3 -4
- data/lib/contrast/agent/inventory/policy/policy.rb +1 -1
- data/lib/contrast/agent/middleware.rb +17 -18
- data/lib/contrast/agent/module_data.rb +3 -3
- data/lib/contrast/agent/patching/policy/after_load_patch.rb +3 -3
- data/lib/contrast/agent/patching/policy/after_load_patcher.rb +9 -9
- data/lib/contrast/agent/patching/policy/method_policy.rb +6 -2
- data/lib/contrast/agent/patching/policy/module_policy.rb +14 -7
- data/lib/contrast/agent/patching/policy/patch.rb +20 -25
- data/lib/contrast/agent/patching/policy/patch_status.rb +6 -7
- data/lib/contrast/agent/patching/policy/patcher.rb +21 -18
- data/lib/contrast/agent/patching/policy/policy.rb +2 -4
- data/lib/contrast/agent/patching/policy/policy_node.rb +16 -7
- data/lib/contrast/agent/patching/policy/trigger_node.rb +21 -8
- data/lib/contrast/agent/protect/policy/applies_command_injection_rule.rb +1 -1
- data/lib/contrast/agent/protect/policy/applies_deserialization_rule.rb +1 -1
- data/lib/contrast/agent/protect/policy/applies_no_sqli_rule.rb +1 -1
- data/lib/contrast/agent/protect/policy/applies_path_traversal_rule.rb +2 -3
- data/lib/contrast/agent/protect/policy/applies_sqli_rule.rb +1 -1
- data/lib/contrast/agent/protect/policy/applies_xxe_rule.rb +5 -9
- data/lib/contrast/agent/protect/policy/policy.rb +1 -1
- data/lib/contrast/agent/protect/policy/rule_applicator.rb +7 -9
- data/lib/contrast/agent/protect/rule/base.rb +20 -23
- data/lib/contrast/agent/protect/rule/base_service.rb +9 -5
- data/lib/contrast/agent/protect/rule/cmd_injection.rb +18 -23
- data/lib/contrast/agent/protect/rule/deserialization.rb +6 -13
- data/lib/contrast/agent/protect/rule/http_method_tampering.rb +3 -14
- data/lib/contrast/agent/protect/rule/no_sqli.rb +6 -2
- data/lib/contrast/agent/protect/rule/no_sqli/mongo_no_sql_scanner.rb +1 -3
- data/lib/contrast/agent/protect/rule/path_traversal.rb +6 -10
- data/lib/contrast/agent/protect/rule/sqli.rb +1 -1
- 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 +5 -12
- data/lib/contrast/agent/protect/rule/xxe/entity_wrapper.rb +1 -2
- data/lib/contrast/agent/reaction_processor.rb +13 -13
- data/lib/contrast/agent/request.rb +27 -26
- data/lib/contrast/agent/request_context.rb +17 -22
- data/lib/contrast/agent/request_handler.rb +5 -3
- data/lib/contrast/agent/response.rb +2 -3
- data/lib/contrast/agent/rewriter.rb +9 -6
- data/lib/contrast/agent/rule_set.rb +5 -4
- data/lib/contrast/agent/service_heartbeat.rb +4 -6
- data/lib/contrast/agent/static_analysis.rb +6 -5
- data/lib/contrast/agent/thread.rb +2 -4
- data/lib/contrast/agent/thread_watcher.rb +3 -4
- data/lib/contrast/agent/tracepoint_hook.rb +5 -5
- data/lib/contrast/agent/version.rb +1 -1
- data/lib/contrast/api/communication/messaging_queue.rb +4 -5
- data/lib/contrast/api/communication/response_processor.rb +11 -13
- data/lib/contrast/api/communication/service_lifecycle.rb +9 -6
- data/lib/contrast/api/communication/socket_client.rb +22 -31
- data/lib/contrast/api/communication/speedracer.rb +8 -13
- data/lib/contrast/api/decorators/address.rb +2 -3
- data/lib/contrast/api/decorators/agent_startup.rb +7 -9
- data/lib/contrast/api/decorators/application_startup.rb +12 -10
- data/lib/contrast/api/decorators/application_update.rb +0 -4
- data/lib/contrast/api/decorators/http_request.rb +3 -7
- data/lib/contrast/api/decorators/instrumentation_mode.rb +3 -5
- data/lib/contrast/api/decorators/library.rb +8 -6
- data/lib/contrast/api/decorators/message.rb +9 -9
- data/lib/contrast/api/decorators/trace_event.rb +3 -1
- data/lib/contrast/api/decorators/trace_event_object.rb +3 -6
- data/lib/contrast/api/decorators/trace_taint_range_tags.rb +1 -6
- data/lib/contrast/components/agent.rb +17 -17
- data/lib/contrast/components/app_context.rb +11 -15
- data/lib/contrast/components/assess.rb +16 -16
- data/lib/contrast/components/base.rb +40 -0
- data/lib/contrast/components/config.rb +2 -3
- data/lib/contrast/components/contrast_service.rb +12 -18
- data/lib/contrast/components/heap_dump.rb +5 -4
- data/lib/contrast/components/inventory.rb +2 -7
- data/lib/contrast/components/logger.rb +1 -2
- data/lib/contrast/components/protect.rb +10 -13
- data/lib/contrast/components/sampling.rb +13 -7
- data/lib/contrast/components/scope.rb +0 -4
- data/lib/contrast/components/settings.rb +5 -7
- data/lib/contrast/config/assess_rules_configuration.rb +1 -3
- data/lib/contrast/config/base_configuration.rb +4 -5
- data/lib/contrast/config/exception_configuration.rb +1 -5
- data/lib/contrast/config/heap_dump_configuration.rb +12 -6
- data/lib/contrast/config/logger_configuration.rb +1 -5
- data/lib/contrast/configuration.rb +6 -18
- data/lib/contrast/extension/assess/array.rb +3 -10
- data/lib/contrast/extension/assess/erb.rb +1 -7
- data/lib/contrast/extension/assess/eval_trigger.rb +4 -9
- data/lib/contrast/extension/assess/exec_trigger.rb +3 -9
- data/lib/contrast/extension/assess/fiber.rb +8 -17
- data/lib/contrast/extension/assess/hash.rb +3 -3
- data/lib/contrast/extension/assess/kernel.rb +4 -13
- data/lib/contrast/extension/assess/marshal.rb +6 -10
- data/lib/contrast/extension/assess/regexp.rb +6 -10
- data/lib/contrast/extension/assess/string.rb +8 -6
- data/lib/contrast/extension/kernel.rb +2 -2
- data/lib/contrast/extension/protect/kernel.rb +0 -5
- data/lib/contrast/framework/manager.rb +3 -5
- data/lib/contrast/framework/rack/patch/session_cookie.rb +11 -24
- data/lib/contrast/framework/rack/patch/support.rb +6 -4
- data/lib/contrast/framework/rails/patch/assess_configuration.rb +12 -9
- data/lib/contrast/framework/rails/patch/support.rb +41 -35
- data/lib/contrast/framework/rails/railtie.rb +34 -0
- data/lib/contrast/framework/rails/rewrite/action_controller_railties_helper_inherited.rb +4 -1
- data/lib/contrast/framework/rails/rewrite/active_record_attribute_methods_read.rb +2 -0
- data/lib/contrast/framework/rails/rewrite/active_record_named.rb +5 -4
- data/lib/contrast/framework/rails/rewrite/active_record_time_zone_inherited.rb +2 -0
- data/lib/contrast/framework/rails/support.rb +2 -2
- data/lib/contrast/framework/sinatra/support.rb +3 -1
- data/lib/contrast/funchook/funchook.rb +5 -8
- data/lib/contrast/logger/application.rb +13 -15
- data/lib/contrast/logger/format.rb +2 -5
- data/lib/contrast/logger/log.rb +26 -9
- data/lib/contrast/logger/request.rb +1 -6
- data/lib/contrast/security_exception.rb +1 -1
- data/lib/contrast/tasks/config.rb +0 -1
- data/lib/contrast/tasks/service.rb +6 -7
- data/lib/contrast/utils/assess/sampling_util.rb +2 -3
- data/lib/contrast/utils/assess/tracking_util.rb +3 -6
- data/lib/contrast/utils/class_util.rb +0 -8
- data/lib/contrast/utils/hash_digest.rb +2 -5
- data/lib/contrast/utils/heap_dump_util.rb +5 -3
- data/lib/contrast/utils/invalid_configuration_util.rb +4 -3
- data/lib/contrast/utils/inventory_util.rb +2 -3
- data/lib/contrast/utils/io_util.rb +3 -5
- data/lib/contrast/utils/job_servers_running.rb +13 -7
- data/lib/contrast/utils/os.rb +4 -4
- data/lib/contrast/utils/ruby_ast_rewriter.rb +2 -1
- data/lib/contrast/utils/string_utils.rb +2 -3
- data/lib/contrast/utils/tag_util.rb +25 -19
- data/resources/assess/policy.json +55 -0
- data/ruby-agent.gemspec +17 -16
- data/service_executables/VERSION +1 -1
- data/service_executables/linux/contrast-service +0 -0
- data/service_executables/mac/contrast-service +0 -0
- data/sonar-project.properties +9 -0
- metadata +61 -46
- data/lib/contrast/agent/railtie.rb +0 -31
- data/lib/contrast/components/interface.rb +0 -195
- data/lib/contrast/delegators/input_analysis.rb +0 -12
@@ -3,9 +3,12 @@
|
|
3
3
|
|
4
4
|
# intentional -- we're using a << operator here
|
5
5
|
|
6
|
+
return unless RUBY_VERSION < '2.6.0' # TODO: RUBY-714 remove guard w/ EOL of 2.5
|
7
|
+
|
6
8
|
require 'contrast/agent/class_reopener'
|
7
9
|
require 'contrast/agent/patching/policy/patch_status'
|
8
|
-
require 'contrast/components/
|
10
|
+
require 'contrast/components/logger'
|
11
|
+
require 'contrast/components/scope'
|
9
12
|
require 'contrast/utils/ruby_ast_rewriter'
|
10
13
|
|
11
14
|
module Contrast
|
@@ -17,8 +20,8 @@ module Contrast
|
|
17
20
|
# @deprecated Changes to this class are discouraged as this approach is
|
18
21
|
# being phased out with support for those language versions.
|
19
22
|
class Rewriter
|
20
|
-
|
21
|
-
|
23
|
+
extend Contrast::Components::Logger::InstanceMethods
|
24
|
+
extend Contrast::Components::Scope::InstanceMethods
|
22
25
|
|
23
26
|
SELF_DEFINITION = 'def self.'
|
24
27
|
DEFINITION = 'def '
|
@@ -57,13 +60,13 @@ module Contrast
|
|
57
60
|
rescue SyntaxError, StandardError => e
|
58
61
|
opener = nil
|
59
62
|
mod ||= module_data.mod
|
60
|
-
logger.debug('Reopening threw a handled exception - skipping rewriting', e, module: module_data.
|
63
|
+
logger.debug('Reopening threw a handled exception - skipping rewriting', e, module: module_data.mod_name)
|
61
64
|
status ||= Contrast::Agent::Patching::Policy::PatchStatus.get_status(mod)
|
62
65
|
status.failed_rewrite!
|
63
66
|
ensure
|
64
67
|
opener&.commit_patches
|
65
68
|
logger.trace('Rewriting complete',
|
66
|
-
module: module_data.
|
69
|
+
module: module_data.mod_name,
|
67
70
|
result: Contrast::Agent::Patching::Policy::PatchStatus.get_status(
|
68
71
|
module_data.mod).rewrite_status)
|
69
72
|
end
|
@@ -238,7 +241,7 @@ module Contrast
|
|
238
241
|
].cs__freeze
|
239
242
|
def should_rewrite? module_data
|
240
243
|
clazz = module_data.mod
|
241
|
-
name = module_data.
|
244
|
+
name = module_data.mod_name
|
242
245
|
return false unless clazz
|
243
246
|
|
244
247
|
# Name can be nil for anonymous modules. We won't work on them.
|
@@ -1,13 +1,14 @@
|
|
1
1
|
# Copyright (c) 2021 Contrast Security, Inc. See https://www.contrastsecurity.com/enduser-terms-0317a for more details.
|
2
2
|
# frozen_string_literal: true
|
3
3
|
|
4
|
+
require 'contrast/components/logger'
|
5
|
+
|
4
6
|
module Contrast
|
5
7
|
module Agent
|
6
8
|
# This class is responsible for holding our ruleset and performing filtering operations on all
|
7
9
|
# rules when asked by the middleware.
|
8
10
|
class RuleSet < Set
|
9
|
-
include Contrast::Components::
|
10
|
-
access_component :analysis, :logging
|
11
|
+
include Contrast::Components::Logger::InstanceMethods
|
11
12
|
|
12
13
|
# The filtering that needs to happen before the application gets access to the request object.
|
13
14
|
# The main action here is snapshotting the request as provided to the application from the
|
@@ -16,7 +17,7 @@ module Contrast
|
|
16
17
|
def prefilter
|
17
18
|
context = Contrast::Agent::REQUEST_TRACKER.current
|
18
19
|
# TODO: RUBY-801 We shouldn't be responsible for knowing what modes are enabled
|
19
|
-
return unless context&.analyze_request? || PROTECT.enabled?
|
20
|
+
return unless context&.analyze_request? || ::Contrast::PROTECT.enabled?
|
20
21
|
|
21
22
|
logger.trace_with_time('Running prefilter...') do
|
22
23
|
map { |rule| rule.prefilter(context) }
|
@@ -33,7 +34,7 @@ module Contrast
|
|
33
34
|
def postfilter
|
34
35
|
context = Contrast::Agent::REQUEST_TRACKER.current
|
35
36
|
# TODO: RUBY-801 We shouldn't be responsible for knowing what modes are enabled
|
36
|
-
return unless context&.analyze_response? || PROTECT.enabled?
|
37
|
+
return unless context&.analyze_response? || ::Contrast::PROTECT.enabled?
|
37
38
|
|
38
39
|
logger.trace_with_time('Running postfilter...') do
|
39
40
|
map { |rule| rule.postfilter(context) }
|
@@ -1,7 +1,7 @@
|
|
1
1
|
# Copyright (c) 2021 Contrast Security, Inc. See https://www.contrastsecurity.com/enduser-terms-0317a for more details.
|
2
2
|
# frozen_string_literal: true
|
3
3
|
|
4
|
-
require 'contrast/components/
|
4
|
+
require 'contrast/components/logger'
|
5
5
|
require 'contrast/agent/worker_thread'
|
6
6
|
|
7
7
|
module Contrast
|
@@ -9,8 +9,7 @@ module Contrast
|
|
9
9
|
# The ServiceHeartbeat functions to keep the Contrast Service alive and
|
10
10
|
# ensure that it maintains this Agent's ApplicationContext.
|
11
11
|
class ServiceHeartbeat < WorkerThread
|
12
|
-
include Contrast::Components::
|
13
|
-
access_component :logging
|
12
|
+
include Contrast::Components::Logger::InstanceMethods
|
14
13
|
|
15
14
|
# Spec recommends 30 seconds, we're going with 15.
|
16
15
|
REFRESH_INTERVAL_SEC = 15
|
@@ -21,9 +20,8 @@ module Contrast
|
|
21
20
|
@_thread = Contrast::Agent::Thread.new do
|
22
21
|
logger.info('Starting heartbeat thread.')
|
23
22
|
loop do
|
24
|
-
|
25
|
-
|
26
|
-
end
|
23
|
+
Contrast::Agent.messaging_queue.send_event_eventually(poll_message)
|
24
|
+
|
27
25
|
sleep REFRESH_INTERVAL_SEC
|
28
26
|
end
|
29
27
|
end
|
@@ -1,8 +1,8 @@
|
|
1
1
|
# Copyright (c) 2021 Contrast Security, Inc. See https://www.contrastsecurity.com/enduser-terms-0317a for more details.
|
2
2
|
# frozen_string_literal: true
|
3
3
|
|
4
|
-
require 'contrast/components/
|
5
|
-
require 'contrast/
|
4
|
+
require 'contrast/components/logger'
|
5
|
+
require 'contrast/components/scope'
|
6
6
|
require 'contrast/api/decorators/application_update'
|
7
7
|
|
8
8
|
module Contrast
|
@@ -10,8 +10,9 @@ module Contrast
|
|
10
10
|
# this module handles one time static analysis tasks
|
11
11
|
class StaticAnalysis
|
12
12
|
include Singleton
|
13
|
-
include Contrast::Components::
|
14
|
-
|
13
|
+
include Contrast::Components::Logger::InstanceMethods
|
14
|
+
include Contrast::Components::Scope::InstanceMethods
|
15
|
+
|
15
16
|
class << self
|
16
17
|
# After the first request is complete, we do a one-time manual catchup to review and
|
17
18
|
# report the already-loaded gems.
|
@@ -23,7 +24,7 @@ module Contrast
|
|
23
24
|
end
|
24
25
|
|
25
26
|
def send_inventory_message
|
26
|
-
return unless INVENTORY.enabled?
|
27
|
+
return unless ::Contrast::INVENTORY.enabled?
|
27
28
|
|
28
29
|
app_update_msg = Contrast::Api::Dtm::ApplicationUpdate.build
|
29
30
|
|
@@ -1,15 +1,13 @@
|
|
1
1
|
# Copyright (c) 2021 Contrast Security, Inc. See https://www.contrastsecurity.com/enduser-terms-0317a for more details.
|
2
2
|
# frozen_string_literal: true
|
3
3
|
|
4
|
-
require 'contrast/components/
|
4
|
+
require 'contrast/components/scope'
|
5
5
|
|
6
6
|
module Contrast
|
7
7
|
module Agent
|
8
8
|
# Threads used by Contrast. Any long running thread should be created and managed by our ThreadWatcher class.
|
9
9
|
class Thread < ::Thread
|
10
|
-
include Contrast::Components::
|
11
|
-
|
12
|
-
access_component :scope
|
10
|
+
include Contrast::Components::Scope::InstanceMethods
|
13
11
|
|
14
12
|
# Make our internal code run in Contrast scope.
|
15
13
|
def initialize *args
|
@@ -1,7 +1,7 @@
|
|
1
1
|
# Copyright (c) 2021 Contrast Security, Inc. See https://www.contrastsecurity.com/enduser-terms-0317a for more details.
|
2
2
|
# frozen_string_literal: true
|
3
3
|
|
4
|
-
require 'contrast/components/
|
4
|
+
require 'contrast/components/logger'
|
5
5
|
require 'contrast/agent/service_heartbeat'
|
6
6
|
require 'contrast/api/communication/messaging_queue'
|
7
7
|
|
@@ -13,8 +13,7 @@ module Contrast
|
|
13
13
|
# @attr_reader heartbeat [Contrast::Agent::ServiceHeartbeat]
|
14
14
|
# @attr_reader messaging_queue [Contrast::Api::Communication::MessagingQueue]
|
15
15
|
class ThreadWatcher
|
16
|
-
include Contrast::Components::
|
17
|
-
access_component :agent, :logging
|
16
|
+
include Contrast::Components::Logger::InstanceMethods
|
18
17
|
|
19
18
|
attr_reader :heapdump_util, :heartbeat, :messaging_queue
|
20
19
|
|
@@ -26,7 +25,7 @@ module Contrast
|
|
26
25
|
end
|
27
26
|
|
28
27
|
def startup!
|
29
|
-
return unless AGENT.enabled?
|
28
|
+
return unless ::Contrast::AGENT.enabled?
|
30
29
|
|
31
30
|
unless heartbeat.running?
|
32
31
|
logger.debug('Attempting to start heartbeat thread')
|
@@ -1,15 +1,15 @@
|
|
1
1
|
# Copyright (c) 2021 Contrast Security, Inc. See https://www.contrastsecurity.com/enduser-terms-0317a for more details.
|
2
2
|
# frozen_string_literal: true
|
3
3
|
|
4
|
-
require 'contrast/components/
|
4
|
+
require 'contrast/components/logger'
|
5
|
+
require 'contrast/components/scope'
|
5
6
|
|
6
7
|
module Contrast
|
7
8
|
module Agent
|
8
9
|
# This module is used to apply instrumentation to classes as they are required
|
9
10
|
module TracePointHook
|
10
|
-
|
11
|
-
|
12
|
-
access_component :logging, :scope
|
11
|
+
extend Contrast::Components::Logger::InstanceMethods
|
12
|
+
extend Contrast::Components::Scope::InstanceMethods
|
13
13
|
|
14
14
|
class << self
|
15
15
|
def enable!
|
@@ -37,7 +37,7 @@ module Contrast
|
|
37
37
|
|
38
38
|
Contrast::Agent::Inventory::DependencyUsageAnalysis.instance.associate_file(path) if path
|
39
39
|
Contrast::Agent::Patching::Policy::Patcher.patch_specific_module(loaded_module)
|
40
|
-
Contrast::Agent::Assess::Policy::RewriterPatch.rewrite_interpolation(loaded_module)
|
40
|
+
Contrast::Agent::Assess::Policy::RewriterPatch.rewrite_interpolation(loaded_module) if RUBY_VERSION < '2.6.0' # TODO: RUBY-714 remove guard w/ EOL of 2.5
|
41
41
|
Contrast::Agent::Assess::Policy::PolicyScanner.scan(tracepoint_event)
|
42
42
|
end
|
43
43
|
end
|
@@ -1,7 +1,7 @@
|
|
1
1
|
# Copyright (c) 2021 Contrast Security, Inc. See https://www.contrastsecurity.com/enduser-terms-0317a for more details.
|
2
2
|
# frozen_string_literal: true
|
3
3
|
|
4
|
-
require 'contrast/components/
|
4
|
+
require 'contrast/components/logger'
|
5
5
|
require 'contrast/agent/worker_thread'
|
6
6
|
|
7
7
|
module Contrast
|
@@ -9,8 +9,7 @@ module Contrast
|
|
9
9
|
module Communication
|
10
10
|
# Top level gateway to messaging with speedracer
|
11
11
|
class MessagingQueue < Contrast::Agent::WorkerThread
|
12
|
-
include Contrast::Components::
|
13
|
-
access_component :agent, :analysis, :logging, :settings
|
12
|
+
include Contrast::Components::Logger::InstanceMethods
|
14
13
|
|
15
14
|
attr_reader :queue, :speedracer
|
16
15
|
|
@@ -22,7 +21,7 @@ module Contrast
|
|
22
21
|
|
23
22
|
# Use this to bypass the messaging queue and leave response processing to the caller
|
24
23
|
def send_event_immediately event
|
25
|
-
if AGENT.disabled?
|
24
|
+
if ::Contrast::AGENT.disabled?
|
26
25
|
logger.warn('Attempted to send event immediately with Agent disabled', caller: caller, event: event)
|
27
26
|
return
|
28
27
|
end
|
@@ -31,7 +30,7 @@ module Contrast
|
|
31
30
|
|
32
31
|
# Use this to add a message to the queue and process the response internally
|
33
32
|
def send_event_eventually event
|
34
|
-
if AGENT.disabled?
|
33
|
+
if ::Contrast::AGENT.disabled?
|
35
34
|
logger.warn('Attempted to queue event with Agent disabled', caller: caller, event: event)
|
36
35
|
return
|
37
36
|
end
|
@@ -2,14 +2,14 @@
|
|
2
2
|
# frozen_string_literal: true
|
3
3
|
|
4
4
|
require 'contrast/agent/reaction_processor'
|
5
|
+
require 'contrast/components/logger'
|
5
6
|
|
6
7
|
module Contrast
|
7
8
|
module Api
|
8
9
|
module Communication
|
9
10
|
# Handles processing deferred messages
|
10
11
|
class ResponseProcessor
|
11
|
-
include Contrast::Components::
|
12
|
-
access_component :agent, :analysis, :logging, :settings
|
12
|
+
include Contrast::Components::Logger::InstanceMethods
|
13
13
|
|
14
14
|
# @param response [Contrast::Api::Settings::AgentSettings]
|
15
15
|
def process response
|
@@ -24,10 +24,8 @@ module Contrast
|
|
24
24
|
|
25
25
|
Contrast::Logger::Log.instance.update(server_features&.log_file, server_features&.log_level)
|
26
26
|
update_features(server_features, app_settings)
|
27
|
-
logger.trace(
|
28
|
-
|
29
|
-
protect_on: PROTECT.enabled?,
|
30
|
-
assess_on: ASSESS.enabled?)
|
27
|
+
logger.trace('Agent settings updated in response to Service', protect_on: ::Contrast::PROTECT.enabled?,
|
28
|
+
assess_on: ::Contrast::ASSESS.enabled?)
|
31
29
|
end
|
32
30
|
|
33
31
|
private
|
@@ -42,7 +40,7 @@ module Contrast
|
|
42
40
|
|
43
41
|
logger.trace('Agent: Received updated server features')
|
44
42
|
|
45
|
-
SETTINGS.update_from_server_features(server_features)
|
43
|
+
::Contrast::SETTINGS.update_from_server_features(server_features)
|
46
44
|
|
47
45
|
server_features
|
48
46
|
end
|
@@ -57,7 +55,7 @@ module Contrast
|
|
57
55
|
|
58
56
|
logger.debug('Agent: Received updated application settings')
|
59
57
|
|
60
|
-
SETTINGS.update_from_application_settings(app_settings)
|
58
|
+
::Contrast::SETTINGS.update_from_application_settings(app_settings)
|
61
59
|
|
62
60
|
app_settings
|
63
61
|
end
|
@@ -66,16 +64,16 @@ module Contrast
|
|
66
64
|
# I don't think it should go into contrast_service because that only handles connection specific data
|
67
65
|
def update_features server_features, app_settings
|
68
66
|
return unless !!(server_features || app_settings)
|
69
|
-
return unless AGENT.enabled?
|
67
|
+
return unless ::Contrast::AGENT.enabled?
|
70
68
|
|
71
69
|
logger.trace_with_time('Rebuilding rule modes') do
|
72
|
-
SETTINGS.build_protect_rules if PROTECT.enabled?
|
73
|
-
AGENT.reset_ruleset
|
70
|
+
::Contrast::SETTINGS.build_protect_rules if ::Contrast::PROTECT.enabled?
|
71
|
+
::Contrast::AGENT.reset_ruleset
|
74
72
|
|
75
73
|
logger.info('Current rule settings:')
|
76
74
|
|
77
|
-
PROTECT.rules.each { |k, v| logger.info('Protect Rule mode set', rule: k, mode: v.mode) }
|
78
|
-
logger.info('Disabled Assess Rules', rules: ASSESS.disabled_rules)
|
75
|
+
::Contrast::PROTECT.rules.each { |k, v| logger.info('Protect Rule mode set', rule: k, mode: v.mode) }
|
76
|
+
logger.info('Disabled Assess Rules', rules: ::Contrast::ASSESS.disabled_rules)
|
79
77
|
end
|
80
78
|
end
|
81
79
|
end
|
@@ -1,13 +1,14 @@
|
|
1
1
|
# Copyright (c) 2021 Contrast Security, Inc. See https://www.contrastsecurity.com/enduser-terms-0317a for more details.
|
2
2
|
# frozen_string_literal: true
|
3
3
|
|
4
|
+
require 'contrast/components/logger'
|
5
|
+
|
4
6
|
module Contrast
|
5
7
|
module Api
|
6
8
|
module Communication
|
7
9
|
# Handles local service startup
|
8
10
|
module ServiceLifecycle
|
9
|
-
include Contrast::Components::
|
10
|
-
access_component :logging, :contrast_service
|
11
|
+
include Contrast::Components::Logger::InstanceMethods
|
11
12
|
|
12
13
|
def attempt_local_service_startup
|
13
14
|
zombie_check
|
@@ -21,18 +22,20 @@ module Contrast
|
|
21
22
|
is_service_started
|
22
23
|
end
|
23
24
|
|
24
|
-
# check if there's a zombie service that exists, and wait on it if so.
|
25
|
-
#
|
25
|
+
# check if there's a zombie service that exists, and wait on it if so. currently, this only happens when trying
|
26
|
+
# to initialize speedracer
|
26
27
|
def zombie_check
|
27
28
|
zombie_pid_list = Contrast::Utils::OS.zombie_pids
|
28
29
|
zombie_pid_list.each do |pid|
|
29
30
|
Process.wait(pid.to_i)
|
31
|
+
rescue Errno::ECHILD => _e
|
32
|
+
# Sometimes the zombie process dies between us finding it and killing it
|
30
33
|
end
|
31
34
|
end
|
32
35
|
|
33
36
|
def determine_startup_options
|
34
|
-
return { out: :out, err: :out } if CONTRAST_SERVICE.logger_path == 'STDOUT'
|
35
|
-
return { out: :err, err: :err } if CONTRAST_SERVICE.logger_path == 'STDERR'
|
37
|
+
return { out: :out, err: :out } if ::Contrast::CONTRAST_SERVICE.logger_path == 'STDOUT'
|
38
|
+
return { out: :err, err: :err } if ::Contrast::CONTRAST_SERVICE.logger_path == 'STDERR'
|
36
39
|
|
37
40
|
{ out: File::NULL, err: File::NULL }
|
38
41
|
end
|
@@ -6,7 +6,7 @@ require 'uri'
|
|
6
6
|
|
7
7
|
require 'contrast/api/communication/tcp_socket'
|
8
8
|
require 'contrast/api/communication/unix_socket'
|
9
|
-
require 'contrast/components/
|
9
|
+
require 'contrast/components/logger'
|
10
10
|
|
11
11
|
module Contrast
|
12
12
|
module Api
|
@@ -14,8 +14,7 @@ module Contrast
|
|
14
14
|
# SocketClient acts as a interface between the agent and the service. It instantiates a
|
15
15
|
# service proxy and tracks the state of that proxy.
|
16
16
|
class SocketClient
|
17
|
-
include Contrast::Components::
|
18
|
-
access_component :config, :contrast_service, :logging
|
17
|
+
include Contrast::Components::Logger::InstanceMethods
|
19
18
|
|
20
19
|
def initialize
|
21
20
|
@socket = init_connection
|
@@ -36,32 +35,34 @@ module Contrast
|
|
36
35
|
|
37
36
|
def init_connection
|
38
37
|
log_connection
|
39
|
-
if CONTRAST_SERVICE.use_tcp?
|
40
|
-
Contrast::Api::Communication::TcpSocket.new(
|
38
|
+
if ::Contrast::CONTRAST_SERVICE.use_tcp?
|
39
|
+
Contrast::Api::Communication::TcpSocket.new(
|
40
|
+
::Contrast::CONTRAST_SERVICE.host, ::Contrast::CONTRAST_SERVICE.port
|
41
|
+
)
|
41
42
|
else
|
42
|
-
Contrast::Api::Communication::UnixSocket.new(CONTRAST_SERVICE.socket_path)
|
43
|
+
Contrast::Api::Communication::UnixSocket.new(::Contrast::CONTRAST_SERVICE.socket_path)
|
43
44
|
end
|
44
45
|
end
|
45
46
|
|
46
47
|
def log_connection
|
47
48
|
# The socket is set,
|
48
|
-
if CONFIG.root.agent.service.socket
|
49
|
+
if ::Contrast::CONFIG.root.agent.service.socket
|
49
50
|
logger.info('Connecting to the Contrast Service using a UnixSocket socket',
|
50
|
-
socket: CONTRAST_SERVICE.socket_path)
|
51
|
+
socket: ::Contrast::CONTRAST_SERVICE.socket_path)
|
51
52
|
return
|
52
53
|
end
|
53
54
|
# The host & port are set,
|
54
|
-
if CONFIG.root.agent.service.host && CONFIG.root.agent.service.port
|
55
|
+
if ::Contrast::CONFIG.root.agent.service.host && ::Contrast::CONFIG.root.agent.service.port
|
55
56
|
logger.info('Connecting to the Contrast Service using a TCP socket',
|
56
|
-
host: CONTRAST_SERVICE.host,
|
57
|
-
port: CONTRAST_SERVICE.port)
|
57
|
+
host: ::Contrast::CONTRAST_SERVICE.host,
|
58
|
+
port: ::Contrast::CONTRAST_SERVICE.port)
|
58
59
|
return
|
59
60
|
end
|
60
61
|
|
61
62
|
# Or something is not set.
|
62
|
-
logger.warn(
|
63
|
-
|
64
|
-
|
63
|
+
logger.warn(
|
64
|
+
log_connection_error_msg, host: ::Contrast::CONTRAST_SERVICE.host, port: ::Contrast::CONTRAST_SERVICE.port
|
65
|
+
)
|
65
66
|
end
|
66
67
|
|
67
68
|
# If our connection isn't built properly, we need to warn the user. This builds out the context specific
|
@@ -69,11 +70,11 @@ module Contrast
|
|
69
70
|
#
|
70
71
|
# @return [String]
|
71
72
|
def log_connection_error_msg
|
72
|
-
if CONFIG.root.agent.service.host
|
73
|
+
if ::Contrast::CONFIG.root.agent.service.host
|
73
74
|
'Missing a required connection value to the Contrast Service. ' \
|
74
75
|
'`agent.service.port` is not set. ' \
|
75
76
|
'Falling back to default TCP socket port.'
|
76
|
-
elsif CONFIG.root.agent.service.port
|
77
|
+
elsif ::Contrast::CONFIG.root.agent.service.port
|
77
78
|
'Missing a required connection value to the Contrast Service. ' \
|
78
79
|
'`agent.service.host` is not set. ' \
|
79
80
|
'Falling back to default TCP socket host.'
|
@@ -87,26 +88,16 @@ module Contrast
|
|
87
88
|
def send_message msg
|
88
89
|
return unless msg
|
89
90
|
|
90
|
-
logger.debug('Sending message.',
|
91
|
-
msg_id: msg.__id__,
|
92
|
-
p_id: msg.pid,
|
93
|
-
msg_count: msg.message_count)
|
91
|
+
logger.debug('Sending message.', msg_id: msg.__id__, p_id: msg.pid, msg_count: msg.message_count)
|
94
92
|
to_service = Contrast::Api::Dtm::Message.encode(msg)
|
95
93
|
from_service = send_marshaled(to_service)
|
96
94
|
response = Contrast::Api::Settings::AgentSettings.decode(from_service)
|
97
|
-
logger.debug('Received response.',
|
98
|
-
|
99
|
-
p_id: msg.pid,
|
100
|
-
msg_count: msg.message_count,
|
101
|
-
response_id: response&.__id__)
|
95
|
+
logger.debug('Received response.', msg_id: msg.__id__, p_id: msg.pid, msg_count: msg.message_count,
|
96
|
+
response_id: response&.__id__)
|
102
97
|
response
|
103
98
|
rescue StandardError => e
|
104
|
-
logger.error('Sending failed for message.',
|
105
|
-
|
106
|
-
msg_id: msg.__id__,
|
107
|
-
p_id: msg.pid,
|
108
|
-
msg_count: msg.message_count,
|
109
|
-
response_id: response&.__id__)
|
99
|
+
logger.error('Sending failed for message.', e, msg_id: msg.__id__, p_id: msg.pid,
|
100
|
+
msg_count: msg.message_count, response_id: response&.__id__)
|
110
101
|
raise e # reraise to let Speedracer manage the connection
|
111
102
|
end
|
112
103
|
|