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
@@ -1,49 +0,0 @@
|
|
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
|
-
# Keeps track of the state of connections to the service.
|
7
|
-
class ConnectionStatus
|
8
|
-
def initialize
|
9
|
-
@last_success = nil
|
10
|
-
@last_failure = nil
|
11
|
-
@startup_messages_sent = false
|
12
|
-
end
|
13
|
-
|
14
|
-
# Whether we have sent startup message to the service. True after successfully
|
15
|
-
# sending startup messages to service and reset to false if we lose connection
|
16
|
-
# to the service.
|
17
|
-
def startup_messages_sent?
|
18
|
-
@startup_messages_sent
|
19
|
-
end
|
20
|
-
|
21
|
-
# A message was successfully sent to the service at some point
|
22
|
-
def was_connected?
|
23
|
-
@last_success
|
24
|
-
end
|
25
|
-
|
26
|
-
# The last message sent was successful
|
27
|
-
def connected?
|
28
|
-
@last_success && (@last_failure.nil? || @last_success > @last_failure)
|
29
|
-
end
|
30
|
-
|
31
|
-
# The last message sent was unsuccessful
|
32
|
-
def failed?
|
33
|
-
@last_failure && (@last_success.nil? || @last_failure > @last_success)
|
34
|
-
end
|
35
|
-
|
36
|
-
# The current state of the service is active with a successful message sent
|
37
|
-
def success!
|
38
|
-
@startup_messages_sent = true
|
39
|
-
@last_success = Time.now.to_f
|
40
|
-
end
|
41
|
-
|
42
|
-
# The service may be in some sort of error state
|
43
|
-
def failure!
|
44
|
-
@startup_messages_sent = false
|
45
|
-
@last_failure = Time.now.to_f
|
46
|
-
end
|
47
|
-
end
|
48
|
-
end
|
49
|
-
end
|
data/lib/contrast/api/socket.rb
DELETED
@@ -1,43 +0,0 @@
|
|
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
|
-
# Behavior common to all sockets used
|
7
|
-
# to communicate with the Contrast Service.
|
8
|
-
module Socket
|
9
|
-
SOCKET_MONITOR = Monitor.new
|
10
|
-
|
11
|
-
# Send a message across the socket and read back the response.
|
12
|
-
# @param marshaled [String] some marshaled form of data to be sent across
|
13
|
-
# the socket. Typically an encoded form of Contrast::Api::Dtm::Message.
|
14
|
-
# @return [String] some marshalled form of data returned by the socket.
|
15
|
-
# Typically an encoded form of Contrast::Api::Settings::AgentSettings.
|
16
|
-
def send_marshaled marshaled
|
17
|
-
SOCKET_MONITOR.synchronize do
|
18
|
-
socket = new_socket
|
19
|
-
|
20
|
-
# write message length
|
21
|
-
len = marshaled.length
|
22
|
-
socket.write([len].pack(Contrast::Api::ENCODING_STRING))
|
23
|
-
|
24
|
-
# write the entire message
|
25
|
-
socket.write(marshaled)
|
26
|
-
socket.close_write
|
27
|
-
|
28
|
-
# read the response length
|
29
|
-
len = socket.read(4).unpack1(Contrast::Api::ENCODING_STRING)
|
30
|
-
|
31
|
-
# read expected response to end
|
32
|
-
socket.read(len)
|
33
|
-
end
|
34
|
-
end
|
35
|
-
|
36
|
-
# Override this method to return a socket.
|
37
|
-
# Should be interface compatible with TCPSocket, UNIXSocket, etc.
|
38
|
-
def new_socket
|
39
|
-
raise NotImplementedError, 'This is abstract, override it.'
|
40
|
-
end
|
41
|
-
end
|
42
|
-
end
|
43
|
-
end
|
@@ -1,188 +0,0 @@
|
|
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/object_share'
|
5
|
-
cs__scoped_require 'contrast/utils/os'
|
6
|
-
cs__scoped_require 'contrast/components/interface'
|
7
|
-
|
8
|
-
module Contrast
|
9
|
-
module Api
|
10
|
-
# This class acts as the interface for the communication between the Agent
|
11
|
-
# and the Service (SpeedRacer) as well as functions as a way for the Agent
|
12
|
-
# to manage the bundled Service.
|
13
|
-
class Speedracer
|
14
|
-
include Contrast::Components::Interface
|
15
|
-
access_component :app_context, :contrast_service, :logging
|
16
|
-
|
17
|
-
attr_reader :client_number,
|
18
|
-
:host,
|
19
|
-
:port,
|
20
|
-
:socket,
|
21
|
-
:connection
|
22
|
-
|
23
|
-
@instance_count = 0
|
24
|
-
@instance_mutex = Mutex.new
|
25
|
-
|
26
|
-
def self.next_client_number
|
27
|
-
@instance_mutex.synchronize do
|
28
|
-
@instance_count += 1
|
29
|
-
# Rollover things
|
30
|
-
rescue StandardError
|
31
|
-
@instance_count = 1
|
32
|
-
end
|
33
|
-
end
|
34
|
-
|
35
|
-
def self.read_only_instance_count
|
36
|
-
@instance_count.dup
|
37
|
-
end
|
38
|
-
|
39
|
-
def initialize connection
|
40
|
-
@client_number = Contrast::Api::Speedracer.next_client_number
|
41
|
-
@messages_total = 0
|
42
|
-
|
43
|
-
@pid = Process.pid.to_i
|
44
|
-
@ppid = Process.ppid.to_i
|
45
|
-
@connection = connection
|
46
|
-
end
|
47
|
-
|
48
|
-
# Allow for the start of a Service, but block so that we only attempt to
|
49
|
-
# start the service one try at a time in the case multiple threads are
|
50
|
-
# trying to send messages.
|
51
|
-
def start_service
|
52
|
-
zombie_check
|
53
|
-
service_starter_thread.join(5)
|
54
|
-
is_service_started = Contrast::Utils::OS.running?
|
55
|
-
logger.error('The bundled service could not be started. The agent will not function properly.') unless is_service_started
|
56
|
-
is_service_started
|
57
|
-
end
|
58
|
-
|
59
|
-
# Wrap the given DTM in a Contrast::Api::Dtm::Message and send it to the
|
60
|
-
# Service for processing
|
61
|
-
#
|
62
|
-
# @param event [Contrast::Api::Dtm] One of the DTMs valid for the event field of
|
63
|
-
# Contrast::Api::Dtm::Message
|
64
|
-
def send_one event
|
65
|
-
msg = build_message(event)
|
66
|
-
send_message(msg)
|
67
|
-
end
|
68
|
-
|
69
|
-
private
|
70
|
-
|
71
|
-
# check if there's a zombie service that exists, and wait on it if so.
|
72
|
-
# currently, this only happens when trying to initialize speedracer
|
73
|
-
def zombie_check
|
74
|
-
zombie_pid_list = Contrast::Utils::OS.zombie_pids
|
75
|
-
zombie_pid_list.each do |pid|
|
76
|
-
Process.wait(pid.to_i)
|
77
|
-
end
|
78
|
-
end
|
79
|
-
|
80
|
-
def determine_startup_options
|
81
|
-
return { out: :out, err: :err } if CONTRAST_SERVICE.logger_path == 'STDOUT'
|
82
|
-
|
83
|
-
{ out: File::NULL, err: File::NULL }
|
84
|
-
end
|
85
|
-
|
86
|
-
# This is a separate method so we can overwrite it globally in specs
|
87
|
-
def spawn_service
|
88
|
-
options = determine_startup_options
|
89
|
-
spawn 'contrast_service', options
|
90
|
-
end
|
91
|
-
|
92
|
-
def service_starter_thread
|
93
|
-
Contrast::Agent::Thread.new do
|
94
|
-
# Always check to see if it already started
|
95
|
-
unless Contrast::Utils::OS.running?
|
96
|
-
# Spawn the service process
|
97
|
-
spawn_service
|
98
|
-
# Block until service is running
|
99
|
-
sleep(0.1) until Contrast::Utils::OS.running?
|
100
|
-
end
|
101
|
-
end
|
102
|
-
end
|
103
|
-
|
104
|
-
# Wrap the given event in a Contrast::Api::Dtm::Message
|
105
|
-
#
|
106
|
-
# @param event [Contrast::Api::Dtm] One of the DTMs valid for the event field of
|
107
|
-
# Contrast::Api::Dtm::Message
|
108
|
-
# @return Contrast::Api::Dtm::Message
|
109
|
-
def build_message event
|
110
|
-
message = base_message
|
111
|
-
case event
|
112
|
-
when Contrast::Api::Dtm::ServerActivity
|
113
|
-
message.server_activity = event
|
114
|
-
when Contrast::Api::Dtm::AgentStartup
|
115
|
-
message.agent_startup = event
|
116
|
-
when Contrast::Api::Dtm::ApplicationCreate
|
117
|
-
message.application_create = event
|
118
|
-
when Contrast::Api::Dtm::ApplicationUpdate
|
119
|
-
message.application_update = event
|
120
|
-
when Contrast::Api::Dtm::Activity
|
121
|
-
message.activity = event
|
122
|
-
when Contrast::Api::Dtm::HttpRequest
|
123
|
-
message.prefilter = event
|
124
|
-
when Contrast::Api::Dtm::HttpResponse
|
125
|
-
message.postfilter = event
|
126
|
-
when Contrast::Api::Dtm::Poll
|
127
|
-
message.poll = event
|
128
|
-
when Contrast::Api::Dtm::ObservedRoute
|
129
|
-
message.observed_route = event
|
130
|
-
else
|
131
|
-
logger.error('Unknown event type received. Unsure how to send.', event_type: event.cs__class.name)
|
132
|
-
return
|
133
|
-
end
|
134
|
-
logger.debug('Wrapping event in message',
|
135
|
-
msg_id: message.__id__,
|
136
|
-
p_id: message.pid,
|
137
|
-
msg_count: message.message_count,
|
138
|
-
event_id: event.__id__,
|
139
|
-
event_type: event.cs__class.name)
|
140
|
-
message
|
141
|
-
end
|
142
|
-
|
143
|
-
def base_message
|
144
|
-
msg = Contrast::Api::Dtm::Message.new
|
145
|
-
msg.app_name = APP_CONTEXT.name
|
146
|
-
msg.app_path = APP_CONTEXT.path
|
147
|
-
msg.app_language = Contrast::Utils::ObjectShare::RUBY
|
148
|
-
msg.client_id = APP_CONTEXT.client_id
|
149
|
-
msg.client_number = client_number
|
150
|
-
msg.client_total = Contrast::Api::Speedracer.read_only_instance_count
|
151
|
-
msg.message_count = (@messages_total += 1)
|
152
|
-
msg.pid = APP_CONTEXT.pid
|
153
|
-
msg.ppid = APP_CONTEXT.ppid
|
154
|
-
msg
|
155
|
-
end
|
156
|
-
|
157
|
-
def send_message msg
|
158
|
-
return unless msg
|
159
|
-
|
160
|
-
logger.debug('Sending message.',
|
161
|
-
msg_id: msg.__id__,
|
162
|
-
p_id: msg.pid,
|
163
|
-
msg_count: msg.message_count)
|
164
|
-
to_service = Contrast::Api::Dtm::Message.encode(msg)
|
165
|
-
from_service = send_marshaled(to_service)
|
166
|
-
response = Contrast::Api::Settings::AgentSettings.decode(from_service)
|
167
|
-
logger.debug('Received response.',
|
168
|
-
msg_id: msg.__id__,
|
169
|
-
p_id: msg.pid,
|
170
|
-
msg_count: msg.message_count,
|
171
|
-
response_id: response&.__id__)
|
172
|
-
response
|
173
|
-
rescue StandardError => e
|
174
|
-
logger.error('Sending failed for message.',
|
175
|
-
e,
|
176
|
-
msg_id: msg.__id__,
|
177
|
-
p_id: msg.pid,
|
178
|
-
msg_count: msg.message_count,
|
179
|
-
response_id: response&.__id__)
|
180
|
-
raise e # reraise to let SocketClient manage the connection
|
181
|
-
end
|
182
|
-
|
183
|
-
def send_marshaled marshaled
|
184
|
-
connection.send_marshaled(marshaled)
|
185
|
-
end
|
186
|
-
end
|
187
|
-
end
|
188
|
-
end
|
@@ -1,29 +0,0 @@
|
|
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/api/socket'
|
5
|
-
|
6
|
-
module Contrast
|
7
|
-
module Api
|
8
|
-
# This class allows us to create a TCP Socket to communicate to the Service
|
9
|
-
# (Speed Racer). Either it or the Unix Socket will be used, as determined
|
10
|
-
# by the configuration options set for Service communication.
|
11
|
-
class TcpSocket
|
12
|
-
include Contrast::Api::Socket
|
13
|
-
|
14
|
-
attr_reader :host, :port
|
15
|
-
|
16
|
-
# Create the socket
|
17
|
-
# @param host [String] socket target hostname or IP address
|
18
|
-
# @param port [String,Integer] socket target port
|
19
|
-
def initialize host, port
|
20
|
-
@host = host.to_s
|
21
|
-
@port = port.to_i
|
22
|
-
end
|
23
|
-
|
24
|
-
def new_socket
|
25
|
-
::TCPSocket.new(host, port)
|
26
|
-
end
|
27
|
-
end
|
28
|
-
end
|
29
|
-
end
|
@@ -1,25 +0,0 @@
|
|
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/api/socket'
|
5
|
-
|
6
|
-
module Contrast
|
7
|
-
module Api
|
8
|
-
# Implements a UNIX domain socket to connect to the Contrast Service.
|
9
|
-
class UnixSocket
|
10
|
-
include Contrast::Api::Socket
|
11
|
-
|
12
|
-
attr_reader :path
|
13
|
-
|
14
|
-
# Create the socket
|
15
|
-
# @param path [String] file path to a UNIX domain socket
|
16
|
-
def initialize path
|
17
|
-
@path = path
|
18
|
-
end
|
19
|
-
|
20
|
-
def new_socket
|
21
|
-
::UNIXSocket.new(path)
|
22
|
-
end
|
23
|
-
end
|
24
|
-
end
|
25
|
-
end
|
@@ -1,51 +0,0 @@
|
|
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 Framework
|
6
|
-
module Sinatra
|
7
|
-
# This module is to help perform sometimes necessary tasks specific to Sinatra
|
8
|
-
module ApplicationHelper
|
9
|
-
SINATRA_VIEWS = [
|
10
|
-
Contrast::Framework::ViewTechnologiesDescriptor.new('public/stylesheets', 'scss', %w[SASS]),
|
11
|
-
Contrast::Framework::ViewTechnologiesDescriptor.new('views', 'html', %w[HTML5]),
|
12
|
-
Contrast::Framework::ViewTechnologiesDescriptor.new('views', 'html.erb', %w[HTML5 ERB]),
|
13
|
-
Contrast::Framework::ViewTechnologiesDescriptor.new('views', 'html.haml', %w[HTML5 HAML]),
|
14
|
-
Contrast::Framework::ViewTechnologiesDescriptor.new('public', 'html', %w[HTML5])
|
15
|
-
].cs__freeze
|
16
|
-
|
17
|
-
def app_class
|
18
|
-
@_app_class ||= begin
|
19
|
-
return nil unless defined?(::Sinatra) && defined?(::Sinatra::Base)
|
20
|
-
|
21
|
-
sinatra_layers = ObjectSpace.each_object(::Sinatra::Base).to_a
|
22
|
-
result_layer = sinatra_layers.find { |layer| layer.app.nil? }
|
23
|
-
result_layer
|
24
|
-
end
|
25
|
-
end
|
26
|
-
|
27
|
-
def scannable_view_dirs
|
28
|
-
@_scannable_view_dirs ||= begin
|
29
|
-
views = SINATRA_VIEWS.dup
|
30
|
-
views << Contrast::Framework::ViewTechnologiesDescriptor.new(view_directory, 'erb', %w[HTML5 ERB]) if view_directory
|
31
|
-
views << Contrast::Framework::ViewTechnologiesDescriptor.new(view_directory, 'haml', %w[HTML5 HAML]) if view_directory
|
32
|
-
views << Contrast::Framework::ViewTechnologiesDescriptor.new(public_directory, 'html', %w[HTML5]) if public_directory
|
33
|
-
views
|
34
|
-
end
|
35
|
-
end
|
36
|
-
|
37
|
-
def view_directory
|
38
|
-
@_view_directory ||= begin
|
39
|
-
app_class&.settings&.views
|
40
|
-
end
|
41
|
-
end
|
42
|
-
|
43
|
-
def public_directory
|
44
|
-
@_public_directory ||= begin
|
45
|
-
app_class&.settings&.public_dir
|
46
|
-
end
|
47
|
-
end
|
48
|
-
end
|
49
|
-
end
|
50
|
-
end
|
51
|
-
end
|
@@ -1,21 +0,0 @@
|
|
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 Framework
|
6
|
-
# Used to define common locations and extensions for specific technologies
|
7
|
-
class ViewTechnologiesDescriptor
|
8
|
-
attr_reader :path, :extension, :technology_names
|
9
|
-
|
10
|
-
def initialize path, extension, technology_names
|
11
|
-
@path = path
|
12
|
-
@extension = extension
|
13
|
-
@technology_names = technology_names
|
14
|
-
end
|
15
|
-
|
16
|
-
def empty?
|
17
|
-
Dir["#{ path }/**/*#{ extension }"].empty?
|
18
|
-
end
|
19
|
-
end
|
20
|
-
end
|
21
|
-
end
|
@@ -1,8 +0,0 @@
|
|
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
|
-
# Used to type a StandardError raised by Contrast code.
|
6
|
-
class InternalException < StandardError
|
7
|
-
end
|
8
|
-
end
|
data/lib/contrast/utils/cache.rb
DELETED
@@ -1,58 +0,0 @@
|
|
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 Utils
|
6
|
-
# Implementation taken from http://stackoverflow.com/questions/1933866/efficient-ruby-lru-cache
|
7
|
-
class Cache
|
8
|
-
def initialize max_size = 1000
|
9
|
-
@max_size = max_size
|
10
|
-
@data = {}
|
11
|
-
end
|
12
|
-
|
13
|
-
def [] key
|
14
|
-
found = true
|
15
|
-
value = @data.delete(key) { found = false }
|
16
|
-
@data[key] = value if found
|
17
|
-
end
|
18
|
-
|
19
|
-
def []= key, value
|
20
|
-
@data.delete(key)
|
21
|
-
@data[key] = value
|
22
|
-
@data.delete(@data.first[0]) if @data.length > @max_size
|
23
|
-
|
24
|
-
value # rubocop:disable Lint/Void
|
25
|
-
end
|
26
|
-
|
27
|
-
def each
|
28
|
-
@data.reverse_each do |pair|
|
29
|
-
yield pair
|
30
|
-
end
|
31
|
-
end
|
32
|
-
|
33
|
-
# used further up the chain, non thread safe each
|
34
|
-
alias_method :each_unsafe, :each
|
35
|
-
|
36
|
-
def to_a
|
37
|
-
@data.to_a.reverse
|
38
|
-
end
|
39
|
-
|
40
|
-
def delete key
|
41
|
-
@data.delete(key)
|
42
|
-
end
|
43
|
-
|
44
|
-
def clear
|
45
|
-
@data.clear
|
46
|
-
end
|
47
|
-
|
48
|
-
def count
|
49
|
-
@data.count
|
50
|
-
end
|
51
|
-
|
52
|
-
# for cache validation only, ensures all is sound
|
53
|
-
def valid?
|
54
|
-
true
|
55
|
-
end
|
56
|
-
end
|
57
|
-
end
|
58
|
-
end
|