contrast-agent 3.9.1 → 3.12.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.flayignore +1 -0
- data/.simplecov +5 -2
- data/ext/build_funchook.rb +12 -7
- data/ext/cs__assess_active_record_named/cs__active_record_named.c +12 -14
- data/ext/cs__assess_active_record_named/cs__active_record_named.h +1 -0
- data/ext/cs__assess_active_record_named/extconf.rb +3 -0
- data/ext/cs__assess_array/cs__assess_array.c +5 -6
- data/ext/cs__assess_array/cs__assess_array.h +1 -0
- data/ext/cs__assess_array/extconf.rb +3 -0
- data/ext/cs__assess_basic_object/cs__assess_basic_object.c +13 -11
- data/ext/cs__assess_basic_object/cs__assess_basic_object.h +2 -1
- data/ext/cs__assess_basic_object/extconf.rb +3 -0
- data/ext/cs__assess_fiber_track/cs__assess_fiber_track.c +4 -3
- data/ext/cs__assess_fiber_track/cs__assess_fiber_track.h +3 -3
- data/ext/cs__assess_fiber_track/extconf.rb +3 -0
- data/ext/cs__assess_hash/cs__assess_hash.c +40 -17
- data/ext/cs__assess_hash/cs__assess_hash.h +4 -6
- data/ext/cs__assess_hash/extconf.rb +3 -0
- data/ext/cs__assess_kernel/cs__assess_kernel.c +11 -9
- data/ext/cs__assess_kernel/cs__assess_kernel.h +1 -0
- data/ext/cs__assess_kernel/extconf.rb +3 -0
- data/ext/cs__assess_marshal_module/cs__assess_marshal_module.c +3 -6
- data/ext/cs__assess_marshal_module/extconf.rb +3 -0
- data/ext/cs__assess_module/cs__assess_module.c +16 -14
- data/ext/cs__assess_module/cs__assess_module.h +3 -0
- data/ext/cs__assess_module/extconf.rb +3 -0
- data/ext/cs__assess_regexp/cs__assess_regexp.c +13 -9
- data/ext/cs__assess_regexp/cs__assess_regexp.h +1 -0
- data/ext/cs__assess_regexp/extconf.rb +3 -0
- data/ext/cs__assess_string/cs__assess_string.c +5 -8
- data/ext/cs__assess_string/cs__assess_string.h +2 -1
- data/ext/cs__assess_string/extconf.rb +3 -0
- data/ext/cs__assess_string_interpolation26/cs__assess_string_interpolation26.c +2 -2
- data/ext/cs__assess_string_interpolation26/cs__assess_string_interpolation26.h +3 -3
- data/ext/cs__assess_string_interpolation26/extconf.rb +3 -0
- data/ext/cs__assess_yield_track/cs__assess_yield_track.h +1 -1
- data/ext/cs__assess_yield_track/extconf.rb +3 -0
- data/ext/cs__common/cs__common.c +80 -1
- data/ext/cs__common/cs__common.h +34 -0
- data/ext/cs__common/extconf.rb +9 -8
- data/ext/cs__contrast_patch/cs__contrast_patch.h +1 -6
- data/ext/cs__contrast_patch/extconf.rb +3 -0
- data/ext/cs__protect_kernel/cs__protect_kernel.c +23 -12
- data/ext/cs__protect_kernel/cs__protect_kernel.h +1 -0
- data/ext/cs__protect_kernel/extconf.rb +3 -0
- data/ext/extconf_common.rb +10 -8
- data/funchook/autom4te.cache/requests +48 -48
- data/funchook/config.log +4 -4
- data/lib/contrast.rb +1 -1
- data/lib/contrast/agent.rb +32 -29
- data/lib/contrast/agent/assess.rb +1 -11
- data/lib/contrast/agent/assess/adjusted_span.rb +3 -1
- data/lib/contrast/agent/assess/contrast_event.rb +20 -68
- data/lib/contrast/agent/assess/events/event_factory.rb +25 -0
- data/lib/contrast/agent/assess/events/source_event.rb +83 -0
- data/lib/contrast/agent/assess/insulator.rb +0 -4
- data/lib/contrast/agent/assess/policy/patcher.rb +6 -2
- data/lib/contrast/agent/assess/policy/policy_node.rb +1 -8
- data/lib/contrast/agent/assess/policy/policy_scanner.rb +2 -2
- data/lib/contrast/agent/assess/policy/preshift.rb +1 -1
- data/lib/contrast/agent/assess/policy/propagation_method.rb +68 -33
- data/lib/contrast/agent/assess/policy/propagation_node.rb +2 -1
- data/lib/contrast/agent/assess/policy/propagator.rb +1 -0
- data/lib/contrast/agent/assess/policy/propagator/custom.rb +1 -1
- data/lib/contrast/agent/assess/policy/propagator/database_write.rb +1 -3
- data/lib/contrast/agent/assess/policy/propagator/match_data.rb +80 -0
- data/lib/contrast/agent/assess/policy/propagator/select.rb +35 -22
- data/lib/contrast/agent/assess/policy/propagator/split.rb +26 -6
- data/lib/contrast/agent/assess/policy/propagator/substitution.rb +2 -0
- data/lib/contrast/agent/assess/policy/rewriter_patch.rb +40 -27
- data/lib/contrast/agent/assess/policy/source_method.rb +20 -20
- data/lib/contrast/agent/assess/policy/source_node.rb +0 -15
- data/lib/contrast/agent/assess/policy/trigger/reflected_xss.rb +90 -0
- data/lib/contrast/agent/assess/policy/trigger/xpath.rb +57 -0
- data/lib/contrast/agent/assess/policy/trigger_method.rb +30 -45
- data/lib/contrast/agent/assess/policy/trigger_node.rb +7 -7
- data/lib/contrast/agent/assess/policy/trigger_validation/ssrf_validator.rb +2 -31
- data/lib/contrast/agent/assess/properties.rb +5 -3
- data/lib/contrast/agent/assess/rule/base.rb +1 -20
- data/lib/contrast/agent/assess/rule/provider/hardcoded_value_rule.rb +23 -6
- data/lib/contrast/agent/assess/rule/redos.rb +4 -5
- data/lib/contrast/agent/assess/tag.rb +24 -14
- data/lib/contrast/agent/at_exit_hook.rb +16 -13
- data/lib/contrast/agent/class_reopener.rb +24 -10
- data/lib/contrast/agent/deadzone/policy/policy.rb +2 -2
- data/lib/contrast/agent/disable_reaction.rb +3 -4
- data/lib/contrast/agent/exclusion_matcher.rb +7 -48
- data/lib/contrast/agent/inventory/policy/datastores.rb +54 -0
- data/lib/contrast/agent/inventory/policy/policy.rb +1 -1
- data/lib/contrast/agent/middleware.rb +101 -260
- data/lib/contrast/agent/module_data.rb +2 -1
- data/lib/contrast/agent/patching/policy/after_load_patch.rb +13 -3
- data/lib/contrast/agent/patching/policy/after_load_patcher.rb +59 -47
- data/lib/contrast/agent/patching/policy/method_policy.rb +3 -3
- data/lib/contrast/agent/patching/policy/module_policy.rb +0 -25
- data/lib/contrast/agent/patching/policy/patch.rb +97 -23
- data/lib/contrast/agent/patching/policy/patcher.rb +28 -30
- data/lib/contrast/agent/patching/policy/policy.rb +7 -7
- data/lib/contrast/agent/patching/policy/policy_node.rb +3 -11
- data/lib/contrast/agent/patching/policy/trigger_node.rb +2 -5
- data/lib/contrast/agent/protect/policy/applies_command_injection_rule.rb +63 -0
- data/lib/contrast/agent/protect/policy/applies_deserialization_rule.rb +52 -0
- data/lib/contrast/agent/protect/policy/applies_no_sqli_rule.rb +68 -0
- data/lib/contrast/agent/protect/policy/applies_path_traversal_rule.rb +117 -0
- data/lib/contrast/agent/protect/policy/applies_sqli_rule.rb +54 -0
- data/lib/contrast/agent/protect/policy/applies_xxe_rule.rb +129 -0
- data/lib/contrast/agent/protect/policy/policy.rb +6 -6
- data/lib/contrast/agent/protect/policy/rule_applicator.rb +51 -0
- data/lib/contrast/agent/protect/rule.rb +0 -5
- data/lib/contrast/agent/protect/rule/base.rb +19 -37
- data/lib/contrast/agent/protect/rule/base_service.rb +3 -1
- data/lib/contrast/agent/protect/rule/cmd_injection.rb +12 -15
- data/lib/contrast/agent/protect/rule/default_scanner.rb +0 -13
- data/lib/contrast/agent/protect/rule/deserialization.rb +2 -0
- data/lib/contrast/agent/protect/rule/http_method_tampering.rb +2 -2
- data/lib/contrast/agent/protect/rule/no_sqli.rb +4 -4
- data/lib/contrast/agent/protect/rule/path_traversal.rb +6 -10
- data/lib/contrast/agent/protect/rule/sqli.rb +5 -4
- data/lib/contrast/agent/protect/rule/unsafe_file_upload.rb +2 -0
- data/lib/contrast/agent/protect/rule/xss.rb +2 -0
- data/lib/contrast/agent/protect/rule/xxe.rb +10 -4
- data/lib/contrast/agent/railtie.rb +3 -8
- data/lib/contrast/agent/reaction_processor.rb +5 -5
- data/lib/contrast/agent/request.rb +11 -18
- data/lib/contrast/agent/request_context.rb +16 -19
- data/lib/contrast/agent/request_handler.rb +35 -0
- data/lib/contrast/agent/response.rb +39 -86
- data/lib/contrast/agent/rewriter.rb +25 -11
- data/lib/contrast/agent/rule_set.rb +49 -0
- data/lib/contrast/agent/scope.rb +4 -12
- data/lib/contrast/agent/service_heartbeat.rb +3 -4
- data/lib/contrast/agent/socket_client.rb +25 -19
- data/lib/contrast/agent/static_analysis.rb +41 -0
- data/lib/contrast/agent/thread.rb +1 -1
- data/lib/contrast/agent/tracepoint_hook.rb +1 -5
- data/lib/contrast/agent/version.rb +1 -1
- data/lib/contrast/api.rb +1 -1
- data/lib/contrast/api/decorators.rb +14 -0
- data/lib/contrast/api/decorators/application_settings.rb +37 -0
- data/lib/contrast/api/decorators/application_update.rb +66 -0
- data/lib/contrast/api/decorators/input_analysis.rb +17 -0
- data/lib/contrast/api/decorators/server_features.rb +24 -0
- data/lib/contrast/api/speedracer.rb +32 -30
- data/lib/contrast/api/tcp_socket.rb +0 -2
- data/lib/contrast/components/agent.rb +34 -24
- data/lib/contrast/components/app_context.rb +45 -38
- data/lib/contrast/components/assess.rb +25 -15
- data/lib/contrast/components/config.rb +7 -5
- data/lib/contrast/components/contrast_service.rb +23 -71
- data/lib/contrast/components/heap_dump.rb +12 -8
- data/lib/contrast/components/interface.rb +15 -22
- data/lib/contrast/components/inventory.rb +5 -1
- data/lib/contrast/components/logger.rb +3 -68
- data/lib/contrast/components/protect.rb +40 -4
- data/lib/contrast/components/sampling.rb +22 -11
- data/lib/contrast/components/scope.rb +2 -52
- data/lib/contrast/components/settings.rb +42 -23
- data/lib/contrast/config/base_configuration.rb +1 -0
- data/lib/contrast/config/default_value.rb +1 -0
- data/lib/contrast/config/protect_rule_configuration.rb +0 -14
- data/lib/contrast/config/protect_rules_configuration.rb +0 -1
- data/lib/contrast/configuration.rb +3 -5
- data/lib/contrast/{extensions/ruby_core → extension}/assess.rb +12 -15
- data/lib/contrast/extension/assess/array.rb +77 -0
- data/lib/contrast/{extensions/ruby_core → extension}/assess/assess_extension.rb +29 -24
- data/lib/contrast/{extensions/ruby_core → extension}/assess/erb.rb +0 -8
- data/lib/contrast/extension/assess/eval_trigger.rb +78 -0
- data/lib/contrast/{extensions/ruby_core → extension}/assess/exec_trigger.rb +7 -9
- data/lib/contrast/extension/assess/fiber.rb +113 -0
- data/lib/contrast/extension/assess/hash.rb +39 -0
- data/lib/contrast/extension/assess/kernel.rb +110 -0
- data/lib/contrast/extension/assess/regexp.rb +84 -0
- data/lib/contrast/{extensions/ruby_core → extension}/assess/string.rb +18 -10
- data/lib/contrast/{extensions/ruby_core → extension}/delegator.rb +0 -0
- data/lib/contrast/{extensions/ruby_core → extension}/inventory.rb +2 -2
- data/lib/contrast/extension/kernel.rb +54 -0
- data/lib/contrast/{extensions/ruby_core → extension}/module.rb +0 -0
- data/lib/contrast/{extensions/ruby_core → extension}/protect.rb +2 -2
- data/lib/contrast/extension/protect/kernel.rb +44 -0
- data/lib/contrast/{extensions/ruby_core → extension}/protect/psych.rb +1 -1
- data/lib/contrast/{extensions/ruby_core → extension}/thread.rb +0 -0
- data/lib/contrast/framework/base_support.rb +32 -0
- data/lib/contrast/framework/manager.rb +59 -8
- data/lib/contrast/framework/platform_version.rb +1 -0
- data/lib/contrast/framework/rack/patch/session_cookie.rb +126 -0
- data/lib/contrast/framework/rack/patch/support.rb +24 -0
- data/lib/contrast/framework/rack/support.rb +22 -0
- data/lib/contrast/framework/rails/patch/action_controller_live_buffer.rb +43 -0
- data/lib/contrast/framework/rails/patch/assess_configuration.rb +103 -0
- data/lib/contrast/framework/rails/patch/rails_application_configuration.rb +31 -0
- data/lib/contrast/framework/rails/patch/support.rb +67 -0
- data/lib/contrast/framework/rails/rewrite/action_controller_railties_helper_inherited.rb +34 -0
- data/lib/contrast/framework/rails/rewrite/active_record_attribute_methods_read.rb +39 -0
- data/lib/contrast/framework/rails/rewrite/active_record_named.rb +73 -0
- data/lib/contrast/framework/rails/rewrite/active_record_time_zone_inherited.rb +33 -0
- data/lib/contrast/framework/rails/support.rb +115 -0
- data/lib/contrast/framework/sinatra/application_helper.rb +51 -0
- data/lib/contrast/framework/sinatra/patch/base.rb +83 -0
- data/lib/contrast/framework/sinatra/patch/support.rb +27 -0
- data/lib/contrast/framework/sinatra/support.rb +109 -0
- data/lib/contrast/framework/view_technologies_descriptor.rb +1 -0
- data/lib/contrast/logger/application.rb +80 -0
- data/lib/contrast/logger/log.rb +142 -0
- data/lib/contrast/logger/time.rb +50 -0
- data/lib/contrast/tasks/config.rb +54 -0
- data/lib/contrast/tasks/service.rb +3 -13
- data/lib/contrast/utils/assess/sampling_util.rb +4 -9
- data/lib/contrast/utils/assess/tracking_util.rb +7 -1
- data/lib/contrast/utils/boolean_util.rb +2 -5
- data/lib/contrast/utils/cache.rb +0 -11
- data/lib/contrast/utils/class_util.rb +21 -2
- data/lib/contrast/utils/gemfile_reader.rb +7 -5
- data/lib/contrast/utils/hash_digest.rb +2 -11
- data/lib/contrast/utils/heap_dump_util.rb +12 -11
- data/lib/contrast/utils/invalid_configuration_util.rb +4 -4
- data/lib/contrast/utils/inventory_util.rb +2 -2
- data/lib/contrast/utils/io_util.rb +1 -11
- data/lib/contrast/utils/job_servers_running.rb +6 -4
- data/lib/contrast/utils/object_share.rb +1 -38
- data/lib/contrast/utils/os.rb +1 -25
- data/lib/contrast/utils/ruby_ast_rewriter.rb +5 -1
- data/lib/contrast/utils/service_response_util.rb +36 -60
- data/lib/contrast/utils/service_sender_util.rb +84 -23
- data/lib/contrast/utils/sinatra_helper.rb +0 -6
- data/lib/contrast/utils/stack_trace_utils.rb +86 -182
- data/lib/contrast/utils/string_utils.rb +18 -2
- data/lib/contrast/utils/tag_util.rb +11 -1
- data/lib/contrast/utils/thread_tracker.rb +2 -2
- data/lib/contrast/utils/timer.rb +0 -40
- data/resources/assess/policy.json +42 -71
- data/resources/inventory/policy.json +2 -2
- data/resources/protect/policy.json +15 -15
- data/ruby-agent.gemspec +12 -5
- data/service_executables/VERSION +1 -1
- data/service_executables/linux/contrast-service +0 -0
- data/service_executables/mac/contrast-service +0 -0
- metadata +123 -112
- data/ext/cs__assess_regexp_track/cs__assess_regexp_track.c +0 -63
- data/ext/cs__assess_regexp_track/cs__assess_regexp_track.h +0 -29
- data/ext/cs__assess_regexp_track/extconf.rb +0 -2
- data/lib/contrast/agent/assess/frozen_properties.rb +0 -41
- data/lib/contrast/agent/assess/rule/csrf.rb +0 -66
- data/lib/contrast/agent/assess/rule/csrf/csrf_action.rb +0 -28
- data/lib/contrast/agent/assess/rule/csrf/csrf_applicator.rb +0 -73
- data/lib/contrast/agent/assess/rule/csrf/csrf_watcher.rb +0 -132
- data/lib/contrast/agent/assess/rule/response_scanning_rule.rb +0 -47
- data/lib/contrast/agent/assess/rule/response_watcher.rb +0 -36
- data/lib/contrast/agent/assess/rule/watcher.rb +0 -36
- data/lib/contrast/agent/feature_state.rb +0 -379
- data/lib/contrast/agent/logger_manager.rb +0 -116
- data/lib/contrast/agent/protect/rule/csrf.rb +0 -118
- data/lib/contrast/agent/protect/rule/csrf/csrf_evaluator.rb +0 -103
- data/lib/contrast/agent/protect/rule/csrf/csrf_token_injector.rb +0 -85
- data/lib/contrast/agent/settings_state.rb +0 -152
- data/lib/contrast/delegators.rb +0 -9
- data/lib/contrast/delegators/application_update.rb +0 -32
- data/lib/contrast/extensions/framework/rack/cookie.rb +0 -24
- data/lib/contrast/extensions/framework/rack/request.rb +0 -24
- data/lib/contrast/extensions/framework/rack/response.rb +0 -23
- data/lib/contrast/extensions/framework/rails/action_controller_railties_helper_inherited.rb +0 -20
- data/lib/contrast/extensions/framework/rails/active_record.rb +0 -26
- data/lib/contrast/extensions/framework/rails/active_record_named.rb +0 -53
- data/lib/contrast/extensions/framework/rails/active_record_time_zone_inherited.rb +0 -21
- data/lib/contrast/extensions/framework/rails/buffer.rb +0 -28
- data/lib/contrast/extensions/framework/rails/configuration.rb +0 -27
- data/lib/contrast/extensions/framework/sinatra/base.rb +0 -59
- data/lib/contrast/extensions/ruby_core/assess/array.rb +0 -59
- data/lib/contrast/extensions/ruby_core/assess/basic_object.rb +0 -15
- data/lib/contrast/extensions/ruby_core/assess/fiber.rb +0 -124
- data/lib/contrast/extensions/ruby_core/assess/hash.rb +0 -22
- data/lib/contrast/extensions/ruby_core/assess/kernel.rb +0 -95
- data/lib/contrast/extensions/ruby_core/assess/module.rb +0 -14
- data/lib/contrast/extensions/ruby_core/assess/regexp.rb +0 -206
- data/lib/contrast/extensions/ruby_core/assess/tilt_template_trigger.rb +0 -73
- data/lib/contrast/extensions/ruby_core/assess/xpath_library_trigger.rb +0 -40
- data/lib/contrast/extensions/ruby_core/eval_trigger.rb +0 -52
- data/lib/contrast/extensions/ruby_core/inventory/datastores.rb +0 -37
- data/lib/contrast/extensions/ruby_core/protect/applies_command_injection_rule.rb +0 -72
- data/lib/contrast/extensions/ruby_core/protect/applies_deserialization_rule.rb +0 -60
- data/lib/contrast/extensions/ruby_core/protect/applies_no_sqli_rule.rb +0 -83
- data/lib/contrast/extensions/ruby_core/protect/applies_path_traversal_rule.rb +0 -123
- data/lib/contrast/extensions/ruby_core/protect/applies_sqli_rule.rb +0 -65
- data/lib/contrast/extensions/ruby_core/protect/applies_xxe_rule.rb +0 -143
- data/lib/contrast/extensions/ruby_core/protect/kernel.rb +0 -30
- data/lib/contrast/framework/rails_support.rb +0 -88
- data/lib/contrast/framework/sinatra_application_helper.rb +0 -49
- data/lib/contrast/framework/sinatra_support.rb +0 -94
- data/lib/contrast/utils/comment_range.rb +0 -19
- data/lib/contrast/utils/data_store_util.rb +0 -23
- data/lib/contrast/utils/environment_util.rb +0 -82
- data/lib/contrast/utils/performs_logging.rb +0 -152
- data/lib/contrast/utils/rack_assess_session_cookie.rb +0 -104
- data/lib/contrast/utils/rails_assess_configuration.rb +0 -95
- data/lib/contrast/utils/random_util.rb +0 -22
- data/resources/csrf/inject.js +0 -44
- data/resources/factory-bot-spec/spec_helper.rb +0 -30
- data/resources/rubocops/kernel/catch_cop.rb +0 -37
- data/resources/rubocops/kernel/require_cop.rb +0 -37
- data/resources/rubocops/kernel/require_relative_cop.rb +0 -33
- data/resources/rubocops/module/autoload_cop.rb +0 -37
- data/resources/rubocops/module/const_defined_cop.rb +0 -37
- data/resources/rubocops/module/const_get_cop.rb +0 -37
- data/resources/rubocops/module/const_set_cop.rb +0 -37
- data/resources/rubocops/module/constants_cop.rb +0 -37
- data/resources/rubocops/module/name_cop.rb +0 -37
- data/resources/rubocops/object/class_cop.rb +0 -37
- data/resources/rubocops/object/freeze_cop.rb +0 -37
- data/resources/rubocops/object/frozen_cop.rb +0 -37
- data/resources/rubocops/object/is_a_cop.rb +0 -37
- data/resources/rubocops/object/method_cop.rb +0 -37
- data/resources/rubocops/object/respond_to_cop.rb +0 -37
- data/resources/rubocops/object/singleton_class_cop.rb +0 -37
- data/resources/rubocops/regexp/spelling_cop.rb +0 -44
- data/resources/rubocops/thread/new_cop.rb +0 -39
- data/resources/ruby-spec/ancestors_spec.rb +0 -70
- data/resources/ruby-spec/modulo_spec.rb +0 -831
- data/resources/ruby-spec/parameters_spec.rb +0 -261
- data/resources/ruby-spec/ruby_spec_spec_helper.rb +0 -35
data/lib/contrast/delegators.rb
DELETED
@@ -1,9 +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 define decorators for objects to add behavior without polluting the namespace
|
6
|
-
module Delegators
|
7
|
-
end
|
8
|
-
end
|
9
|
-
cs__scoped_require 'contrast/delegators/application_update'
|
@@ -1,32 +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 Delegators
|
6
|
-
# Used to decorate the ApplicationUpdate protobuf model so it can own some of the data massaging required for
|
7
|
-
# AppUpdate dtm
|
8
|
-
class ApplicationUpdate < SimpleDelegator
|
9
|
-
def append_view_technology_descriptor_data view_technology_descriptors
|
10
|
-
view_technology_descriptors.each do |vtd|
|
11
|
-
vtd.technology_names.each do |tech_name|
|
12
|
-
@delegate_sd_obj.technologies[tech_name] = true
|
13
|
-
end
|
14
|
-
end
|
15
|
-
end
|
16
|
-
|
17
|
-
# TS only allows you to report 500 routes per application
|
18
|
-
def append_route_coverage_data route_coverage_dtms
|
19
|
-
route_coverage_dtms.take(500).each do |route_coverage_dtm|
|
20
|
-
@delegate_sd_obj.routes << route_coverage_dtm
|
21
|
-
end
|
22
|
-
end
|
23
|
-
|
24
|
-
def append_platform_version platform_version
|
25
|
-
@delegate_sd_obj.platform = Contrast::Api::Dtm::Platform.new if @delegate_sd_obj.platform.nil?
|
26
|
-
@delegate_sd_obj.platform.major = platform_version.major
|
27
|
-
@delegate_sd_obj.platform.minor = platform_version.minor
|
28
|
-
@delegate_sd_obj.platform.build = platform_version.patch
|
29
|
-
end
|
30
|
-
end
|
31
|
-
end
|
32
|
-
end
|
@@ -1,24 +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/components/interface'
|
5
|
-
|
6
|
-
module Rack
|
7
|
-
module Session
|
8
|
-
# Our patch into the Rack::Session::Cookie Class, allowing for the
|
9
|
-
# runtime detection of insecure configurations on individual cookies
|
10
|
-
# within the application
|
11
|
-
class Cookie
|
12
|
-
include Contrast::Utils::InvalidConfigurationUtil
|
13
|
-
include Contrast::Components::Interface
|
14
|
-
|
15
|
-
access_component :scope
|
16
|
-
|
17
|
-
alias_method :cs__patched_initialize, :initialize
|
18
|
-
def initialize app, options = {}
|
19
|
-
Contrast::Utils::RackAssessSessionCookie.analyze_cookie_initialization(options)
|
20
|
-
cs__patched_initialize(app, options)
|
21
|
-
end
|
22
|
-
end
|
23
|
-
end
|
24
|
-
end
|
@@ -1,24 +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
|
-
# In earlier versions of rack < 2.0.0 the Rack::Response and Rack::Request do
|
5
|
-
# not have get_header or set_header methods. This is our way of working
|
6
|
-
# around that.
|
7
|
-
module Rack
|
8
|
-
# Our patch into the Rack::Request class, allowing us to call set_header
|
9
|
-
# and get_header in our code without worrying about older versions of
|
10
|
-
# Rack not implementing these methods.
|
11
|
-
class Request
|
12
|
-
unless Rack::Request.instance_methods(true).include?(:set_header)
|
13
|
-
def set_header name, value
|
14
|
-
@env[name] = value
|
15
|
-
end
|
16
|
-
end
|
17
|
-
|
18
|
-
unless Rack::Request.instance_methods(true).include?(:get_header)
|
19
|
-
def get_header name
|
20
|
-
@env[name]
|
21
|
-
end
|
22
|
-
end
|
23
|
-
end
|
24
|
-
end
|
@@ -1,23 +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
|
-
# In earlier versions of rack < 2.0.0 the Rack::Response and Rack::Request do
|
5
|
-
# not have get_header or set_header methods. This is our way of working
|
6
|
-
# around that.
|
7
|
-
module Rack
|
8
|
-
# Our patch into the Rack::Response Class, allowing us to call set_header
|
9
|
-
# and get_header in our code without worrying about older versions of
|
10
|
-
# Rack not implementing these methods.
|
11
|
-
class Response
|
12
|
-
unless Rack::Response.instance_methods(true).include?(:set_header)
|
13
|
-
def set_header key, value
|
14
|
-
headers[key] = value
|
15
|
-
end
|
16
|
-
end
|
17
|
-
unless Rack::Response.instance_methods(true).include?(:get_header)
|
18
|
-
def get_header key
|
19
|
-
headers[key]
|
20
|
-
end
|
21
|
-
end
|
22
|
-
end
|
23
|
-
end
|
@@ -1,20 +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 ActionController
|
5
|
-
module Railties
|
6
|
-
# Used to monkey patch all the inherited calls in action_pack
|
7
|
-
#
|
8
|
-
# This is the usual entry point for Rails inheritance work, so it should
|
9
|
-
# catch most of the calls to inherited.
|
10
|
-
module Helpers
|
11
|
-
alias_method :cs__patched_inherited, :inherited
|
12
|
-
def inherited klass
|
13
|
-
klass&.instance_variable_set(:@cs__defining_class, true)
|
14
|
-
cs__patched_inherited(klass)
|
15
|
-
ensure
|
16
|
-
klass&.instance_variable_set(:@cs__defining_class, false)
|
17
|
-
end
|
18
|
-
end
|
19
|
-
end
|
20
|
-
end
|
@@ -1,26 +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 ActiveRecord
|
5
|
-
module AttributeMethods
|
6
|
-
module Read
|
7
|
-
# Rails / ActiveRecord are sneaky a.f. They define attributes of a
|
8
|
-
# class in one method, then monkey patch allocate in another and
|
9
|
-
# finally invoke module_eval in this method... but of course they use a
|
10
|
-
# '_tmp_' header for the method name and then alias it in this module
|
11
|
-
# to name it what we expect
|
12
|
-
module ClassMethods
|
13
|
-
alias_method :cs__patched_define_method_attribute, :define_method_attribute
|
14
|
-
|
15
|
-
def define_method_attribute *args, &block
|
16
|
-
ret = cs__patched_define_method_attribute(*args, &block)
|
17
|
-
method_name = args[0]
|
18
|
-
Contrast::Agent::Assess::Policy::Patcher.patch_assess_method(self, method_name)
|
19
|
-
ret
|
20
|
-
end
|
21
|
-
|
22
|
-
protected :cs__patched_define_method_attribute, :define_method_attribute
|
23
|
-
end
|
24
|
-
end
|
25
|
-
end
|
26
|
-
end
|
@@ -1,53 +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/components/interface'
|
5
|
-
|
6
|
-
module ActiveRecord
|
7
|
-
module Scoping
|
8
|
-
module Named
|
9
|
-
# Our patch into the ActiveRecord::Scoping::Named::ClassMethods Module,
|
10
|
-
# allowing for the runtime rewrite of interpolation calls defined in
|
11
|
-
# methods defined dynamically during application execution.
|
12
|
-
#
|
13
|
-
# TODO: RUBY-534
|
14
|
-
module ClassMethods
|
15
|
-
include Contrast::Components::Interface
|
16
|
-
access_component :logging, :agent
|
17
|
-
|
18
|
-
def _cs__rewrite method_name, body
|
19
|
-
return body unless AGENT.rewrite_interpolation?
|
20
|
-
return body unless body.is_a?(Proc)
|
21
|
-
|
22
|
-
location = body.source_location
|
23
|
-
return body if location.nil?
|
24
|
-
|
25
|
-
# Good news, once we patch the body once, the source location
|
26
|
-
# becomes eval. We may need to fix this later though (so it may
|
27
|
-
# be bad news)
|
28
|
-
return body if location.empty? || location[0].empty? || location[0].include?('eval')
|
29
|
-
|
30
|
-
opener = Contrast::Agent::ClassReopener.new(Contrast::Agent::ModuleData.new(self))
|
31
|
-
original_source_code = opener.source_code(location, method_name)
|
32
|
-
return body unless original_source_code
|
33
|
-
return body if Contrast::Agent::Rewriter.send(:unrepeatable?, original_source_code)
|
34
|
-
return body unless Contrast::Agent::Rewriter.send(:interpolations?, original_source_code)
|
35
|
-
|
36
|
-
# the code looks like 'source :some_method_name, ->lambda_literal'
|
37
|
-
# we just need the lambda
|
38
|
-
body_start = original_source_code.index(',') + 1
|
39
|
-
original_source_code = original_source_code[body_start..-1]
|
40
|
-
|
41
|
-
new_method_source = Contrast::Agent::Rewriter.send(:rewrite_method, original_source_code)
|
42
|
-
return body unless Contrast::Agent::Rewriter.send(:valid_code?, new_method_source)
|
43
|
-
|
44
|
-
unbound_eval(cs__name, new_method_source)
|
45
|
-
rescue SyntaxError, StandardError => e
|
46
|
-
logger.debug(e, "Can't parse method source in scoped method #{ method_name }: #{ e.message }")
|
47
|
-
body
|
48
|
-
end
|
49
|
-
end
|
50
|
-
end
|
51
|
-
end
|
52
|
-
end
|
53
|
-
cs__scoped_require 'cs__assess_active_record_named/cs__assess_active_record_named'
|
@@ -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 ActiveRecord
|
5
|
-
module AttributeMethods
|
6
|
-
# Used to monkey patch all the inherited calls in action_pack
|
7
|
-
module TimeZoneConversion
|
8
|
-
module ClassMethods #:nodoc:
|
9
|
-
private
|
10
|
-
|
11
|
-
alias_method :cs__patched_inherited, :inherited
|
12
|
-
def inherited klass
|
13
|
-
klass&.instance_variable_set(:@cs__defining_class, true)
|
14
|
-
cs__patched_inherited(klass)
|
15
|
-
ensure
|
16
|
-
klass&.instance_variable_set(:@cs__defining_class, false)
|
17
|
-
end
|
18
|
-
end
|
19
|
-
end
|
20
|
-
end
|
21
|
-
end
|
@@ -1,28 +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/components/interface'
|
5
|
-
|
6
|
-
module ActionController
|
7
|
-
module Live
|
8
|
-
# This class acts as our patch into the ActionController::Live::Buffer
|
9
|
-
# class, allowing us to track the close event on streamed responses.
|
10
|
-
class Buffer
|
11
|
-
include Contrast::Components::Interface
|
12
|
-
access_component :contrast_service
|
13
|
-
|
14
|
-
# normally pre->in->post filters are applied however, in a streamed response
|
15
|
-
# we can run into a case where it's pre -> in -> post -> more infilters
|
16
|
-
# in order to submit anything found during the infilters after the response has been written we need to explicity send them
|
17
|
-
alias_method :cs__close, :close
|
18
|
-
def close
|
19
|
-
if (context = Contrast::Agent::REQUEST_TRACKER.current)
|
20
|
-
[context.server_activity, context.activity, context.observed_route].each do |msg|
|
21
|
-
CONTRAST_SERVICE.send_message msg
|
22
|
-
end
|
23
|
-
end
|
24
|
-
cs__close
|
25
|
-
end
|
26
|
-
end
|
27
|
-
end
|
28
|
-
end
|
@@ -1,27 +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 Rails
|
5
|
-
class Application
|
6
|
-
# Our patch into the Rails::Application::Configuration Class, allowing
|
7
|
-
# for the runtime detection of insecure configurations on individual
|
8
|
-
# ActionDispatch::Session::AbstractStore instances within the
|
9
|
-
# application.
|
10
|
-
class Configuration
|
11
|
-
include Contrast::Utils::InvalidConfigurationUtil
|
12
|
-
include Contrast::Components::Interface
|
13
|
-
|
14
|
-
# Note to self / PR reviewers / wizard people dear reader,
|
15
|
-
# including the components into Rails here may be unnecessary
|
16
|
-
# if we're not calling anything besides #analyze_session_store?
|
17
|
-
access_component :analysis, :scope
|
18
|
-
|
19
|
-
alias_method :cs__patched_session_store, :session_store
|
20
|
-
def session_store *args
|
21
|
-
ret = cs__patched_session_store(*args)
|
22
|
-
Contrast::Utils::RailsAssessConfiguration.analyze_session_store(*args)
|
23
|
-
ret
|
24
|
-
end
|
25
|
-
end
|
26
|
-
end
|
27
|
-
end
|
@@ -1,59 +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/framework/sinatra_support'
|
5
|
-
|
6
|
-
module Sinatra
|
7
|
-
# Our patch into the Sinatra::Base Class, allowing for the inventory of the
|
8
|
-
# routes called by the application
|
9
|
-
class Base
|
10
|
-
alias_method :cs__patched_call!, :call!
|
11
|
-
|
12
|
-
# publicly available method for Sinatra::Base things -- unfortunately,
|
13
|
-
# getting the routes appear to require a lookup every time
|
14
|
-
def call! *args
|
15
|
-
cs__patched_map_route(*args)
|
16
|
-
cs__patched_call!(*args)
|
17
|
-
end
|
18
|
-
|
19
|
-
private
|
20
|
-
|
21
|
-
# Use logic copied from Sinatra::Base#process_route to determine which
|
22
|
-
# pattern matches the request being invoked by Sinatra::Base#call!
|
23
|
-
#
|
24
|
-
# @param args [Array<Object>] we rely on the @settings object in
|
25
|
-
# Sinatra::Base and the env variable passed in as args[0]
|
26
|
-
def cs__patched_map_route *args
|
27
|
-
context = Contrast::Agent::REQUEST_TRACKER.current
|
28
|
-
return unless context
|
29
|
-
|
30
|
-
env = args[0]
|
31
|
-
return unless env
|
32
|
-
|
33
|
-
# There isn't a Request object in the Sinatra::Base yet - it's made
|
34
|
-
# during the #call! method, which we're patching - so we need to
|
35
|
-
# access the env
|
36
|
-
method = env[Rack::REQUEST_METHOD]
|
37
|
-
route = env[Rack::PATH_INFO]
|
38
|
-
route = route.to_s
|
39
|
-
|
40
|
-
# get all potential routes for this request type
|
41
|
-
routes = settings.routes[method]
|
42
|
-
return unless routes
|
43
|
-
|
44
|
-
# Do some cleanup that matches Sinatra::Base#process_route
|
45
|
-
route = '/' if route.empty? && !settings.empty_path_info?
|
46
|
-
route = route[0..-2] if !settings.strict_paths? && route != '/' && route.end_with?('/')
|
47
|
-
|
48
|
-
# Find the route that matches this request. Since we're using
|
49
|
-
# settings, we should resolve in the same precedence as Sinatra
|
50
|
-
routes.each do |pattern, _, _| # Mustermann::Sinatra
|
51
|
-
next unless pattern.params(route)
|
52
|
-
|
53
|
-
dtm = Contrast::Framework::SinatraSupport.send(:route_to_coverage, cs__class, method, pattern)
|
54
|
-
context.append_route_coverage(dtm)
|
55
|
-
break
|
56
|
-
end
|
57
|
-
end
|
58
|
-
end
|
59
|
-
end
|
@@ -1,59 +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/agent/patching/policy/patch'
|
5
|
-
cs__scoped_require 'contrast/agent/patching/policy/patcher'
|
6
|
-
cs__scoped_require 'contrast/components/interface'
|
7
|
-
|
8
|
-
# This is our patch of the Array class required to handle propagation
|
9
|
-
# Disclaimer: there may be a better way, but we're in a 'get it work' state.
|
10
|
-
# Hopefully, we'll be in a 'get it right' state soon.
|
11
|
-
class Array
|
12
|
-
include Contrast::Components::Interface
|
13
|
-
|
14
|
-
access_component :scope
|
15
|
-
|
16
|
-
ARRAY_JOIN_HASH = {
|
17
|
-
'class_name' => 'Array',
|
18
|
-
'instance_method' => true,
|
19
|
-
'method_visibility' => 'public',
|
20
|
-
'method_name' => 'join',
|
21
|
-
'action' => 'CUSTOM',
|
22
|
-
'source' => 'O',
|
23
|
-
'target' => 'R',
|
24
|
-
'patch_class' => 'NOOP',
|
25
|
-
'patch_method' => 'cs__track_join'
|
26
|
-
}.cs__freeze
|
27
|
-
ARRAY_JOIN_NODE = Contrast::Agent::Assess::Policy::PropagationNode.new(ARRAY_JOIN_HASH)
|
28
|
-
|
29
|
-
# When you call join, they use an internal thing, so there's no good way to get at the thing being returned.
|
30
|
-
# Multiple Strings are appended with the #join method. Because that
|
31
|
-
# operation happens in C, we have to do it here rather than rely on the
|
32
|
-
# patch of our String append or concat methods.
|
33
|
-
def cs__track_join separator, ret
|
34
|
-
return ret if Contrast::Agent::Patching::Policy::Patch.skip_assess_analysis?
|
35
|
-
|
36
|
-
with_contrast_scope do
|
37
|
-
shift = 0
|
38
|
-
separator_length = separator.nil? ? 0 : separator.to_s.length
|
39
|
-
each do |obj|
|
40
|
-
if obj # skip nil here
|
41
|
-
ret.cs__copy_from(obj, shift)
|
42
|
-
shift += obj.to_s.length
|
43
|
-
end
|
44
|
-
shift += separator_length
|
45
|
-
end
|
46
|
-
return ret unless ret.cs__tracked?
|
47
|
-
|
48
|
-
ret.cs__properties.cleanup_tags
|
49
|
-
ret.cs__properties.build_event(
|
50
|
-
ARRAY_JOIN_NODE,
|
51
|
-
ret,
|
52
|
-
self,
|
53
|
-
ret,
|
54
|
-
[separator])
|
55
|
-
ret
|
56
|
-
end
|
57
|
-
end
|
58
|
-
end
|
59
|
-
cs__scoped_require 'cs__assess_array/cs__assess_array'
|
@@ -1,15 +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/extensions/ruby_core/eval_trigger'
|
5
|
-
cs__scoped_require 'contrast/agent/patching/policy/patcher'
|
6
|
-
|
7
|
-
# Our patch into the BasicObject class, allowing us to track calls to the eval
|
8
|
-
# method
|
9
|
-
class BasicObject
|
10
|
-
class << self
|
11
|
-
include Contrast::CoreExtensions::Assess::EvalTrigger
|
12
|
-
end
|
13
|
-
end
|
14
|
-
|
15
|
-
cs__scoped_require 'cs__assess_basic_object/cs__assess_basic_object'
|
@@ -1,124 +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/components/interface'
|
5
|
-
|
6
|
-
cs__scoped_require 'fiber'
|
7
|
-
|
8
|
-
# In order to instrument some difficult methods like String#gsub, as it
|
9
|
-
# returns an enumerator, we need to instrument methods on Fiber.
|
10
|
-
# Specifically, we instrument 'rb_fiber_yield' and 'rb_fiber_new' in
|
11
|
-
# order to track what happens within Enumerator#next.
|
12
|
-
# TODO: RUBY-531 move these out of Fiber class
|
13
|
-
class Fiber
|
14
|
-
include Contrast::CoreExtensions::Assess::AssessExtension
|
15
|
-
include Contrast::Components::Interface
|
16
|
-
|
17
|
-
access_component :analysis, :scope
|
18
|
-
|
19
|
-
FIBER_NEW_NODE_HASH = {
|
20
|
-
'class_name' => 'Fiber',
|
21
|
-
'instance_method' => true,
|
22
|
-
'method_visibility' => 'public',
|
23
|
-
'method_name' => 'c_new', # TODO: Why do we patch new here and not initalize? Historically, new has been problematic.
|
24
|
-
'action' => 'CUSTOM',
|
25
|
-
'source' => 'O',
|
26
|
-
'target' => 'R',
|
27
|
-
'patch_class' => 'NOOP',
|
28
|
-
'patch_method' => 'track_rb_fiber_new'
|
29
|
-
}.cs__freeze
|
30
|
-
FIBER_NEW_NODE = Contrast::Agent::Assess::Policy::PropagationNode.new(FIBER_NEW_NODE_HASH)
|
31
|
-
private_constant :FIBER_NEW_NODE_HASH
|
32
|
-
private_constant :FIBER_NEW_NODE
|
33
|
-
|
34
|
-
FIBER_YIELD_NODE_HASH = {
|
35
|
-
'class_name' => 'Fiber',
|
36
|
-
'instance_method' => true,
|
37
|
-
'method_visibility' => 'public',
|
38
|
-
'method_name' => 'c_yield',
|
39
|
-
'action' => 'CUSTOM',
|
40
|
-
'source' => 'O',
|
41
|
-
'target' => 'R',
|
42
|
-
'patch_class' => 'NOOP',
|
43
|
-
'patch_method' => 'track_rb_fiber_yield'
|
44
|
-
}.cs__freeze
|
45
|
-
FIBER_YIELD_NODE = Contrast::Agent::Assess::Policy::PropagationNode.new(FIBER_YIELD_NODE_HASH)
|
46
|
-
private_constant :FIBER_YIELD_NODE_HASH
|
47
|
-
private_constant :FIBER_YIELD_NODE
|
48
|
-
|
49
|
-
class << self
|
50
|
-
def track_rb_fiber_yield fiber, _method, results
|
51
|
-
# results will be nil if StopIteration was raised,
|
52
|
-
# otherwise an Array of the yielded arguments
|
53
|
-
return unless results.cs__is_a?(Array)
|
54
|
-
return unless ASSESS.enabled?
|
55
|
-
|
56
|
-
with_contrast_scope do
|
57
|
-
results.each do |result|
|
58
|
-
next unless Contrast::Utils::DuckUtils.trackable?(result)
|
59
|
-
next if result.cs__frozen?
|
60
|
-
|
61
|
-
cs__splat_tags(result, fiber)
|
62
|
-
result.cs__properties.build_event(
|
63
|
-
FIBER_YIELD_NODE,
|
64
|
-
result,
|
65
|
-
fiber,
|
66
|
-
result,
|
67
|
-
[])
|
68
|
-
end
|
69
|
-
end
|
70
|
-
end
|
71
|
-
|
72
|
-
def track_rb_fiber_new fiber, _enum, _enum_method, underlying, _underlying_method
|
73
|
-
return unless Contrast::Utils::DuckUtils.trackable?(underlying)
|
74
|
-
return unless underlying.is_a?(String) && !underlying.empty?
|
75
|
-
|
76
|
-
return unless ASSESS.enabled?
|
77
|
-
|
78
|
-
with_contrast_scope do
|
79
|
-
cs__splat_tags(fiber, underlying)
|
80
|
-
fiber.cs__properties.build_event(
|
81
|
-
FIBER_NEW_NODE,
|
82
|
-
fiber,
|
83
|
-
underlying,
|
84
|
-
fiber,
|
85
|
-
[])
|
86
|
-
end
|
87
|
-
end
|
88
|
-
|
89
|
-
def instrument_fiber_track
|
90
|
-
@_instrument_fiber_variables ||= begin
|
91
|
-
cs__scoped_require 'cs__assess_fiber_track/cs__assess_fiber_track'
|
92
|
-
true
|
93
|
-
end
|
94
|
-
rescue StandardError => e
|
95
|
-
logger.error(e, 'Error loading fiber track patch')
|
96
|
-
false
|
97
|
-
end
|
98
|
-
|
99
|
-
# Some propagation occurred, but we're not sure what the
|
100
|
-
# exact transformation was. To be safe, we just explode
|
101
|
-
# all the tags from the source to the return.
|
102
|
-
#
|
103
|
-
# If the return already had that tag, the existing tag
|
104
|
-
# range is recycled to save us an object.
|
105
|
-
def cs__splat_tags ret, source = self
|
106
|
-
source.cs__properties.tag_keys.each do |key|
|
107
|
-
length = Contrast::Utils::StringUtils.ret_length(ret)
|
108
|
-
existing = ret.cs__properties.fetch_tag(key)
|
109
|
-
# if the tag already exists, drop all but the first range
|
110
|
-
# then change that range to cover the entire return
|
111
|
-
if existing&.any?
|
112
|
-
existing.drop(existing.length - 1)
|
113
|
-
range = existing[0]
|
114
|
-
range.repurpose(0, length)
|
115
|
-
else
|
116
|
-
span = Contrast::Agent::Assess::AdjustedSpan.new(0, length)
|
117
|
-
ret.cs__properties.add_tag(key, span)
|
118
|
-
end
|
119
|
-
end
|
120
|
-
end
|
121
|
-
end
|
122
|
-
end
|
123
|
-
|
124
|
-
Fiber.instrument_fiber_track
|