contrast-agent 3.12.2 → 3.13.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.dockerignore +0 -1
- data/.gitignore +1 -1
- data/.simplecov +1 -1
- data/Rakefile +31 -0
- data/ext/build_funchook.rb +0 -2
- 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_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 +24 -0
- data/ext/cs__common/cs__common.h +3 -0
- data/ext/cs__common/extconf.rb +0 -14
- data/ext/extconf_common.rb +0 -28
- data/lib/contrast.rb +3 -1
- data/lib/contrast/agent.rb +14 -2
- 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/policy_node.rb +4 -98
- data/lib/contrast/agent/assess/policy/propagation_method.rb +1 -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/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_method.rb +1 -9
- data/lib/contrast/agent/assess/policy/trigger_node.rb +16 -4
- 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/provider/hardcoded_value_rule.rb +2 -20
- data/lib/contrast/agent/assess/tag.rb +27 -12
- data/lib/contrast/agent/at_exit_hook.rb +3 -1
- data/lib/contrast/agent/exclusion_matcher.rb +2 -2
- data/lib/contrast/agent/inventory/policy/datastores.rb +0 -1
- data/lib/contrast/agent/middleware.rb +2 -14
- data/lib/contrast/agent/patching/policy/patch.rb +1 -1
- data/lib/contrast/agent/patching/policy/policy.rb +3 -3
- data/lib/contrast/agent/patching/policy/policy_node.rb +2 -2
- data/lib/contrast/agent/protect/policy/rule_applicator.rb +2 -2
- data/lib/contrast/agent/protect/rule/base.rb +19 -31
- data/lib/contrast/agent/protect/rule/base_service.rb +1 -1
- data/lib/contrast/agent/protect/rule/http_method_tampering.rb +2 -7
- data/lib/contrast/agent/protect/rule/xxe.rb +1 -0
- data/lib/contrast/agent/reaction_processor.rb +3 -3
- data/lib/contrast/agent/request.rb +92 -331
- data/lib/contrast/agent/request_context.rb +15 -15
- data/lib/contrast/agent/request_handler.rb +1 -1
- data/lib/contrast/agent/response.rb +2 -14
- data/lib/contrast/agent/scope.rb +1 -1
- data/lib/contrast/agent/service_heartbeat.rb +7 -9
- data/lib/contrast/agent/static_analysis.rb +1 -1
- 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} +9 -18
- 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/app_context.rb +0 -7
- data/lib/contrast/components/config.rb +4 -9
- data/lib/contrast/components/interface.rb +1 -1
- data/lib/contrast/components/settings.rb +0 -6
- data/lib/contrast/extension/assess.rb +0 -1
- data/lib/contrast/extension/assess/assess_extension.rb +1 -2
- data/lib/contrast/extension/assess/fiber.rb +1 -1
- data/lib/contrast/extension/assess/string.rb +1 -1
- data/lib/contrast/extension/inventory.rb +0 -1
- data/lib/contrast/framework/base_support.rb +0 -23
- data/lib/contrast/framework/manager.rb +0 -9
- data/lib/contrast/framework/rails/patch/action_controller_live_buffer.rb +1 -3
- data/lib/contrast/framework/rails/patch/assess_configuration.rb +3 -4
- data/lib/contrast/framework/rails/support.rb +3 -32
- data/lib/contrast/framework/sinatra/patch/base.rb +1 -1
- data/lib/contrast/framework/sinatra/support.rb +11 -22
- data/lib/contrast/funchook/funchook.rb +45 -0
- data/lib/contrast/logger/application.rb +1 -1
- data/lib/contrast/logger/format.rb +51 -0
- data/lib/contrast/logger/log.rb +8 -2
- data/lib/contrast/utils/assess/tracking_util.rb +45 -20
- data/lib/contrast/utils/hash_digest.rb +11 -2
- data/lib/contrast/utils/invalid_configuration_util.rb +1 -17
- data/lib/contrast/utils/inventory_util.rb +2 -7
- data/lib/contrast/utils/object_share.rb +0 -1
- 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/ruby-agent.gemspec +4 -4
- metadata +48 -72
- 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/socket_client.rb +0 -134
- data/lib/contrast/api/connection_status.rb +0 -49
- data/lib/contrast/api/socket.rb +0 -43
- data/lib/contrast/api/speedracer.rb +0 -188
- data/lib/contrast/api/tcp_socket.rb +0 -29
- data/lib/contrast/api/unix_socket.rb +0 -25
- data/lib/contrast/framework/sinatra/application_helper.rb +0 -51
- data/lib/contrast/framework/view_technologies_descriptor.rb +0 -21
- data/lib/contrast/internal_exception.rb +0 -8
- data/lib/contrast/utils/cache.rb +0 -58
- data/lib/contrast/utils/service_sender_util.rb +0 -167
- data/lib/contrast/utils/sinatra_helper.rb +0 -49
@@ -14,7 +14,7 @@ module Contrast
|
|
14
14
|
# in a standardized and normalized format which the Agent understands.
|
15
15
|
class RequestContext
|
16
16
|
include Contrast::Components::Interface
|
17
|
-
access_component :agent, :analysis, :logging, :
|
17
|
+
access_component :agent, :analysis, :logging, :scope
|
18
18
|
|
19
19
|
EMPTY_INPUT_ANALYSIS_PB = Contrast::Api::Settings::InputAnalysis.new
|
20
20
|
|
@@ -90,7 +90,6 @@ module Contrast
|
|
90
90
|
# For TS routes
|
91
91
|
@observed_route.signature = route.route
|
92
92
|
@observed_route.verb = route.verb
|
93
|
-
@observed_route.session_id = SETTINGS.session_id
|
94
93
|
@observed_route.url = route.url if route.url
|
95
94
|
end
|
96
95
|
|
@@ -113,7 +112,7 @@ module Contrast
|
|
113
112
|
return false unless PROTECT.enabled?
|
114
113
|
return false if @do_not_track
|
115
114
|
|
116
|
-
service_response = Contrast::
|
115
|
+
service_response = Contrast::Agent.messaging_queue.send_event_immediately(@activity.http_request)
|
117
116
|
return false unless service_response
|
118
117
|
|
119
118
|
handle_protect_state(service_response)
|
@@ -127,8 +126,8 @@ module Contrast
|
|
127
126
|
logger.trace('Analysis from Contrast Service was empty.')
|
128
127
|
false
|
129
128
|
end
|
130
|
-
rescue Contrast::SecurityException
|
131
|
-
raise
|
129
|
+
rescue Contrast::SecurityException => e
|
130
|
+
raise e
|
132
131
|
rescue StandardError => e
|
133
132
|
logger.warn('Unable to extract Contrast Service information from request', e)
|
134
133
|
false
|
@@ -138,21 +137,20 @@ module Contrast
|
|
138
137
|
# when the protect state indicates a security exception should be thrown. This method
|
139
138
|
# ensures that the attack reports are generated. Normally these should be generated on
|
140
139
|
# Speedracer for any attacks detected during prefilter.
|
140
|
+
#
|
141
|
+
# @param agent_settings [Contrast::Api::Settings::AgentSettings]
|
141
142
|
def handle_protect_state agent_settings
|
142
|
-
return unless agent_settings
|
143
|
-
return unless agent_settings.protect_state
|
144
|
-
|
145
|
-
@uuid = agent_settings.protect_state.uuid
|
146
|
-
@do_not_track = true unless agent_settings.protect_state.track_request
|
143
|
+
return unless agent_settings&.protect_state
|
147
144
|
|
148
|
-
|
145
|
+
state = agent_settings.protect_state
|
146
|
+
@uuid = state.uuid
|
147
|
+
@do_not_track = true unless state.track_request
|
148
|
+
return unless state.security_exception
|
149
149
|
|
150
150
|
# If Contrast Service has NOT handled the input analysis, handle them here
|
151
151
|
build_attack_results(agent_settings)
|
152
|
-
|
153
|
-
|
154
|
-
logger.warn('Contrast Service said to block this request')
|
155
|
-
raise Contrast::SecurityException.new(nil, (msg || 'Blocking suspicious behavior'))
|
152
|
+
logger.debug('Contrast Service said to block this request')
|
153
|
+
raise Contrast::SecurityException.new(nil, (state.security_message || 'Blocking suspicious behavior'))
|
156
154
|
end
|
157
155
|
|
158
156
|
# append anything we've learned to the request seen message
|
@@ -183,6 +181,8 @@ module Contrast
|
|
183
181
|
|
184
182
|
# Generate attack results directly from any evaluations on the
|
185
183
|
# agent settings object.
|
184
|
+
#
|
185
|
+
# @param agent_settings [Contrast::Api::Settings::AgentSettings]
|
186
186
|
def build_attack_results agent_settings
|
187
187
|
return unless agent_settings&.input_analysis&.results&.any?
|
188
188
|
|
@@ -20,7 +20,7 @@ module Contrast
|
|
20
20
|
def send_activity_messages
|
21
21
|
Contrast::Utils::GemfileReader.instance.generate_library_usage(context.activity)
|
22
22
|
[context.server_activity, context.activity, context.observed_route].each do |message|
|
23
|
-
Contrast::
|
23
|
+
Contrast::Agent.messaging_queue.send_event_eventually(message)
|
24
24
|
end
|
25
25
|
end
|
26
26
|
|
@@ -43,7 +43,7 @@ module Contrast
|
|
43
43
|
def dtm
|
44
44
|
context_response = Contrast::Api::Dtm::HttpResponse.new
|
45
45
|
context_response.response_code = response_code.to_i
|
46
|
-
headers
|
46
|
+
headers&.each_pair do |key, value|
|
47
47
|
k = Contrast::Utils::StringUtils.force_utf8(key)
|
48
48
|
v = Contrast::Utils::StringUtils.force_utf8(value)
|
49
49
|
context_response.response_headers[k] = v
|
@@ -75,23 +75,11 @@ module Contrast
|
|
75
75
|
end
|
76
76
|
end
|
77
77
|
|
78
|
-
# Header keys upcased and any underscores replaced with dashes
|
79
|
-
# We cannot memoize this, b/c response headers can change during the
|
80
|
-
# request lifecycle.
|
81
|
-
def normalized_headers
|
82
|
-
hash = {}
|
83
|
-
headers.each_pair do |header_name, header_value|
|
84
|
-
hash[Contrast::Utils::StringUtils.normalized_key(header_name)] = header_value
|
85
|
-
end
|
86
|
-
hash
|
87
|
-
end
|
88
|
-
|
89
|
-
CONTENT_TYPE_HEADER = 'CONTENT-TYPE'.cs__freeze
|
90
78
|
def content_type
|
91
79
|
return unless rack_response
|
92
80
|
|
93
81
|
if @is_array
|
94
|
-
|
82
|
+
headers[Rack::CONTENT_TYPE]
|
95
83
|
else
|
96
84
|
rack_response.content_type
|
97
85
|
end
|
data/lib/contrast/agent/scope.rb
CHANGED
@@ -107,7 +107,7 @@ module Contrast
|
|
107
107
|
def ensure_valid_scope! scope_sym
|
108
108
|
unless valid_scope? scope_sym # rubocop:disable Style/GuardClause
|
109
109
|
with_contrast_scope do
|
110
|
-
raise
|
110
|
+
raise NoMethodError, "Scope '#{ scope_sym.inspect }' is not registered as a scope."
|
111
111
|
end
|
112
112
|
end
|
113
113
|
end
|
@@ -2,38 +2,36 @@
|
|
2
2
|
# frozen_string_literal: true
|
3
3
|
|
4
4
|
cs__scoped_require 'contrast/components/interface'
|
5
|
+
cs__scoped_require 'contrast/agent/worker_thread'
|
5
6
|
|
6
7
|
module Contrast
|
7
8
|
module Agent
|
8
9
|
# The ServiceHeartbeat functions to keep the Contrast Service alive and
|
9
10
|
# ensure that it maintains this Agent's ApplicationContext.
|
10
|
-
class ServiceHeartbeat
|
11
|
+
class ServiceHeartbeat < WorkerThread
|
11
12
|
include Contrast::Components::Interface
|
12
13
|
access_component :logging
|
13
14
|
|
14
15
|
# Spec recommends 30 seconds, we're going with 15.
|
15
16
|
REFRESH_INTERVAL_SEC = 15
|
16
17
|
|
17
|
-
def
|
18
|
-
|
18
|
+
def start_thread!
|
19
|
+
return if running?
|
20
|
+
|
21
|
+
@_thread = Contrast::Agent::Thread.new do
|
19
22
|
logger.info('Starting heartbeat thread.')
|
20
23
|
loop do
|
21
24
|
begin
|
22
|
-
Contrast::
|
25
|
+
Contrast::Agent.messaging_queue.send_event_eventually(poll_message)
|
23
26
|
end
|
24
27
|
sleep REFRESH_INTERVAL_SEC
|
25
28
|
end
|
26
29
|
end
|
27
30
|
end
|
28
|
-
alias_method :start, :updater_thread
|
29
31
|
|
30
32
|
def poll_message
|
31
33
|
@_poll_message ||= Contrast::Api::Dtm::Poll.new
|
32
34
|
end
|
33
|
-
|
34
|
-
def stop
|
35
|
-
Thread.kill(@_updater_thread) if @_updater_thread&.alive?
|
36
|
-
end
|
37
35
|
end
|
38
36
|
end
|
39
37
|
end
|
@@ -33,7 +33,7 @@ module Contrast
|
|
33
33
|
app_update_msg = Contrast::Api::Dtm::ApplicationUpdate.build
|
34
34
|
|
35
35
|
Contrast::Utils::InventoryUtil.append_db_config(app_update_msg)
|
36
|
-
Contrast::
|
36
|
+
Contrast::Agent.messaging_queue.send_event_eventually(app_update_msg)
|
37
37
|
end
|
38
38
|
end
|
39
39
|
end
|
@@ -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
|
+
cs__scoped_require 'contrast/components/interface'
|
5
|
+
cs__scoped_require 'contrast/agent/service_heartbeat'
|
6
|
+
|
7
|
+
module Contrast
|
8
|
+
module Agent
|
9
|
+
# This class used to ensure that our worker threads are running in multi-process environments
|
10
|
+
class ThreadWatcher
|
11
|
+
include Contrast::Components::Interface
|
12
|
+
access_component :logging
|
13
|
+
|
14
|
+
attr_reader :heartbeat
|
15
|
+
|
16
|
+
def initialize
|
17
|
+
@pids = {}
|
18
|
+
@heartbeat = Contrast::Agent::ServiceHeartbeat.new
|
19
|
+
end
|
20
|
+
|
21
|
+
def startup!
|
22
|
+
unless heartbeat.running?
|
23
|
+
logger.debug('Attempting to start heartbeat thread')
|
24
|
+
heartbeat.start_thread!
|
25
|
+
end
|
26
|
+
heartbeat_result = heartbeat.running?
|
27
|
+
logger.debug('Heartbeat thread status', alive: heartbeat_result)
|
28
|
+
|
29
|
+
unless Contrast::Agent.messaging_queue.running?
|
30
|
+
logger.debug('Attempting to start messaging queue thread')
|
31
|
+
Contrast::Agent.messaging_queue.start_thread!
|
32
|
+
end
|
33
|
+
messaging_result = Contrast::Agent.messaging_queue.running?
|
34
|
+
logger.debug('Messaging thread status', alive: messaging_result)
|
35
|
+
|
36
|
+
logger.debug('ThreadWatcher started threads')
|
37
|
+
|
38
|
+
@pids[Process.pid] = messaging_result && heartbeat_result
|
39
|
+
end
|
40
|
+
|
41
|
+
def ensure_running?
|
42
|
+
return if @pids[Process.pid] == true
|
43
|
+
|
44
|
+
logger.debug('ThreadWatcher - threads not running')
|
45
|
+
startup!
|
46
|
+
end
|
47
|
+
end
|
48
|
+
end
|
49
|
+
end
|
@@ -0,0 +1,24 @@
|
|
1
|
+
# Copyright (c) 2020 Contrast Security, Inc. See https://www.contrastsecurity.com/enduser-terms-0317a for more details.
|
2
|
+
# frozen_string_literal: true
|
3
|
+
|
4
|
+
module Contrast
|
5
|
+
module Agent
|
6
|
+
# Base class for threads that do async processing
|
7
|
+
class WorkerThread
|
8
|
+
def initialize
|
9
|
+
@_thread = nil
|
10
|
+
end
|
11
|
+
|
12
|
+
def running?
|
13
|
+
!!@_thread&.alive?
|
14
|
+
end
|
15
|
+
|
16
|
+
def stop!
|
17
|
+
return unless running?
|
18
|
+
|
19
|
+
Thread.kill(@_thread)
|
20
|
+
@_thread = nil
|
21
|
+
end
|
22
|
+
end
|
23
|
+
end
|
24
|
+
end
|
data/lib/contrast/api.rb
CHANGED
@@ -10,9 +10,7 @@ module Contrast
|
|
10
10
|
end
|
11
11
|
end
|
12
12
|
|
13
|
-
cs__scoped_require 'contrast/api/
|
14
|
-
cs__scoped_require 'contrast/api/
|
13
|
+
cs__scoped_require 'contrast/api/dtm.pb'
|
14
|
+
cs__scoped_require 'contrast/api/settings.pb'
|
15
15
|
cs__scoped_require 'contrast/api/decorators'
|
16
|
-
cs__scoped_require 'contrast/api/
|
17
|
-
cs__scoped_require 'contrast/api/tcp_socket'
|
18
|
-
cs__scoped_require 'contrast/api/speedracer'
|
16
|
+
cs__scoped_require 'contrast/api/communication'
|
@@ -0,0 +1,20 @@
|
|
1
|
+
# Copyright (c) 2020 Contrast Security, Inc. See https://www.contrastsecurity.com/enduser-terms-0317a for more details.
|
2
|
+
# frozen_string_literal: true
|
3
|
+
|
4
|
+
module Contrast
|
5
|
+
module Api
|
6
|
+
# Used to contain all modules that handle communication with speedracer
|
7
|
+
module Communication
|
8
|
+
end
|
9
|
+
end
|
10
|
+
end
|
11
|
+
|
12
|
+
cs__scoped_require 'contrast/api/communication/service_lifecycle'
|
13
|
+
cs__scoped_require 'contrast/api/communication/connection_status'
|
14
|
+
cs__scoped_require 'contrast/api/communication/socket'
|
15
|
+
cs__scoped_require 'contrast/api/communication/tcp_socket'
|
16
|
+
cs__scoped_require 'contrast/api/communication/unix_socket'
|
17
|
+
cs__scoped_require 'contrast/api/communication/socket_client'
|
18
|
+
cs__scoped_require 'contrast/api/communication/messaging_queue'
|
19
|
+
cs__scoped_require 'contrast/api/communication/response_processor'
|
20
|
+
cs__scoped_require 'contrast/api/communication/speedracer'
|
@@ -0,0 +1,41 @@
|
|
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
|
+
module Communication
|
7
|
+
# Keeps track of the state of connections to the service.
|
8
|
+
class ConnectionStatus
|
9
|
+
def initialize
|
10
|
+
@last_success = nil
|
11
|
+
@last_failure = nil
|
12
|
+
@startup_messages_sent = false
|
13
|
+
end
|
14
|
+
|
15
|
+
# Whether we have sent startup message to the service. True after successfully
|
16
|
+
# sending startup messages to service and reset to false if we lose connection
|
17
|
+
# to the service.
|
18
|
+
def startup_messages_sent?
|
19
|
+
@startup_messages_sent
|
20
|
+
end
|
21
|
+
|
22
|
+
# The last message sent was successful
|
23
|
+
def connected?
|
24
|
+
@last_success && (@last_failure.nil? || @last_success > @last_failure)
|
25
|
+
end
|
26
|
+
|
27
|
+
# The current state of the service is active with a successful message sent
|
28
|
+
def success!
|
29
|
+
@startup_messages_sent = true
|
30
|
+
@last_success = Time.now.to_f
|
31
|
+
end
|
32
|
+
|
33
|
+
# The service may be in some sort of error state
|
34
|
+
def failure!
|
35
|
+
@startup_messages_sent = false
|
36
|
+
@last_failure = Time.now.to_f
|
37
|
+
end
|
38
|
+
end
|
39
|
+
end
|
40
|
+
end
|
41
|
+
end
|
@@ -0,0 +1,79 @@
|
|
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/agent/worker_thread'
|
6
|
+
|
7
|
+
module Contrast
|
8
|
+
module Api
|
9
|
+
module Communication
|
10
|
+
# Top level gateway to messaging with speedracer
|
11
|
+
class MessagingQueue < Contrast::Agent::WorkerThread
|
12
|
+
include Contrast::Components::Interface
|
13
|
+
access_component :analysis, :logging, :settings
|
14
|
+
|
15
|
+
attr_reader :queue, :speedracer
|
16
|
+
|
17
|
+
def initialize
|
18
|
+
@queue = Queue.new
|
19
|
+
@speedracer = Contrast::Api::Communication::Speedracer.new
|
20
|
+
super
|
21
|
+
end
|
22
|
+
|
23
|
+
# Use this to bypass the messaging queue and leave response processing to the caller
|
24
|
+
def send_event_immediately event
|
25
|
+
send_event(event, true)
|
26
|
+
end
|
27
|
+
|
28
|
+
# Use this to add a message to the queue and process the response internally
|
29
|
+
def send_event_eventually event
|
30
|
+
logger.debug('Enqueued event for sending', event_type: event.cs__class)
|
31
|
+
queue << event if event
|
32
|
+
end
|
33
|
+
|
34
|
+
def start_thread!
|
35
|
+
speedracer.ensure_startup!
|
36
|
+
return if running?
|
37
|
+
|
38
|
+
@_thread = Contrast::Agent::Thread.new do
|
39
|
+
loop do
|
40
|
+
event = queue.pop
|
41
|
+
|
42
|
+
begin
|
43
|
+
logger.debug('Dequeued event for sending', event_type: event.cs__class)
|
44
|
+
send_event(event)
|
45
|
+
rescue StandardError => e
|
46
|
+
logger.error('Could not send message to service from messaging queue thread.', e)
|
47
|
+
end
|
48
|
+
end
|
49
|
+
end
|
50
|
+
logger.debug('Started background sending thread.')
|
51
|
+
end
|
52
|
+
|
53
|
+
private
|
54
|
+
|
55
|
+
# return_response is used to determine if we want to return the response to the caller or process it internally
|
56
|
+
def send_event event, return_response = false
|
57
|
+
preprocess_event(event)
|
58
|
+
if return_response
|
59
|
+
speedracer.return_response(event)
|
60
|
+
else
|
61
|
+
speedracer.process_internally(event)
|
62
|
+
end
|
63
|
+
end
|
64
|
+
|
65
|
+
# For now this only handles appending assess tags
|
66
|
+
# eventually we could break out preprocessors for every event type
|
67
|
+
def preprocess_event event
|
68
|
+
return unless event.is_a?(Contrast::Api::Dtm::Activity)
|
69
|
+
|
70
|
+
# So set their tags
|
71
|
+
event.finding_tags = Contrast::Utils::StringUtils.force_utf8(ASSESS.tags)
|
72
|
+
|
73
|
+
# and see if they're even enabled
|
74
|
+
event.findings.delete_if { |finding| ASSESS.rule_disabled?(finding.rule_id) }
|
75
|
+
end
|
76
|
+
end
|
77
|
+
end
|
78
|
+
end
|
79
|
+
end
|
data/lib/contrast/{utils/service_response_util.rb → api/communication/response_processor.rb}
RENAMED
@@ -1,27 +1,18 @@
|
|
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/logger/log'
|
5
4
|
cs__scoped_require 'contrast/agent/reaction_processor'
|
6
|
-
cs__scoped_require 'contrast/components/interface'
|
7
|
-
cs__scoped_require 'contrast/utils/assess/sampling_util'
|
8
5
|
|
9
6
|
module Contrast
|
10
|
-
module
|
11
|
-
|
12
|
-
|
13
|
-
|
14
|
-
|
15
|
-
|
16
|
-
|
17
|
-
|
18
|
-
|
19
|
-
def update_received?
|
20
|
-
@_last_update.nil?
|
21
|
-
end
|
22
|
-
|
23
|
-
def process_response response
|
24
|
-
@_last_update = response&.sent_ms
|
7
|
+
module Api
|
8
|
+
module Communication
|
9
|
+
# Handles processing deferred messages
|
10
|
+
class ResponseProcessor
|
11
|
+
include Contrast::Components::Interface
|
12
|
+
access_component :agent, :analysis, :logging, :settings
|
13
|
+
|
14
|
+
def process response
|
15
|
+
logger.debug('Received a response', sent_ms: response&.sent_ms)
|
25
16
|
|
26
17
|
server_features = process_server_response(response)
|
27
18
|
app_settings = process_application_response(response)
|