contrast-agent 3.12.1 → 3.14.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/exe/contrast_service +1 -7
- data/ext/build_funchook.rb +0 -2
- data/ext/cs__assess_active_record_named/cs__active_record_named.c +8 -7
- data/ext/cs__assess_array/cs__assess_array.c +6 -5
- data/ext/cs__assess_basic_object/cs__assess_basic_object.c +5 -5
- data/ext/cs__assess_fiber_track/cs__assess_fiber_track.c +4 -9
- data/ext/cs__assess_fiber_track/cs__assess_fiber_track.h +0 -1
- data/ext/cs__assess_hash/cs__assess_hash.c +18 -17
- data/ext/cs__assess_hash/cs__assess_hash.h +2 -1
- data/ext/cs__assess_kernel/cs__assess_kernel.c +7 -8
- data/ext/cs__assess_marshal_module/cs__assess_marshal_module.c +4 -5
- data/ext/cs__assess_module/cs__assess_module.c +6 -6
- data/ext/cs__assess_regexp/cs__assess_regexp.c +4 -4
- data/ext/cs__assess_string/cs__assess_string.c +20 -4
- data/ext/cs__assess_string/cs__assess_string.h +4 -1
- data/ext/cs__assess_string_interpolation26/cs__assess_string_interpolation26.c +4 -7
- data/ext/cs__assess_yield_track/cs__assess_yield_track.c +3 -7
- data/ext/cs__assess_yield_track/cs__assess_yield_track.h +0 -1
- data/ext/cs__common/cs__common.c +59 -28
- data/ext/cs__common/cs__common.h +18 -20
- data/ext/cs__common/extconf.rb +0 -14
- data/ext/cs__contrast_patch/cs__contrast_patch.c +27 -25
- data/ext/cs__contrast_patch/cs__contrast_patch.h +5 -7
- data/ext/cs__protect_kernel/cs__protect_kernel.c +11 -12
- data/ext/cs__protect_kernel/cs__protect_kernel.h +2 -2
- data/ext/extconf_common.rb +0 -28
- data/lib/contrast-agent.rb +1 -1
- data/lib/contrast.rb +15 -23
- data/lib/contrast/agent.rb +51 -39
- data/lib/contrast/agent/assess.rb +11 -12
- data/lib/contrast/agent/assess/contrast_event.rb +39 -176
- data/lib/contrast/agent/assess/events/event_factory.rb +2 -2
- data/lib/contrast/agent/assess/events/source_event.rb +5 -9
- data/lib/contrast/agent/assess/finalizers/finalize.rb +21 -0
- data/lib/contrast/agent/assess/finalizers/freeze.rb +13 -0
- data/lib/contrast/agent/assess/finalizers/hash.rb +53 -0
- data/lib/contrast/agent/assess/policy/dynamic_source_factory.rb +2 -2
- data/lib/contrast/agent/assess/policy/patcher.rb +5 -5
- data/lib/contrast/agent/assess/policy/policy.rb +9 -9
- data/lib/contrast/agent/assess/policy/policy_node.rb +5 -99
- data/lib/contrast/agent/assess/policy/policy_scanner.rb +3 -3
- data/lib/contrast/agent/assess/policy/preshift.rb +15 -5
- data/lib/contrast/agent/assess/policy/propagation_method.rb +26 -24
- data/lib/contrast/agent/assess/policy/propagation_node.rb +6 -2
- data/lib/contrast/agent/assess/policy/propagator.rb +18 -18
- data/lib/contrast/agent/assess/policy/propagator/base.rb +1 -1
- data/lib/contrast/agent/assess/policy/propagator/custom.rb +1 -1
- data/lib/contrast/agent/assess/policy/propagator/database_write.rb +1 -1
- data/lib/contrast/agent/assess/policy/propagator/insert.rb +1 -4
- data/lib/contrast/agent/assess/policy/propagator/match_data.rb +12 -3
- data/lib/contrast/agent/assess/policy/propagator/prepend.rb +5 -0
- 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 +5 -5
- data/lib/contrast/agent/assess/policy/propagator/substitution.rb +8 -7
- data/lib/contrast/agent/assess/policy/propagator/trim.rb +6 -10
- data/lib/contrast/agent/assess/policy/rewriter_patch.rb +5 -5
- data/lib/contrast/agent/assess/policy/source_method.rb +6 -16
- data/lib/contrast/agent/assess/policy/source_validation/cross_site_validator.rb +1 -1
- data/lib/contrast/agent/assess/policy/source_validation/source_validation.rb +1 -1
- data/lib/contrast/agent/assess/policy/trigger/xpath.rb +1 -1
- data/lib/contrast/agent/assess/policy/trigger_method.rb +7 -15
- data/lib/contrast/agent/assess/policy/trigger_node.rb +18 -6
- data/lib/contrast/agent/assess/policy/trigger_validation/trigger_validation.rb +2 -2
- data/lib/contrast/agent/assess/properties.rb +13 -383
- 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.rb +2 -2
- data/lib/contrast/agent/assess/rule/base.rb +3 -4
- data/lib/contrast/agent/assess/rule/provider.rb +3 -3
- data/lib/contrast/agent/assess/rule/provider/hardcoded_password.rb +1 -1
- data/lib/contrast/agent/assess/rule/provider/hardcoded_value_rule.rb +4 -22
- data/lib/contrast/agent/assess/tag.rb +27 -12
- data/lib/contrast/agent/at_exit_hook.rb +4 -2
- data/lib/contrast/agent/class_reopener.rb +7 -6
- data/lib/contrast/agent/deadzone/policy/deadzone_node.rb +1 -1
- data/lib/contrast/agent/deadzone/policy/policy.rb +2 -2
- data/lib/contrast/agent/disable_reaction.rb +1 -1
- data/lib/contrast/agent/exclusion_matcher.rb +3 -3
- data/lib/contrast/agent/inventory/policy/datastores.rb +2 -3
- data/lib/contrast/agent/inventory/policy/policy.rb +3 -3
- data/lib/contrast/agent/inventory/policy/trigger_node.rb +1 -1
- data/lib/contrast/agent/middleware.rb +37 -48
- data/lib/contrast/agent/patching/policy/after_load_patch.rb +4 -4
- data/lib/contrast/agent/patching/policy/after_load_patcher.rb +6 -5
- data/lib/contrast/agent/patching/policy/module_policy.rb +1 -1
- data/lib/contrast/agent/patching/policy/patch.rb +16 -16
- data/lib/contrast/agent/patching/policy/patcher.rb +30 -22
- data/lib/contrast/agent/patching/policy/policy.rb +9 -9
- data/lib/contrast/agent/patching/policy/policy_node.rb +3 -3
- data/lib/contrast/agent/patching/policy/trigger_node.rb +2 -2
- data/lib/contrast/agent/protect/policy/applies_command_injection_rule.rb +3 -3
- data/lib/contrast/agent/protect/policy/applies_deserialization_rule.rb +2 -2
- data/lib/contrast/agent/protect/policy/applies_no_sqli_rule.rb +2 -2
- data/lib/contrast/agent/protect/policy/applies_path_traversal_rule.rb +3 -3
- data/lib/contrast/agent/protect/policy/applies_sqli_rule.rb +2 -2
- data/lib/contrast/agent/protect/policy/applies_xxe_rule.rb +3 -3
- data/lib/contrast/agent/protect/policy/policy.rb +8 -8
- data/lib/contrast/agent/protect/policy/rule_applicator.rb +3 -3
- data/lib/contrast/agent/protect/policy/trigger_node.rb +1 -1
- data/lib/contrast/agent/protect/rule.rb +18 -18
- data/lib/contrast/agent/protect/rule/base.rb +21 -32
- data/lib/contrast/agent/protect/rule/base_service.rb +2 -2
- data/lib/contrast/agent/protect/rule/cmd_injection.rb +5 -5
- data/lib/contrast/agent/protect/rule/deserialization.rb +1 -1
- data/lib/contrast/agent/protect/rule/http_method_tampering.rb +3 -8
- data/lib/contrast/agent/protect/rule/no_sqli.rb +1 -1
- data/lib/contrast/agent/protect/rule/path_traversal.rb +4 -5
- data/lib/contrast/agent/protect/rule/sqli.rb +2 -2
- 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 +4 -5
- data/lib/contrast/agent/protect/rule/xxe/entity_wrapper.rb +2 -2
- data/lib/contrast/agent/railtie.rb +1 -1
- data/lib/contrast/agent/reaction_processor.rb +5 -5
- data/lib/contrast/agent/request.rb +103 -340
- data/lib/contrast/agent/request_context.rb +25 -21
- data/lib/contrast/agent/request_handler.rb +1 -1
- data/lib/contrast/agent/response.rb +8 -20
- data/lib/contrast/agent/rewriter.rb +5 -6
- data/lib/contrast/agent/scope.rb +1 -1
- data/lib/contrast/agent/service_heartbeat.rb +8 -10
- data/lib/contrast/agent/static_analysis.rb +4 -4
- data/lib/contrast/agent/thread.rb +1 -1
- data/lib/contrast/agent/thread_watcher.rb +49 -0
- data/lib/contrast/agent/tracepoint_hook.rb +1 -1
- data/lib/contrast/agent/version.rb +1 -1
- data/lib/contrast/agent/worker_thread.rb +24 -0
- data/lib/contrast/api.rb +4 -6
- 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} +10 -19
- 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 +14 -4
- data/lib/contrast/api/decorators/address.rb +61 -0
- data/lib/contrast/api/decorators/application_settings.rb +10 -5
- data/lib/contrast/api/decorators/application_update.rb +5 -13
- data/lib/contrast/api/decorators/http_request.rb +140 -0
- data/lib/contrast/api/decorators/input_analysis.rb +3 -2
- data/lib/contrast/api/decorators/message.rb +76 -0
- data/lib/contrast/api/decorators/rasp_rule_sample.rb +29 -0
- data/lib/contrast/api/decorators/route_coverage.rb +58 -0
- data/lib/contrast/api/decorators/server_features.rb +3 -2
- data/lib/contrast/api/decorators/trace_event.rb +100 -0
- data/lib/contrast/api/decorators/trace_event_object.rb +58 -0
- data/lib/contrast/api/decorators/trace_event_signature.rb +47 -0
- data/lib/contrast/api/decorators/trace_taint_range.rb +52 -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/common_agent_configuration.rb +2 -2
- data/lib/contrast/components/agent.rb +2 -2
- data/lib/contrast/components/app_context.rb +1 -8
- data/lib/contrast/components/config.rb +7 -12
- data/lib/contrast/components/contrast_service.rb +1 -1
- data/lib/contrast/components/interface.rb +16 -16
- data/lib/contrast/components/logger.rb +1 -1
- data/lib/contrast/components/scope.rb +3 -3
- data/lib/contrast/components/settings.rb +0 -6
- data/lib/contrast/config.rb +18 -18
- data/lib/contrast/config/base_configuration.rb +2 -2
- data/lib/contrast/config/protect_rule_configuration.rb +1 -1
- data/lib/contrast/configuration.rb +5 -5
- data/lib/contrast/extension/assess.rb +22 -22
- data/lib/contrast/extension/assess/array.rb +4 -4
- data/lib/contrast/extension/assess/assess_extension.rb +28 -31
- data/lib/contrast/extension/assess/eval_trigger.rb +3 -3
- data/lib/contrast/extension/assess/exec_trigger.rb +1 -1
- data/lib/contrast/extension/assess/fiber.rb +3 -3
- data/lib/contrast/extension/assess/hash.rb +5 -3
- data/lib/contrast/extension/assess/kernel.rb +7 -6
- data/lib/contrast/extension/assess/marshal.rb +62 -0
- data/lib/contrast/extension/assess/regexp.rb +3 -3
- data/lib/contrast/extension/assess/string.rb +6 -6
- data/lib/contrast/extension/inventory.rb +4 -5
- data/lib/contrast/extension/kernel.rb +1 -1
- data/lib/contrast/extension/module.rb +1 -1
- data/lib/contrast/extension/protect.rb +3 -3
- data/lib/contrast/extension/protect/kernel.rb +2 -2
- data/lib/contrast/extension/protect/psych.rb +2 -2
- data/lib/contrast/framework/base_support.rb +0 -23
- data/lib/contrast/framework/manager.rb +7 -17
- data/lib/contrast/framework/rack/patch/session_cookie.rb +1 -1
- data/lib/contrast/framework/rack/patch/support.rb +1 -1
- data/lib/contrast/framework/rack/support.rb +2 -2
- data/lib/contrast/framework/rails/patch/action_controller_live_buffer.rb +1 -3
- data/lib/contrast/framework/rails/patch/assess_configuration.rb +5 -6
- data/lib/contrast/framework/rails/patch/rails_application_configuration.rb +1 -1
- data/lib/contrast/framework/rails/patch/support.rb +3 -3
- data/lib/contrast/framework/rails/rewrite/action_controller_railties_helper_inherited.rb +2 -2
- data/lib/contrast/framework/rails/rewrite/active_record_named.rb +2 -2
- data/lib/contrast/framework/rails/rewrite/active_record_time_zone_inherited.rb +2 -2
- data/lib/contrast/framework/rails/support.rb +56 -37
- data/lib/contrast/framework/sinatra/patch/base.rb +2 -2
- data/lib/contrast/framework/sinatra/patch/support.rb +1 -1
- data/lib/contrast/framework/sinatra/support.rb +13 -24
- data/lib/contrast/funchook/funchook.rb +45 -0
- data/lib/contrast/logger/application.rb +3 -3
- data/lib/contrast/logger/format.rb +64 -0
- data/lib/contrast/logger/log.rb +17 -9
- data/lib/contrast/logger/request.rb +30 -0
- data/lib/contrast/tasks/config.rb +1 -1
- data/lib/contrast/tasks/service.rb +2 -2
- data/lib/contrast/utils/assess/sampling_util.rb +2 -2
- data/lib/contrast/utils/assess/tracking_util.rb +46 -21
- data/lib/contrast/utils/boolean_util.rb +1 -1
- data/lib/contrast/utils/class_util.rb +5 -3
- data/lib/contrast/utils/freeze_util.rb +1 -1
- data/lib/contrast/utils/gemfile_reader.rb +5 -5
- data/lib/contrast/utils/hash_digest.rb +13 -3
- data/lib/contrast/utils/heap_dump_util.rb +2 -2
- data/lib/contrast/utils/invalid_configuration_util.rb +2 -18
- data/lib/contrast/utils/inventory_util.rb +6 -11
- data/lib/contrast/utils/io_util.rb +1 -1
- data/lib/contrast/utils/object_share.rb +0 -1
- data/lib/contrast/utils/os.rb +16 -4
- data/lib/contrast/utils/ruby_ast_rewriter.rb +1 -1
- data/lib/contrast/utils/sha256_builder.rb +2 -2
- data/lib/contrast/utils/stack_trace_utils.rb +2 -3
- data/lib/contrast/utils/string_utils.rb +1 -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/resources/deadzone/policy.json +5 -0
- data/ruby-agent.gemspec +9 -9
- data/service_executables/VERSION +1 -1
- data/service_executables/linux/contrast-service +0 -0
- data/service_executables/mac/contrast-service +0 -0
- metadata +60 -79
- data/funchook/Makefile +0 -29
- data/funchook/autom4te.cache/output.0 +0 -4976
- data/funchook/autom4te.cache/requests +0 -78
- data/funchook/autom4te.cache/traces.0 +0 -364
- data/funchook/config.log +0 -490
- data/funchook/config.status +0 -1016
- data/funchook/configure +0 -4976
- 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.so +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/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/assess/insulator.rb +0 -49
- data/lib/contrast/agent/require_state.rb +0 -61
- 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
@@ -56,7 +56,7 @@ module Contrast
|
|
56
56
|
# characters are probably more likely to appear together in a
|
57
57
|
# default placeholder than in a password. Note this is opposite of
|
58
58
|
# the behavior in Java
|
59
|
-
PROPERTY_NAME_PATTERN = /^[a-z]+[
|
59
|
+
PROPERTY_NAME_PATTERN = /^[a-z]+[._][._a-z]*[a-z]+$/.cs__freeze
|
60
60
|
def probably_property_name? value
|
61
61
|
value.match?(PROPERTY_NAME_PATTERN)
|
62
62
|
end
|
@@ -1,8 +1,8 @@
|
|
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
|
-
|
5
|
-
|
4
|
+
require 'contrast/components/interface'
|
5
|
+
require 'contrast/extension/module'
|
6
6
|
|
7
7
|
module Contrast
|
8
8
|
module Agent
|
@@ -19,7 +19,7 @@ module Contrast
|
|
19
19
|
# 4) redacted_marker : the value to plug in for the obfuscated value
|
20
20
|
module HardcodedValueRule
|
21
21
|
include Contrast::Components::Interface
|
22
|
-
access_component :analysis, :app_context, :logging
|
22
|
+
access_component :analysis, :app_context, :logging
|
23
23
|
|
24
24
|
def disabled?
|
25
25
|
!ASSESS.enabled? || ASSESS.rule_disabled?(rule_id)
|
@@ -95,8 +95,6 @@ module Contrast
|
|
95
95
|
|
96
96
|
finding = Contrast::Api::Dtm::Finding.new
|
97
97
|
finding.rule_id = Contrast::Utils::StringUtils.protobuf_safe_string(rule_id)
|
98
|
-
finding.session_id = SETTINGS.session_id
|
99
|
-
|
100
98
|
finding.version = Contrast::Agent::Assess::Policy::TriggerMethod::CURRENT_FINDING_VERSION
|
101
99
|
|
102
100
|
finding.properties[SOURCE_KEY] = Contrast::Utils::StringUtils.protobuf_safe_string(class_name)
|
@@ -110,26 +108,10 @@ module Contrast
|
|
110
108
|
activity = Contrast::Api::Dtm::Activity.new
|
111
109
|
activity.findings << finding
|
112
110
|
|
113
|
-
|
114
|
-
if APP_CONTEXT.ready?
|
115
|
-
build_tags(activity)
|
116
|
-
Contrast::Utils::ServiceSenderUtil.push_to_ready_queue activity
|
117
|
-
# Otherwise, if the Agent isn't ready, we have to queue the messages
|
118
|
-
# until we know the starting state.
|
119
|
-
else
|
120
|
-
Contrast::Utils::ServiceSenderUtil.add_to_assess_messages activity
|
121
|
-
end
|
111
|
+
Contrast::Agent.messaging_queue.send_event_eventually(activity)
|
122
112
|
rescue StandardError => e
|
123
113
|
logger.error('Unable to build a finding for Hardcoded Rule', e)
|
124
114
|
end
|
125
|
-
|
126
|
-
# This seems silly to pull out, but we can ONLY call this in the case
|
127
|
-
# where we have a configuration. Doing otherwise results in a bad error
|
128
|
-
# case where we try to do other things, like logging, which behave
|
129
|
-
# strangely without a config
|
130
|
-
def build_tags activity
|
131
|
-
activity.finding_tags = Contrast::Utils::StringUtils.force_utf8(ASSESS.tags)
|
132
|
-
end
|
133
115
|
end
|
134
116
|
end
|
135
117
|
end
|
@@ -7,28 +7,42 @@ module Contrast
|
|
7
7
|
# A Tag represents a range in a given piece of data. It is used by the
|
8
8
|
# Agent to determine if a vulnerable dataflow has occurred.
|
9
9
|
class Tag
|
10
|
-
attr_reader :
|
10
|
+
attr_reader :label, # the label of this tag
|
11
|
+
:length, # length of tagged text within string
|
11
12
|
:start_idx, # start of range
|
12
|
-
:end_idx # end of range (calculated from start + length)
|
13
|
+
:end_idx # end of range (calculated from start + length), exclusive
|
13
14
|
|
14
15
|
# Initialize a new tag
|
15
|
-
#
|
16
|
-
#
|
17
|
-
|
16
|
+
#
|
17
|
+
# @param label [String] the lable of the tag
|
18
|
+
# @param length [Integer] the length of the string described with this
|
19
|
+
# tag
|
20
|
+
# @param start_idx [Integer] (0) the starting position in the string for
|
21
|
+
# this tag
|
22
|
+
def initialize label, length, start_idx = 0
|
23
|
+
@label = label
|
18
24
|
update_range(start_idx, start_idx + length)
|
19
25
|
end
|
20
26
|
|
21
27
|
# Return true if the tag covers the given position in the string
|
28
|
+
#
|
29
|
+
# @param idx [Integer] the index to check
|
30
|
+
# @return [Boolean]
|
22
31
|
def covers? idx
|
23
32
|
idx >= start_idx && idx < end_idx
|
24
33
|
end
|
25
34
|
|
26
35
|
# Return true if the tag is above the given position in the string
|
36
|
+
# @param idx [Integer] the index to check
|
37
|
+
# @return [Boolean]
|
27
38
|
def above? idx
|
28
39
|
idx < start_idx
|
29
40
|
end
|
30
41
|
|
31
|
-
# Return the range that this tag covers
|
42
|
+
# Return the range that this tag covers, from start (inclusive) to
|
43
|
+
# end (exclusive).
|
44
|
+
#
|
45
|
+
# @return [Range]
|
32
46
|
def range
|
33
47
|
start_idx...end_idx
|
34
48
|
end
|
@@ -38,10 +52,11 @@ module Contrast
|
|
38
52
|
end
|
39
53
|
|
40
54
|
# Return if a given tag overlaps this one
|
41
|
-
def overlaps?
|
42
|
-
return true if @start_idx <
|
43
|
-
return true if @start_idx >=
|
44
|
-
|
55
|
+
def overlaps? start_idx, end_idx
|
56
|
+
return true if @start_idx < start_idx && @end_idx >= start_idx # we start below range & end in it
|
57
|
+
return true if @start_idx >= start_idx && @end_idx <= end_idx # we start and end in range
|
58
|
+
|
59
|
+
@start_idx <= end_idx && @end_idx > end_idx # we start in range & end above it
|
45
60
|
end
|
46
61
|
|
47
62
|
def shift idx
|
@@ -71,7 +86,7 @@ module Contrast
|
|
71
86
|
# Returns true if the other tag was merged into
|
72
87
|
# this tag
|
73
88
|
def merge other
|
74
|
-
return unless overlaps?(other)
|
89
|
+
return unless overlaps?(other.start_idx, other.end_idx)
|
75
90
|
|
76
91
|
start = other.start_idx < @start_idx ? other.start_idx : @start_idx
|
77
92
|
finish = other.end_idx > @end_idx ? other.end_idx : @end_idx
|
@@ -86,7 +101,7 @@ module Contrast
|
|
86
101
|
new_start_idx = start >= 0 ? start : 0
|
87
102
|
# If a tag were to go negative, cut off the negative portion from length
|
88
103
|
new_length = start >= 0 ? length : (length + start)
|
89
|
-
Contrast::Agent::Assess::Tag.new(new_length, new_start_idx)
|
104
|
+
Contrast::Agent::Assess::Tag.new(label, new_length, new_start_idx)
|
90
105
|
end
|
91
106
|
|
92
107
|
def str_val
|
@@ -1,7 +1,7 @@
|
|
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
|
-
|
4
|
+
require 'contrast/components/interface'
|
5
5
|
|
6
6
|
module Contrast
|
7
7
|
module Agent
|
@@ -29,7 +29,9 @@ module Contrast
|
|
29
29
|
process_pp_id: Process.ppid)
|
30
30
|
|
31
31
|
context = Contrast::Agent::REQUEST_TRACKER.current
|
32
|
-
|
32
|
+
return unless context
|
33
|
+
|
34
|
+
Contrast::Agent.messaging_queue.send_event_immediately(context.activity)
|
33
35
|
end
|
34
36
|
end
|
35
37
|
end
|
@@ -1,10 +1,10 @@
|
|
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
|
-
|
5
|
-
|
6
|
-
|
7
|
-
|
4
|
+
require 'ripper'
|
5
|
+
require 'contrast/extension/module'
|
6
|
+
require 'contrast/components/interface'
|
7
|
+
require 'contrast/logger/log'
|
8
8
|
|
9
9
|
# This method is left purposefully at the top level namespace. Moving it
|
10
10
|
# elsewhere will break functionality as it executes evaluations against the
|
@@ -164,9 +164,10 @@ module Contrast
|
|
164
164
|
next unless defined
|
165
165
|
|
166
166
|
current = current ? current.cs__const_get(chunk) : Module.cs__const_get(chunk)
|
167
|
-
|
167
|
+
case current
|
168
|
+
when Class
|
168
169
|
name_space << [chunk, Class]
|
169
|
-
|
170
|
+
when Module
|
170
171
|
name_space << [chunk, Module]
|
171
172
|
end
|
172
173
|
end
|
@@ -1,7 +1,7 @@
|
|
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
|
-
|
4
|
+
require 'contrast/agent/patching/policy/policy_node'
|
5
5
|
|
6
6
|
module Contrast
|
7
7
|
module Agent
|
@@ -1,8 +1,8 @@
|
|
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
|
-
|
5
|
-
|
4
|
+
require 'contrast/agent/deadzone/policy/deadzone_node'
|
5
|
+
require 'contrast/agent/patching/policy/policy'
|
6
6
|
|
7
7
|
module Contrast
|
8
8
|
module Agent
|
@@ -1,7 +1,7 @@
|
|
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
|
-
|
4
|
+
require 'contrast/components/interface'
|
5
5
|
|
6
6
|
module Contrast
|
7
7
|
module Agent
|
@@ -1,7 +1,7 @@
|
|
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
|
-
|
4
|
+
require 'contrast/components/interface'
|
5
5
|
|
6
6
|
module Contrast
|
7
7
|
module Agent
|
@@ -92,7 +92,7 @@ module Contrast
|
|
92
92
|
end
|
93
93
|
|
94
94
|
def code?
|
95
|
-
@exclusion.type ==
|
95
|
+
@exclusion.type == Contrast::Api::Settings::Exclusion::ExclusionType::CODE
|
96
96
|
end
|
97
97
|
|
98
98
|
def name
|
@@ -100,7 +100,7 @@ module Contrast
|
|
100
100
|
end
|
101
101
|
|
102
102
|
def match_all?
|
103
|
-
@exclusion.
|
103
|
+
@exclusion.urls.nil? || @exclusion.urls.empty?
|
104
104
|
end
|
105
105
|
|
106
106
|
# Determine if the given rule is excluded by this exclusion.
|
@@ -1,8 +1,8 @@
|
|
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
|
-
|
5
|
-
|
4
|
+
require 'contrast/components/interface'
|
5
|
+
require 'contrast/utils/inventory_util'
|
6
6
|
|
7
7
|
module Contrast
|
8
8
|
module Agent
|
@@ -40,7 +40,6 @@ module Contrast
|
|
40
40
|
context = Contrast::Agent::REQUEST_TRACKER.current
|
41
41
|
return unless context&.activity
|
42
42
|
|
43
|
-
context.activity.technologies[data_store] = true
|
44
43
|
context.activity.query_count += 1
|
45
44
|
return unless context.activity.query_count == 1
|
46
45
|
|
@@ -1,11 +1,11 @@
|
|
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
|
-
|
5
|
-
|
4
|
+
require 'contrast/agent/inventory/policy/trigger_node'
|
5
|
+
require 'contrast/agent/patching/policy/policy'
|
6
6
|
|
7
7
|
# classes required by patches in the policy
|
8
|
-
|
8
|
+
require 'contrast/agent/inventory/policy/datastores'
|
9
9
|
|
10
10
|
module Contrast
|
11
11
|
module Agent
|
@@ -1,7 +1,7 @@
|
|
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
|
-
|
4
|
+
require 'contrast/agent/patching/policy/trigger_node'
|
5
5
|
|
6
6
|
module Contrast
|
7
7
|
module Agent
|
@@ -1,22 +1,19 @@
|
|
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
|
-
|
5
|
-
|
6
|
-
|
7
|
-
|
8
|
-
|
9
|
-
|
10
|
-
|
11
|
-
|
12
|
-
|
13
|
-
|
14
|
-
|
15
|
-
|
16
|
-
|
17
|
-
cs__scoped_require 'contrast/utils/freeze_util'
|
18
|
-
cs__scoped_require 'contrast/utils/service_sender_util'
|
19
|
-
cs__scoped_require 'contrast/utils/service_response_util'
|
4
|
+
require 'ipaddr'
|
5
|
+
require 'json'
|
6
|
+
require 'rack'
|
7
|
+
|
8
|
+
require 'contrast/security_exception'
|
9
|
+
require 'contrast/utils/object_share'
|
10
|
+
require 'contrast/components/interface'
|
11
|
+
require 'contrast/utils/heap_dump_util'
|
12
|
+
require 'contrast/agent/request_handler'
|
13
|
+
require 'contrast/agent/static_analysis'
|
14
|
+
|
15
|
+
require 'contrast/utils/timer'
|
16
|
+
require 'contrast/utils/freeze_util'
|
20
17
|
|
21
18
|
module Contrast
|
22
19
|
module Agent
|
@@ -60,7 +57,7 @@ module Contrast
|
|
60
57
|
# instrumentation going forward
|
61
58
|
def agent_startup_routine
|
62
59
|
logger.debug_with_time('middleware: starting service') do
|
63
|
-
|
60
|
+
Contrast::Agent.thread_watcher.ensure_running?
|
64
61
|
end
|
65
62
|
|
66
63
|
logger.debug_with_time('middleware: instrument shared libraries and patch') do
|
@@ -110,6 +107,7 @@ module Contrast
|
|
110
107
|
# available globally so that it can be accessed from anywhere. A RequestHandler object is made
|
111
108
|
# for each request, which handles prefilter and postfilter operations.
|
112
109
|
def call_with_agent env
|
110
|
+
Contrast::Agent.thread_watcher.ensure_running?
|
113
111
|
return unless AGENT.enabled?
|
114
112
|
|
115
113
|
framework_request = Contrast::Agent.framework_manager.retrieve_request(env)
|
@@ -118,32 +116,33 @@ module Contrast
|
|
118
116
|
|
119
117
|
# make the context available for the lifecycle of this request
|
120
118
|
Contrast::Agent::REQUEST_TRACKER.lifespan(context) do
|
119
|
+
logger.request_start
|
121
120
|
request_handler = Contrast::Agent::RequestHandler.new(context)
|
122
121
|
|
123
|
-
|
124
|
-
|
125
|
-
|
126
|
-
|
127
|
-
|
128
|
-
|
122
|
+
# prefilter sequence
|
123
|
+
with_contrast_scope do
|
124
|
+
context.service_extract_request
|
125
|
+
request_handler.ruleset.prefilter
|
126
|
+
end
|
127
|
+
|
128
|
+
response = application_code(env) # pass request down the Rack chain with original env
|
129
129
|
|
130
|
-
|
131
|
-
|
132
|
-
#
|
133
|
-
|
134
|
-
|
135
|
-
|
136
|
-
|
137
|
-
|
138
|
-
|
139
|
-
|
140
|
-
|
141
|
-
|
142
|
-
response = context.response&.rack_response || response
|
143
|
-
request_handler.send_activity_messages
|
144
|
-
end
|
130
|
+
# postfilter sequence
|
131
|
+
with_contrast_scope do
|
132
|
+
context.extract_after(response) # update context with final response information
|
133
|
+
|
134
|
+
if Contrast::Agent.framework_manager.streaming?(env)
|
135
|
+
context.reset_activity
|
136
|
+
request_handler.stream_safe_postfilter
|
137
|
+
else
|
138
|
+
request_handler.ruleset.postfilter
|
139
|
+
# return response stored in the context in case any postfilter rules updated the response data
|
140
|
+
response = context.response&.rack_response || response
|
141
|
+
request_handler.send_activity_messages
|
145
142
|
end
|
146
143
|
end
|
144
|
+
ensure
|
145
|
+
logger.request_end
|
147
146
|
end
|
148
147
|
|
149
148
|
response
|
@@ -176,16 +175,6 @@ module Contrast
|
|
176
175
|
raise exception
|
177
176
|
end
|
178
177
|
end
|
179
|
-
|
180
|
-
# TODO: RUBY-920
|
181
|
-
# Move this somewhere that controls our threads, ensuring they're
|
182
|
-
# recreated on Fork
|
183
|
-
#
|
184
|
-
# Rspec stubs over these methods for simplicity's sake in testing
|
185
|
-
def run_service_threads
|
186
|
-
Contrast::Utils::ServiceSenderUtil.start
|
187
|
-
Contrast::Agent::ServiceHeartbeat.new.start
|
188
|
-
end
|
189
178
|
end
|
190
179
|
end
|
191
180
|
end
|
@@ -1,9 +1,9 @@
|
|
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
|
-
|
5
|
-
|
6
|
-
|
4
|
+
require 'contrast/components/interface'
|
5
|
+
require 'contrast/extension/module'
|
6
|
+
require 'contrast/utils/class_util'
|
7
7
|
|
8
8
|
module Contrast
|
9
9
|
module Agent
|
@@ -59,7 +59,7 @@ module Contrast
|
|
59
59
|
end
|
60
60
|
|
61
61
|
def instrument!
|
62
|
-
|
62
|
+
require instrumentation_file_path
|
63
63
|
if instrumenting_module
|
64
64
|
mod = Module.cs__const_get(instrumenting_module)
|
65
65
|
with_contrast_scope { mod.instrument } if mod
|
@@ -1,9 +1,9 @@
|
|
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
|
-
|
5
|
-
|
6
|
-
|
4
|
+
require 'contrast/agent/patching/policy/after_load_patch'
|
5
|
+
require 'contrast/components/interface'
|
6
|
+
require 'contrast/framework/manager'
|
7
7
|
|
8
8
|
module Contrast
|
9
9
|
module Agent
|
@@ -36,6 +36,7 @@ module Contrast
|
|
36
36
|
Contrast::Extension::Assess::FiberPropagator.instrument_fiber_track
|
37
37
|
Contrast::Extension::Assess::HashPropagator.instrument_hash_track
|
38
38
|
Contrast::Extension::Assess::KernelPropagator.instrument_kernel_track
|
39
|
+
Contrast::Extension::Assess::MarshalPropagator.instrument_marshal_load
|
39
40
|
Contrast::Extension::Assess::RegexpPropagator.instrument_regexp_track
|
40
41
|
Contrast::Extension::Assess::StringPropagator.instrument_string
|
41
42
|
Contrast::Extension::Assess::StringPropagator.instrument_string_interpolation
|
@@ -64,8 +65,8 @@ module Contrast
|
|
64
65
|
# handling
|
65
66
|
def apply_require_patches!
|
66
67
|
@_apply_require_patches ||= begin
|
67
|
-
|
68
|
-
|
68
|
+
require 'contrast/extension/thread'
|
69
|
+
require 'contrast/extension/kernel'
|
69
70
|
true
|
70
71
|
rescue LoadError, StandardError => e
|
71
72
|
logger.error('failed instrumenting apply_require_patches!', e)
|