contrast-agent 4.8.0 → 4.9.0
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/.simplecov +1 -0
- data/lib/contrast.rb +24 -14
- data/lib/contrast/agent/assess/contrast_event.rb +1 -4
- data/lib/contrast/agent/assess/finalizers/hash.rb +2 -4
- data/lib/contrast/agent/assess/policy/patcher.rb +6 -4
- data/lib/contrast/agent/assess/policy/policy.rb +1 -1
- data/lib/contrast/agent/assess/policy/policy_scanner.rb +3 -5
- data/lib/contrast/agent/assess/policy/preshift.rb +4 -4
- data/lib/contrast/agent/assess/policy/propagation_method.rb +4 -4
- data/lib/contrast/agent/assess/policy/propagator/database_write.rb +3 -6
- data/lib/contrast/agent/assess/policy/propagator/split.rb +9 -6
- data/lib/contrast/agent/assess/policy/propagator/substitution.rb +2 -3
- data/lib/contrast/agent/assess/policy/rewriter_patch.rb +7 -7
- data/lib/contrast/agent/assess/policy/source_method.rb +6 -6
- data/lib/contrast/agent/assess/policy/trigger/xpath.rb +0 -3
- data/lib/contrast/agent/assess/policy/trigger_method.rb +2 -3
- data/lib/contrast/agent/assess/policy/trigger_node.rb +1 -1
- data/lib/contrast/agent/assess/rule/provider/hardcoded_value_rule.rb +4 -4
- data/lib/contrast/agent/at_exit_hook.rb +3 -3
- data/lib/contrast/agent/class_reopener.rb +6 -5
- data/lib/contrast/agent/disable_reaction.rb +3 -4
- data/lib/contrast/agent/exclusion_matcher.rb +2 -3
- 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 +14 -13
- data/lib/contrast/agent/patching/policy/after_load_patch.rb +3 -3
- data/lib/contrast/agent/patching/policy/after_load_patcher.rb +3 -4
- data/lib/contrast/agent/patching/policy/patch.rb +8 -8
- data/lib/contrast/agent/patching/policy/patcher.rb +6 -6
- data/lib/contrast/agent/patching/policy/policy.rb +2 -4
- data/lib/contrast/agent/patching/policy/policy_node.rb +2 -3
- data/lib/contrast/agent/protect/policy/policy.rb +1 -1
- data/lib/contrast/agent/protect/policy/rule_applicator.rb +3 -5
- data/lib/contrast/agent/protect/rule/base.rb +10 -10
- data/lib/contrast/agent/protect/rule/cmd_injection.rb +4 -5
- data/lib/contrast/agent/protect/rule/path_traversal.rb +1 -5
- data/lib/contrast/agent/reaction_processor.rb +2 -3
- data/lib/contrast/agent/request.rb +4 -3
- data/lib/contrast/agent/request_context.rb +9 -9
- data/lib/contrast/agent/request_handler.rb +5 -3
- data/lib/contrast/agent/response.rb +2 -3
- data/lib/contrast/agent/rewriter.rb +4 -3
- data/lib/contrast/agent/rule_set.rb +5 -4
- data/lib/contrast/agent/service_heartbeat.rb +2 -3
- 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 +4 -4
- 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 -11
- data/lib/contrast/api/communication/service_lifecycle.rb +5 -4
- data/lib/contrast/api/communication/socket_client.rb +18 -14
- data/lib/contrast/api/communication/speedracer.rb +5 -6
- 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 +8 -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/message.rb +7 -7
- data/lib/contrast/api/decorators/trace_event_object.rb +2 -3
- data/lib/contrast/components/agent.rb +10 -15
- data/lib/contrast/components/app_context.rb +7 -11
- data/lib/contrast/components/assess.rb +16 -16
- data/lib/contrast/components/base.rb +40 -0
- data/lib/contrast/components/config.rb +0 -2
- data/lib/contrast/components/contrast_service.rb +6 -11
- 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 +5 -5
- data/lib/contrast/components/scope.rb +0 -4
- data/lib/contrast/components/settings.rb +1 -5
- data/lib/contrast/configuration.rb +3 -4
- data/lib/contrast/extension/assess/array.rb +2 -4
- data/lib/contrast/extension/assess/eval_trigger.rb +2 -3
- data/lib/contrast/extension/assess/fiber.rb +6 -5
- data/lib/contrast/extension/assess/hash.rb +3 -3
- data/lib/contrast/extension/assess/kernel.rb +2 -4
- data/lib/contrast/extension/assess/marshal.rb +4 -4
- data/lib/contrast/extension/assess/regexp.rb +5 -4
- data/lib/contrast/extension/assess/string.rb +6 -6
- data/lib/contrast/extension/kernel.rb +2 -4
- data/lib/contrast/extension/protect/kernel.rb +0 -5
- data/lib/contrast/framework/manager.rb +2 -3
- data/lib/contrast/framework/rack/patch/session_cookie.rb +6 -6
- data/lib/contrast/framework/rails/patch/assess_configuration.rb +5 -7
- data/lib/contrast/framework/rails/patch/support.rb +40 -36
- data/lib/contrast/framework/rails/railtie.rb +8 -6
- data/lib/contrast/framework/rails/rewrite/active_record_named.rb +3 -4
- data/lib/contrast/funchook/funchook.rb +4 -3
- data/lib/contrast/logger/application.rb +1 -6
- data/lib/contrast/logger/log.rb +22 -6
- data/lib/contrast/logger/request.rb +0 -4
- data/lib/contrast/tasks/service.rb +1 -6
- data/lib/contrast/utils/assess/sampling_util.rb +2 -3
- data/lib/contrast/utils/assess/tracking_util.rb +2 -4
- 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 +2 -4
- data/lib/contrast/utils/job_servers_running.rb +4 -3
- data/lib/contrast/utils/os.rb +2 -3
- data/lib/contrast/utils/string_utils.rb +2 -3
- data/lib/contrast/utils/tag_util.rb +25 -19
- data/ruby-agent.gemspec +4 -2
- data/service_executables/VERSION +1 -1
- data/service_executables/linux/contrast-service +0 -0
- data/service_executables/mac/contrast-service +0 -0
- metadata +28 -15
- data/lib/contrast/components/interface.rb +0 -196
- data/lib/contrast/delegators/input_analysis.rb +0 -12
@@ -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
|
@@ -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!
|
@@ -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,8 +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('Agent settings updated in response to Service', protect_on: PROTECT.enabled?,
|
28
|
-
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?)
|
29
29
|
end
|
30
30
|
|
31
31
|
private
|
@@ -40,7 +40,7 @@ module Contrast
|
|
40
40
|
|
41
41
|
logger.trace('Agent: Received updated server features')
|
42
42
|
|
43
|
-
SETTINGS.update_from_server_features(server_features)
|
43
|
+
::Contrast::SETTINGS.update_from_server_features(server_features)
|
44
44
|
|
45
45
|
server_features
|
46
46
|
end
|
@@ -55,7 +55,7 @@ module Contrast
|
|
55
55
|
|
56
56
|
logger.debug('Agent: Received updated application settings')
|
57
57
|
|
58
|
-
SETTINGS.update_from_application_settings(app_settings)
|
58
|
+
::Contrast::SETTINGS.update_from_application_settings(app_settings)
|
59
59
|
|
60
60
|
app_settings
|
61
61
|
end
|
@@ -64,16 +64,16 @@ module Contrast
|
|
64
64
|
# I don't think it should go into contrast_service because that only handles connection specific data
|
65
65
|
def update_features server_features, app_settings
|
66
66
|
return unless !!(server_features || app_settings)
|
67
|
-
return unless AGENT.enabled?
|
67
|
+
return unless ::Contrast::AGENT.enabled?
|
68
68
|
|
69
69
|
logger.trace_with_time('Rebuilding rule modes') do
|
70
|
-
SETTINGS.build_protect_rules if PROTECT.enabled?
|
71
|
-
AGENT.reset_ruleset
|
70
|
+
::Contrast::SETTINGS.build_protect_rules if ::Contrast::PROTECT.enabled?
|
71
|
+
::Contrast::AGENT.reset_ruleset
|
72
72
|
|
73
73
|
logger.info('Current rule settings:')
|
74
74
|
|
75
|
-
PROTECT.rules.each { |k, v| logger.info('Protect Rule mode set', rule: k, mode: v.mode) }
|
76
|
-
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)
|
77
77
|
end
|
78
78
|
end
|
79
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
|
@@ -33,8 +34,8 @@ module Contrast
|
|
33
34
|
end
|
34
35
|
|
35
36
|
def determine_startup_options
|
36
|
-
return { out: :out, err: :out } if CONTRAST_SERVICE.logger_path == 'STDOUT'
|
37
|
-
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'
|
38
39
|
|
39
40
|
{ out: File::NULL, err: File::NULL }
|
40
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,29 +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
|
-
logger.info('Connecting to the Contrast Service using a TCP socket',
|
56
|
-
|
55
|
+
if ::Contrast::CONFIG.root.agent.service.host && ::Contrast::CONFIG.root.agent.service.port
|
56
|
+
logger.info('Connecting to the Contrast Service using a TCP socket',
|
57
|
+
host: ::Contrast::CONTRAST_SERVICE.host,
|
58
|
+
port: ::Contrast::CONTRAST_SERVICE.port)
|
57
59
|
return
|
58
60
|
end
|
59
61
|
|
60
62
|
# Or something is not set.
|
61
|
-
logger.warn(
|
63
|
+
logger.warn(
|
64
|
+
log_connection_error_msg, host: ::Contrast::CONTRAST_SERVICE.host, port: ::Contrast::CONTRAST_SERVICE.port
|
65
|
+
)
|
62
66
|
end
|
63
67
|
|
64
68
|
# If our connection isn't built properly, we need to warn the user. This builds out the context specific
|
@@ -66,11 +70,11 @@ module Contrast
|
|
66
70
|
#
|
67
71
|
# @return [String]
|
68
72
|
def log_connection_error_msg
|
69
|
-
if CONFIG.root.agent.service.host
|
73
|
+
if ::Contrast::CONFIG.root.agent.service.host
|
70
74
|
'Missing a required connection value to the Contrast Service. ' \
|
71
75
|
'`agent.service.port` is not set. ' \
|
72
76
|
'Falling back to default TCP socket port.'
|
73
|
-
elsif CONFIG.root.agent.service.port
|
77
|
+
elsif ::Contrast::CONFIG.root.agent.service.port
|
74
78
|
'Missing a required connection value to the Contrast Service. ' \
|
75
79
|
'`agent.service.host` is not set. ' \
|
76
80
|
'Falling back to default TCP socket host.'
|
@@ -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
|
|
6
6
|
module Contrast
|
7
7
|
module Api
|
@@ -9,8 +9,7 @@ module Contrast
|
|
9
9
|
# Wraps all connection data to speedracer
|
10
10
|
class Speedracer
|
11
11
|
include Contrast::Api::Communication::ServiceLifecycle
|
12
|
-
include Contrast::Components::
|
13
|
-
access_component :contrast_service, :logging, :app_context
|
12
|
+
include Contrast::Components::Logger::InstanceMethods
|
14
13
|
|
15
14
|
attr_reader :status, :response_processor, :socket_client, :ensure_running
|
16
15
|
|
@@ -25,7 +24,7 @@ module Contrast
|
|
25
24
|
return if status.connected?
|
26
25
|
|
27
26
|
ensure_running.synchronize do
|
28
|
-
if CONTRAST_SERVICE.use_bundled_service?
|
27
|
+
if ::Contrast::CONTRAST_SERVICE.use_bundled_service?
|
29
28
|
logger.info('Attempting to start local service')
|
30
29
|
unless attempt_local_service_startup
|
31
30
|
logger.error('Failed to start local service')
|
@@ -70,7 +69,7 @@ module Contrast
|
|
70
69
|
end
|
71
70
|
|
72
71
|
def send_initialization_messages
|
73
|
-
agent_startup_msg = APP_CONTEXT.build_agent_startup_message
|
72
|
+
agent_startup_msg = ::Contrast::APP_CONTEXT.build_agent_startup_message
|
74
73
|
|
75
74
|
logger.debug('Preparing to send startup messages')
|
76
75
|
# 1 initial attempt, + 3 potential retries.
|
@@ -80,7 +79,7 @@ module Contrast
|
|
80
79
|
next unless (agent_response = socket_client.send_one(agent_startup_msg))
|
81
80
|
|
82
81
|
# Connection was successful; send app create with the resolved features.
|
83
|
-
app_startup_msg = APP_CONTEXT.build_app_startup_message
|
82
|
+
app_startup_msg = ::Contrast::APP_CONTEXT.build_app_startup_message
|
84
83
|
log_send_event(app_startup_msg)
|
85
84
|
app_response = socket_client.send_one(app_startup_msg)
|
86
85
|
|
@@ -2,7 +2,7 @@
|
|
2
2
|
# frozen_string_literal: true
|
3
3
|
|
4
4
|
require 'contrast/api/dtm.pb'
|
5
|
-
require 'contrast/components/
|
5
|
+
require 'contrast/components/logger'
|
6
6
|
require 'contrast/utils/string_utils'
|
7
7
|
require 'contrast/utils/timer'
|
8
8
|
|
@@ -19,8 +19,7 @@ module Contrast
|
|
19
19
|
|
20
20
|
# Used to add class methods to the ApplicationUpdate class on inclusion of the decorator
|
21
21
|
module ClassMethods
|
22
|
-
include Contrast::Components::
|
23
|
-
access_component :logging
|
22
|
+
include Contrast::Components::Logger::InstanceMethods
|
24
23
|
# receiver is memoized because it is the address/host/port of the server, once we
|
25
24
|
# resolve this for the first time, it shouldn't change
|
26
25
|
#
|
@@ -2,8 +2,8 @@
|
|
2
2
|
# frozen_string_literal: true
|
3
3
|
|
4
4
|
require 'contrast/api/dtm.pb'
|
5
|
-
require 'contrast/components/interface'
|
6
5
|
require 'contrast/utils/string_utils'
|
6
|
+
require 'contrast/components/base'
|
7
7
|
|
8
8
|
module Contrast
|
9
9
|
module Api
|
@@ -11,8 +11,6 @@ module Contrast
|
|
11
11
|
# Used to decorate the AgentStartup protobuf model to handle reporting Agent process start
|
12
12
|
module AgentStartup
|
13
13
|
include Contrast::Components::ComponentBase
|
14
|
-
include Contrast::Components::Interface
|
15
|
-
access_component :analysis, :config
|
16
14
|
|
17
15
|
def self.included klass
|
18
16
|
klass.extend(ClassMethods)
|
@@ -33,7 +31,7 @@ module Contrast
|
|
33
31
|
msg.server_path = Contrast::Utils::StringUtils.protobuf_format path
|
34
32
|
msg.server_type = Contrast::Utils::StringUtils.protobuf_format type
|
35
33
|
config!(msg)
|
36
|
-
msg.finding_tags = Contrast::Utils::StringUtils.protobuf_format ASSESS.tags
|
34
|
+
msg.finding_tags = Contrast::Utils::StringUtils.protobuf_format ::Contrast::ASSESS.tags
|
37
35
|
msg
|
38
36
|
end
|
39
37
|
|
@@ -43,11 +41,11 @@ module Contrast
|
|
43
41
|
#
|
44
42
|
# @param msg [Contrast::Api::Dtm::AgentStartup]
|
45
43
|
def config! msg
|
46
|
-
msg.version = Contrast::Utils::StringUtils.protobuf_format CONFIG.root.server.version
|
47
|
-
msg.environment = Contrast::Utils::StringUtils.protobuf_format CONFIG.root.server.environment
|
48
|
-
msg.server_tags = Contrast::Utils::StringUtils.protobuf_format CONFIG.root.server.tags
|
49
|
-
msg.application_tags = Contrast::Utils::StringUtils.protobuf_format CONFIG.root.application.tags
|
50
|
-
msg.library_tags = Contrast::Utils::StringUtils.protobuf_format CONFIG.root.inventory.tags
|
44
|
+
msg.version = Contrast::Utils::StringUtils.protobuf_format ::Contrast::CONFIG.root.server.version
|
45
|
+
msg.environment = Contrast::Utils::StringUtils.protobuf_format ::Contrast::CONFIG.root.server.environment
|
46
|
+
msg.server_tags = Contrast::Utils::StringUtils.protobuf_format ::Contrast::CONFIG.root.server.tags
|
47
|
+
msg.application_tags = Contrast::Utils::StringUtils.protobuf_format ::Contrast::CONFIG.root.application.tags
|
48
|
+
msg.library_tags = Contrast::Utils::StringUtils.protobuf_format ::Contrast::CONFIG.root.inventory.tags
|
51
49
|
end
|
52
50
|
end
|
53
51
|
end
|
@@ -3,7 +3,7 @@
|
|
3
3
|
|
4
4
|
require 'contrast/api/dtm.pb'
|
5
5
|
require 'contrast/api/decorators/instrumentation_mode'
|
6
|
-
require 'contrast/components/
|
6
|
+
require 'contrast/components/base'
|
7
7
|
require 'contrast/utils/string_utils'
|
8
8
|
|
9
9
|
module Contrast
|
@@ -12,8 +12,6 @@ module Contrast
|
|
12
12
|
# Used to decorate the ApplicationCreate protobuf model to handle reporting Agent process start
|
13
13
|
module ApplicationStartup
|
14
14
|
include Contrast::Components::ComponentBase
|
15
|
-
include Contrast::Components::Interface
|
16
|
-
access_component :config
|
17
15
|
|
18
16
|
def self.included klass
|
19
17
|
klass.extend(ClassMethods)
|
@@ -26,11 +24,11 @@ module Contrast
|
|
26
24
|
# @return [Contrast::Api::Dtm::ApplicationCreate]
|
27
25
|
def build
|
28
26
|
msg = new
|
29
|
-
msg.app_version
|
30
|
-
msg.code
|
31
|
-
msg.group
|
32
|
-
msg.metadata
|
33
|
-
msg.mode
|
27
|
+
msg.app_version = Contrast::Utils::StringUtils.protobuf_format ::Contrast::CONFIG.root.application.version.to_s
|
28
|
+
msg.code = Contrast::Utils::StringUtils.protobuf_format ::Contrast::CONFIG.root.application.code
|
29
|
+
msg.group = Contrast::Utils::StringUtils.protobuf_format ::Contrast::CONFIG.root.application.group
|
30
|
+
msg.metadata = Contrast::Utils::StringUtils.protobuf_format ::Contrast::CONFIG.root.application.metadata
|
31
|
+
msg.mode = Contrast::Api::Dtm::InstrumentationMode.build
|
34
32
|
session!(msg)
|
35
33
|
msg
|
36
34
|
end
|
@@ -42,10 +40,10 @@ module Contrast
|
|
42
40
|
# @param msg [Contrast::Api::Dtm::ApplicationCreate]
|
43
41
|
def session! msg
|
44
42
|
msg.session_id = Contrast::Utils::StringUtils.protobuf_format(
|
45
|
-
CONFIG.root.application.session_id,
|
43
|
+
::Contrast::CONFIG.root.application.session_id,
|
46
44
|
truncate: false)
|
47
45
|
msg.session_metadata = Contrast::Utils::StringUtils.protobuf_format(
|
48
|
-
CONFIG.root.application.session_metadata,
|
46
|
+
::Contrast::CONFIG.root.application.session_metadata,
|
49
47
|
truncate: false)
|
50
48
|
end
|
51
49
|
end
|